commit_msg
stringlengths 1
24.2k
| commit_hash
stringlengths 2
84
⌀ | project
stringlengths 2
40
| source
stringclasses 4
values | labels
int64 0
1
| repo_url
stringlengths 26
70
⌀ | commit_url
stringlengths 74
118
⌀ | commit_date
stringlengths 25
25
⌀ |
---|---|---|---|---|---|---|---|
* fixing a memory leak in DV format.
Patch by Brian Brice bbrice at newtek dot com
Originally committed as revision 6945 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
0008afc59c240271827d8a0fc747179da905050f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/0008afc59c240271827d8a0fc747179da905050f
|
2006-11-08 18:57:02+00:00
|
adding a few checks to the audio packet descrambling, this should hopefully catch all related out of array accesses
note, the original code might have been exploitable
Originally committed as revision 7640 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
0521946359241bbd72d6a226351c8812c1730b11
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/0521946359241bbd72d6a226351c8812c1730b11
|
2007-01-22 03:19:00+00:00
|
sanity checks, some might have been exploitable ...
Originally committed as revision 5369 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
3a1a7e32ace7af47de74e8ae779cb4e04c89aa97
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/3a1a7e32ace7af47de74e8ae779cb4e04c89aa97
|
2006-05-13 10:45:26+00:00
|
fix infinite loop (suggested change by rjayne at convera dot com)
fixes bug #1160195
Originally committed as revision 4434 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
472ea1284e925297b08921b7189f57f6789c898c
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/472ea1284e925297b08921b7189f57f6789c898c
|
2005-07-11 22:34:34+00:00
|
ffplay crashes patch by (Ivan Wong: email, ivanwong info)
Originally committed as revision 4389 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
687fae2b42f247e537afdb5b8d86e991d3fbb2db
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/687fae2b42f247e537afdb5b8d86e991d3fbb2db
|
2005-06-24 08:32:55+00:00
|
checksum change due to (don't crash on null codec patch which changed the stored length of the compressor name, movenc.c 1.28->1.29)
Originally committed as revision 3950 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
9499ebff8da7bb7a2917f3d70277cc2125a9cf6d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/9499ebff8da7bb7a2917f3d70277cc2125a9cf6d
|
2005-02-07 22:47:46+00:00
|
picture buffer cleanup, this fixes a assertion failure (if assertion checking was manualy enabled for utils.c) and a memleak at least
Originally committed as revision 2392 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
6571e41dcdee4655237bca0a3277df8976167aee
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/6571e41dcdee4655237bca0a3277df8976167aee
|
2003-10-16 00:21:54+00:00
|
* fix for integer overflow
Originally committed as revision 2297 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
fd0f45e58b010c0d7049914a392c3e96a2223107
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/fd0f45e58b010c0d7049914a392c3e96a2223107
|
2003-09-22 18:17:45+00:00
|
fixes crash patch by (Mark Hills <mark at pogo dot org dot uk>)
Originally committed as revision 1355 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
c55427f8c8348af12b77b9601479769d701d8c99
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c55427f8c8348af12b77b9601479769d701d8c99
|
2002-12-21 15:54:21+00:00
|
* fix double free
Originally committed as revision 1206 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
4533d2d67f28860304cdaa8aa0b3db85f368810e
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4533d2d67f28860304cdaa8aa0b3db85f368810e
|
2002-11-13 19:04:38+00:00
|
uninitialized var ...
Originally committed as revision 927 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
dae9ffc4400541f716bb90d8a5ad2cb1b2703882
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/dae9ffc4400541f716bb90d8a5ad2cb1b2703882
|
2002-09-12 14:43:44+00:00
|
2 byte shorter userdata for mpeg4
in the past it was startcode,string,00,7F,startcode
now it is startcode,string,stratcode
both are mpeg4 compliant, as according to the standard the userdata lasts until the next 00 00 01 (startcode prefix) but some very primitive decoders which simply skip until the first 00 byte and then expect the next valid startcode might fail with the old variant, just a theory though (didnt test if quicktime can decode it now)
Originally committed as revision 2767 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
99683a307776a7638ccce236a4ce5aa3e914e77d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/99683a307776a7638ccce236a4ce5aa3e914e77d
|
2004-02-08 22:52:35+00:00
|
fixed msmpeg4 infinite loop if buggy stream
rewrote quantizer
fixed bias (+10% compression/quality for h263 like codecs)
qscale=1 support
mpeg1 intra frames looks far less blocky
added codec_id field
Originally committed as revision 423 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
d7e9533aa06f4073a27812349b35ba5fede11ca1
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/d7e9533aa06f4073a27812349b35ba5fede11ca1
|
2002-04-27 12:30:26+00:00
|
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
- Now we can decode H.263v1 streams found on QT without problems.
Originally committed as revision 214 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
102d39088bb9cfb08cc9f78d8e6eca62ed39bded
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/102d39088bb9cfb08cc9f78d8e6eca62ed39bded
|
2001-11-12 05:19:55+00:00
|
corrected mpeg audio encoding overflows - now it should give correct quality even for very high volumes
Originally committed as revision 132 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
afa982fdae1b49a8aee00a27da876bba10ba1073
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/afa982fdae1b49a8aee00a27da876bba10ba1073
|
2001-09-17 21:19:09+00:00
|
The reader ignores the size of the ASF data object and keeps on
reading even beyond it.
Therefore if the ASF file includes an index object at its end, the
reader will treat the index like data, but of course will fail since
it thinks that the data is corrupted.
When reading an asf file with an index object, ffmpeg will
complain at the end of the file that it read an invalid header.
Patch by Kohn Emil Dan, < emild A cs P technion P ac P il >
Original thead:
Date: Apr 18, 2006 4:11 PM
Subject: [Ffmpeg-devel] Two ASF related bugs and fixes
Originally committed as revision 5857 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
b6eaae39b4913db81d9e3d0ad6a2f6261757d83d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/b6eaae39b4913db81d9e3d0ad6a2f6261757d83d
|
2006-07-29 16:07:19+00:00
|
avcodec/truemotion2: Fix integer overflow in TM2_RECALC_BLOCK()
Fixes: signed integer overflow: 1477974040 - -1877995504 cannot be represented in type 'int'
Fixes: 4861/clusterfuzz-testcase-minimized-4570316383715328
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
56a53340ed4cc55898e49c07081311ebb2816630
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/56a53340ed4cc55898e49c07081311ebb2816630
|
2018-01-21 22:51:49+01:00
|
avcodec/h264addpx_template: Fixes integer overflows
Fixes: signed integer overflow: 512 + 2147483491 cannot be represented in type 'int'
Fixes: 4780/clusterfuzz-testcase-minimized-4709066174627840
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
d6945aeee419a8417b8019c7c92227e12e45b7ad
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/d6945aeee419a8417b8019c7c92227e12e45b7ad
|
2018-01-08 21:50:34+01:00
|
avcodec/opus_parser: Check payload_len in parse_opus_ts_header()
Fixes: clusterfuzz-testcase-minimized-6134545979277312
Fixes: crbug 797469
Reported-by: Matt Wolenetz <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
1bcd7fefcb3c1ec47978fdc64a9e8dfb9512ae62
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/1bcd7fefcb3c1ec47978fdc64a9e8dfb9512ae62
|
2018-01-08 21:49:53+01:00
|
avcodec/jpeg2000: Check sum of sizes of band->prec before allocating
Fixes: OOM
Fixes: 4810/clusterfuzz-testcase-minimized-6034253235093504
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
6887e412434776eb260ad3904f565be491dd5726
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/6887e412434776eb260ad3904f565be491dd5726
|
2018-01-15 19:55:22+01:00
|
avcodec/vp9_superframe_split_bsf: Fix integer overflow in frame_size/total_size checks
Fixes: signed integer overflow: -1698586465 + -551542752 cannot be represented in type 'int'
Fixes: 4490/clusterfuzz-testcase-minimized-5210014592532480
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
eaff5fcb7cde8d1614755269773d471d3a3d1bfc
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/eaff5fcb7cde8d1614755269773d471d3a3d1bfc
|
2017-12-10 20:11:46+01:00
|
Don't manipulate duration when it's AV_NOPTS_VALUE.
This leads to signed integer overflow.
Signed-off-by: Dale Curtis <[email protected]>
Signed-off-by: James Almer <[email protected]>
|
c5fd57f483d2ad8e34551b78509f1e14136f73c0
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c5fd57f483d2ad8e34551b78509f1e14136f73c0
|
2017-11-29 00:52:27-03:00
|
lavr: deprecate the entire library
Deprecate the entire library. Merged years ago to provide compatibility
with Libav, it remained unmaintained by the FFmpeg project and duplicated
functionality provided by libswresample.
In order to improve consistency and reduce attack surface, as well as to ease
burden on maintainers, it has been deprecated. Users of this library are asked
to migrate to libswresample, which, as well as providing more functionality,
is faster and has higher accuracy.
Signed-off-by: Rostislav Pehlivanov <[email protected]>
|
c29038f3041a4080342b2e333c1967d136749c0f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c29038f3041a4080342b2e333c1967d136749c0f
|
2018-01-04 01:38:22+00:00
|
avcodec/h264idct_template: Fix integer overflow in ff_h264_idct8_add
Fixes: signed integer overflow: 452986184 - -2113885312 cannot be represented in type 'int'
Fixes: 4196/clusterfuzz-testcase-minimized-5580648594014208
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
9cc926da7d9920d17b76584e7212309ab5c02387
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/9cc926da7d9920d17b76584e7212309ab5c02387
|
2017-11-27 03:31:53+01:00
|
lavf/mov: fix crash in mov_read_sidx
Use correct index into streams
Signed-off-by: Michael Niedermayer <[email protected]>
|
bdddcb7b030d075dffa2989222d687106c06d50c
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/bdddcb7b030d075dffa2989222d687106c06d50c
|
2017-11-25 02:32:33+01:00
|
avformat/mov: Increment stsd_count while processing stsd data; avoids leaks.
In the event of ff_mov_read_stsd_entries() failure, sc->stsd_count
is not updated, even if the function allocates extradata memory.
Instead update the sc->stsd_count as entries are parsed so that
mov_read_close() can do the right thing.
Signed-off-by: Dale Curtis <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
6db511a7838830f856b4664958add937a4a0d49b
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/6db511a7838830f856b4664958add937a4a0d49b
|
2017-11-22 13:06:50+01:00
|
Close ogg stream upon error when using AV_EF_EXPLODE.
Without this there can be multiple memory leaks for unrecognized
ogg streams.
Signed-off-by: Dale Curtis <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
bce8fc0754c4b31f574a4372c6d7996ed29f7c2a
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/bce8fc0754c4b31f574a4372c6d7996ed29f7c2a
|
2017-11-21 03:13:03+01:00
|
avfilter/vf_premultiply: fix memory-leak on failure
Fixes CID #1416352
|
c7ded42d5dfc0124008b5b9b13a1a342324885ed
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c7ded42d5dfc0124008b5b9b13a1a342324885ed
|
2017-11-13 20:33:10+01:00
|
avformat/ty: fix memory leaks
Signed-off-by: Paul B Mahol <[email protected]>
|
a38b14a432b3a031d6bafdbb5f790724b9b2094d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/a38b14a432b3a031d6bafdbb5f790724b9b2094d
|
2017-11-12 20:38:30+01:00
|
pictor: Correctly check frame dimensions
Fixes: 559/clusterfuzz-testcase-6424225917173760
Bug-Id: CVE-2017-7862
CC: [email protected]
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
(cherry picked from commit 8c2ea3030af7b40a3c4275696fb5c76cdb80950a)
Signed-off-by: Diego Biurrun <[email protected]>
|
eb3c1a94adbc28411610167d3dac583436e50125
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/eb3c1a94adbc28411610167d3dac583436e50125
|
2017-10-12 21:20:05+02:00
|
avcodec/pafvideo: Check for bitstream end in decode_0()
Fixes: Timeout
Fixes: 3529/clusterfuzz-testcase-5057068371279872
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
9c85329cd02e9284892bf263ce6133b2fc479792
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/9c85329cd02e9284892bf263ce6133b2fc479792
|
2017-10-14 23:23:25+02:00
|
avcodec/hevcdsp_template: Fix undefined shift
Fixes: runtime error: left shift of negative value -255
Fixes: 3373/clusterfuzz-testcase-minimized-5604083912146944
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
fbdab6eca7874fbeba6aa79c269f345e4d43f5d4
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/fbdab6eca7874fbeba6aa79c269f345e4d43f5d4
|
2017-10-03 20:34:35+02:00
|
avfilter/af_join: check ff_insert_inpad() for failure
Signed-off-by: Paul B Mahol <[email protected]>
|
db5604ac26f06be34030c8ae8040c19d549280f1
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/db5604ac26f06be34030c8ae8040c19d549280f1
|
2017-08-25 09:49:01+02:00
|
avcodec/sbrdsp_fixed: Fix undefined overflows in autocorrelate()
Fixes: runtime error: signed integer overflow: 8903997421129740175 + 354481484684609529 cannot be represented in type 'long'
Fixes: 2045/clusterfuzz-testcase-minimized-6751255865065472
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
eefb68c9c335dda423c9115ba11dc4bb3e73e3f9
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/eefb68c9c335dda423c9115ba11dc4bb3e73e3f9
|
2017-08-27 19:40:23+02:00
|
avcodec/diracdsp: fix integer overflow
Fixes: runtime error: signed integer overflow: 11 * 225726413 cannot be represented in type 'int'
Fixes: 2764/clusterfuzz-testcase-minimized-5382561922547712
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
b2d9d7226943d6229a17e31714ce5162bdf88b33
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/b2d9d7226943d6229a17e31714ce5162bdf88b33
|
2017-08-01 13:54:43+02:00
|
avcodec/aacdec_template: Fix running cleanup in decode_ics_info()
Fixes: out of array read
Fixes: 2873/clusterfuzz-testcase-minimized-5924145713905664
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Previous version reviewed-by: Alex Converse <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
6f03ffb47d51368a4bbc87702df8446e4660845d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/6f03ffb47d51368a4bbc87702df8446e4660845d
|
2017-08-22 20:01:31+02:00
|
avcodec/dirac_vlc: Fix undefined shift
Fixes: runtime error: shift exponent 64 is too large for 64-bit type 'residual' (aka 'unsigned long')
Fixes: 2674/clusterfuzz-testcase-minimized-4999700518273024
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
69e7daf6ce2a5893936ba18572c58180b29d67f9
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/69e7daf6ce2a5893936ba18572c58180b29d67f9
|
2017-07-24 02:42:33+02:00
|
libswresample: check input to swr_convert_frame for NULL
When 'out' is an AVFrame that does not have buffers preallocated,
swr_convert_frame tries to allocate buffers of the right size. However
in calculating this size it failed to check for whether 'in' is NULL
(requesting that swr's internal buffers are to be flushed).
Signed-off-by: Michael Niedermayer <[email protected]>
|
3fa8f263abf90650b62d43cb532cdb8cc5bd7c13
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/3fa8f263abf90650b62d43cb532cdb8cc5bd7c13
|
2017-07-08 18:13:43+02:00
|
avcodec/vb: Check vertical GMC component before multiply
Fixes: runtime error: signed integer overflow: 8224 * 663584 cannot be represented in type 'int'
Fixes: 2393/clusterfuzz-testcase-minimized-6128334993883136
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
bc6ab72bc7af27189e7b524b97e45c6fcadab5cf
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/bc6ab72bc7af27189e7b524b97e45c6fcadab5cf
|
2017-06-28 23:39:11+02:00
|
avcodec/hevcdec: Do not check the first ff_init_cabac_decoder() call in hls_decode_entry_wpp() for failure
The result of the call is not used in any testcase but breaks some cases if
its failure is considered.
Fixes regression found by jamrial
Signed-off-by: Michael Niedermayer <[email protected]>
|
89f8bff7983f375e3f0638c0af8d12520a478808
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/89f8bff7983f375e3f0638c0af8d12520a478808
|
2017-06-25 04:25:56+02:00
|
avfilter/vf_signature: fix memory leaks in error cases
Fixes CIDs 1403234 and 1403235
|
feb13aed794a7f1a1f8395159e9b077351348a34
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/feb13aed794a7f1a1f8395159e9b077351348a34
|
2017-06-13 19:49:39+02:00
|
avcodec/cavsdec: Fix runtime error: signed integer overflow: 59 + 2147483600 cannot be represented in type 'int'
Fixes: 1903/clusterfuzz-testcase-minimized-5359318167715840
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
58f8cd4ac576028ef492a005bd06b1f22c3a6879
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/58f8cd4ac576028ef492a005bd06b1f22c3a6879
|
2017-05-31 16:08:46+02:00
|
avcodec/jpeg2000dec: Check nonzerobits more completely
Fixes: runtime error: shift exponent 36 is too large for 32-bit type 'int'
Fixes: 2239/clusterfuzz-testcase-minimized-5639766592716800
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
dfb61ea2630029b7aec7911aade769bf1a914eea
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/dfb61ea2630029b7aec7911aade769bf1a914eea
|
2017-06-16 20:32:39+02:00
|
avcodec/wavpack: Fix: runtime error: signed integer overflow: 3 * -2147483648 cannot be represented in type 'int'
Fixes: 1776/clusterfuzz-testcase-minimized-6191258231898112
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
5f91786fc8ad9b4108e09e6cbf119d95c8ac4db7
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/5f91786fc8ad9b4108e09e6cbf119d95c8ac4db7
|
2017-05-25 14:29:51+02:00
|
avcodec/snowdec: Fix runtime error: left shift of negative value -1
Fixes: 2197/clusterfuzz-testcase-minimized-6010716676947968
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
2e44126363bc9e23093ceced5d7bde1ee4bbb338
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/2e44126363bc9e23093ceced5d7bde1ee4bbb338
|
2017-06-11 15:22:07+02:00
|
avcodec/wavpack: Check float_shift
Fixes: runtime error: shift exponent 40 is too large for 32-bit type 'unsigned int'
Fixes: 1898/clusterfuzz-testcase-minimized-5970744880136192
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
4020b009d1e88ff10abd25fb768165afa546851d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4020b009d1e88ff10abd25fb768165afa546851d
|
2017-05-30 04:45:27+02:00
|
avcodec/mjpegdec: Fix runtime error: signed integer overflow: -32767 * 130560 cannot be represented in type 'int'
Fixes: 1724/clusterfuzz-testcase-minimized-4842395432648704
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
40fa6a2fa2c255293a780a194eecae5df52644a1
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/40fa6a2fa2c255293a780a194eecae5df52644a1
|
2017-05-22 02:16:39+02:00
|
avcodec/truemotion1: Fix multiple runtime error: signed integer overflow: 1246906962 * 2 cannot be represented in type 'int'
Fixes: 1616/clusterfuzz-testcase-minimized-5119196578971648
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
e45226adc46e513a1bb39ec2b09fb7c77515ab14
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/e45226adc46e513a1bb39ec2b09fb7c77515ab14
|
2017-05-16 23:14:28+02:00
|
avcodec/takdec: Fix runtime error: left shift of negative value -360
Fixes: 1739/clusterfuzz-testcase-minimized-5399237707694080
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
0ce7cf0c86a2744ddfe21cb0983ff572ed07ab69
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/0ce7cf0c86a2744ddfe21cb0983ff572ed07ab69
|
2017-05-22 21:43:39+02:00
|
avformat/wavdec: Check chunk_size
Fixes integer overflow and out of array access
Signed-off-by: Michael Niedermayer <[email protected]>
|
3d232196372f309a75ed074c4cef30578eec1782
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/3d232196372f309a75ed074c4cef30578eec1782
|
2017-05-10 15:21:17+02:00
|
avcodec/escape124: Check depth against num_superblocks
Fixes: runtime error: left shift of 66184 by 15 places cannot be represented in type 'int'
Fixes: 1707/clusterfuzz-testcase-minimized-6502767008940032
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
da617408c80afd2ea67a175fabc0ba546b9b04bc
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/da617408c80afd2ea67a175fabc0ba546b9b04bc
|
2017-05-22 19:42:39+02:00
|
avcodec/aacdec_fixed: Fix runtime error: left shift of negative value -1
Fixes: 1535/clusterfuzz-testcase-minimized-5826695535788032
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
26227d91865ddfbfe35c9ff84853cc469e1c7daf
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/26227d91865ddfbfe35c9ff84853cc469e1c7daf
|
2017-05-13 18:14:18+02:00
|
avcodec/lagarith: Check scale_factor
Fixes: 1425/clusterfuzz-testcase-minimized-6295712339853312
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
ed3c9b5b0dd5abb545c48e930e1c32c187b0776a
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/ed3c9b5b0dd5abb545c48e930e1c32c187b0776a
|
2017-05-10 01:10:55+02:00
|
avcodec/snowdec: Check qbias
Fixes: signed integer overflow: -1094995529 * 131 cannot be represented in type 'int'
Fixes: 1353/clusterfuzz-testcase-minimized-5208180449607680
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
523205ce1ed9415183c162998c68f573479e78fe
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/523205ce1ed9415183c162998c68f573479e78fe
|
2017-05-06 02:11:34+02:00
|
avcodec/flicvideo: Check for chunk overread
Fixes integer overflow
Fixes: 1292/clusterfuzz-testcase-minimized-5795512143839232
Signed-off-by: Michael Niedermayer <[email protected]>
|
d2657d225c14fcb560199ef0cefe34f76270ad92
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/d2657d225c14fcb560199ef0cefe34f76270ad92
|
2017-05-04 19:52:23+02:00
|
libswscale/tests/swscale: Fix uninitialized variables
Signed-off-by: Michael Niedermayer <[email protected]>
|
7796f290653349a4126f2d448d11bb4440b9f257
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/7796f290653349a4126f2d448d11bb4440b9f257
|
2017-04-30 14:23:27+02:00
|
avcodec/htmlsubtitles: Check for string truncation and return error
Fixes out of array access
Fixes: 1354/clusterfuzz-testcase-minimized-5520132195483648
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
f4ae3cce64bd46b1d539bdeac39753f83015f114
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/f4ae3cce64bd46b1d539bdeac39753f83015f114
|
2017-05-08 17:02:02+02:00
|
avcodec/cllc: Check prefix
Fixes: runtime error: left shift of 1610706944 by 1 places cannot be represented in type 'int'
Fixes: 1421/clusterfuzz-testcase-minimized-6239947507892224
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
62c5949beca2c95d6af5c74985467438d2295a66
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/62c5949beca2c95d6af5c74985467438d2295a66
|
2017-05-09 19:39:43+02:00
|
avcodec/dcadsp: Fix runtime error: signed integer overflow
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
9244b839b788e4677019041907ff5a4378a23490
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/9244b839b788e4677019041907ff5a4378a23490
|
2017-04-09 03:51:19+02:00
|
tools/target_dec_fuzzer: Fuzz video decoder related fields in context.
Signed-off-by: Michael Niedermayer <[email protected]>
|
164758a831b13c8a0fa1ba7d84e53dffcea2904a
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/164758a831b13c8a0fa1ba7d84e53dffcea2904a
|
2017-04-19 23:52:20+02:00
|
avformat/ftp: Solve a crash bug when network occur a exception
This fixes a proble where ffmpeg would cause crash to do a seek when the network disconnect.
The log like this:
01-01 10:53:03.441 6580 6580 F DEBUG : backtrace:
01-01 10:53:03.441 6580 6580 F DEBUG : #00 pc 0002942e /system/lib/libavformat.so (ffurl_write+9)
Signed-off-by: tiejun.peng <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
9fe73b0147d329bb03ea57c201dc99317cbf3c29
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/9fe73b0147d329bb03ea57c201dc99317cbf3c29
|
2017-04-05 23:57:08+02:00
|
pthread_frame: allow per-field ThreadFrame owners.
This tries to handle cases where separate invocations of decode_frame()
(each running in separate threads) write to respective fields in the
same AVFrame->data[]. Having per-field owners makes interaction between
readers (the referencing thread) and writers (the decoding thread)
slightly more optimal if both accesses are field-based, since they will
use the respective producer's thread objects (mutex/cond) instead of
sharing the thread objects of the first field's producer.
In practice, this fixes the following tsan-warning in fate-h264:
WARNING: ThreadSanitizer: data race (pid=21615)
Read of size 4 at 0x7d640000d9fc by thread T2 (mutexes: write M1006):
#0 ff_thread_report_progress pthread_frame.c:569 (ffmpeg:x86_64+0x100f7cf54)
[..]
Previous write of size 4 at 0x7d640000d9fc by main thread (mutexes: write M1004):
#0 update_context_from_user pthread_frame.c:335 (ffmpeg:x86_64+0x100f81abb)
|
083300bea935d125b83f60d7030f78a7ffb0f3df
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/083300bea935d125b83f60d7030f78a7ffb0f3df
|
2017-04-06 10:03:27-04:00
|
pthread_frame: call update_context_from_user() after acquiring lock.
Otherwise the thread may still be in the middle of decoding a previous
frame, which would effectively trigger a race condition on any field
concurrently read and written.
In practice, this fixes tsan warnings like the following:
WARNING: ThreadSanitizer: data race (pid=17380)
Write of size 4 at 0x7d64000160fc by main thread:
#0 update_context_from_user src/libavcodec/pthread_frame.c:335 (ffmpeg+0x000000dca515)
[..]
Previous read of size 4 at 0x7d64000160fc by thread T2 (mutexes: write M1821):
#0 ff_thread_report_progress src/libavcodec/pthread_frame.c:565 (ffmpeg+0x000000dcb08a)
|
1269cd5b6f540bef5913bf134d2f461aac50d70b
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/1269cd5b6f540bef5913bf134d2f461aac50d70b
|
2017-04-03 09:48:53-04:00
|
ffmpeg: make transcode_init_done atomic.
Should fix tsan warnings in fate-fifo-muxer-h264/wav:
WARNING: ThreadSanitizer: data race (pid=26552)
Write of size 4 at 0x000001e0d7c0 by main thread:
#0 transcode_init src/ffmpeg.c:3761 (ffmpeg+0x00000050ca1c)
[..]
Previous read of size 4 at 0x000001e0d7c0 by thread T1:
#0 decode_interrupt_cb src/ffmpeg.c:460 (ffmpeg+0x0000004fde19)
|
76d8c77430e9e0110623705bfb54d922cc2ac3ea
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/76d8c77430e9e0110623705bfb54d922cc2ac3ea
|
2017-04-03 09:38:10-04:00
|
h264: don't sync pic_id between threads.
This is how the ref list manager links bitstream IDs to H264Picture/Ref
objects, and is local to the producer thread. There is no need for the
consumer thread to know the bitstream IDs of its references in their
respective producer threads.
In practice, this fixes tsan warnings when running fate-h264:
WARNING: ThreadSanitizer: data race (pid=19295)
Read of size 4 at 0x7dbc0000e614 by main thread (mutexes: write M1914):
#0 ff_h264_ref_picture src/libavcodec/h264_picture.c:112 (ffmpeg+0x0000013b3709)
[..]
Previous write of size 4 at 0x7dbc0000e614 by thread T2 (mutexes: write M1917):
#0 build_def_list src/libavcodec/h264_refs.c:91 (ffmpeg+0x0000013b46cf)
|
e72690b18da064f6c0f04f09ccde72b6636e3159
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/e72690b18da064f6c0f04f09ccde72b6636e3159
|
2017-04-03 09:27:04-04:00
|
ffmpeg: Initialize two stack variables.
Avoids reading from uninitialized memory, regression since af1761f7
|
4b192ffdbe226461d8a07fd36d655ec13b2c7582
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4b192ffdbe226461d8a07fd36d655ec13b2c7582
|
2017-03-21 08:04:59+01:00
|
avcodec/mjpegdec: quant_matrixes can be up to 65535, use uint16_t
Fixes invalid shift
Fixes: 870/clusterfuzz-testcase-5649105424482304
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
23f3f92361a3db53e595de33cfd5440f53bee220
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/23f3f92361a3db53e595de33cfd5440f53bee220
|
2017-03-20 01:38:04+01:00
|
avcodec/movtextdec: Call mov_text_cleanup() on close
Fixes memleak
Fixes: 548/clusterfuzz-testcase-5511470875934720
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
a9f9b7f5c70e80245983e67b8ed23212d9637645
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/a9f9b7f5c70e80245983e67b8ed23212d9637645
|
2017-03-06 16:47:17+01:00
|
avcodec/dcadsp: Fix 2 runtime error: signed integer overflow: -1958094138 - 1078906344 cannot be represented in type 'int'
Fixes: 722/clusterfuzz-testcase-5711268868521984
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
29638d4db90d5e3fc107c1beb40808f53cc7acaa
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/29638d4db90d5e3fc107c1beb40808f53cc7acaa
|
2017-03-05 12:01:48+01:00
|
avcodec/vp56: Check avctx->error_concealment before enabling EC
Fixes timeout with 847/clusterfuzz-testcase-5291877358108672
Fixes timeout with 850/clusterfuzz-testcase-5721296509861888
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
98da63b3f5f5a277c5c3a16860db9a9f6741e54c
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/98da63b3f5f5a277c5c3a16860db9a9f6741e54c
|
2017-03-20 01:33:08+01:00
|
avcodec/rv34: Simplify and factor get_slice_offset() code
This also fixes several integer overflows by checking each value before
use.
Fixes: 662/clusterfuzz-testcase-4898131432964096
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
8696f254444c2ec24daa570f26feadbd3df911e4
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/8696f254444c2ec24daa570f26feadbd3df911e4
|
2017-02-24 14:12:12+01:00
|
avcodec/flacdec: reduce limit for golomb so that the max value does not overflow
Fixes: runtime error: left shift of 32 by 26 places cannot be represented in type 'int'
Fixes: 628/clusterfuzz-testcase-6187747641393152
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
0a65dae9d0c01730323695fdc45eb1c1f5a978f7
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/0a65dae9d0c01730323695fdc45eb1c1f5a978f7
|
2017-02-21 00:40:20+01:00
|
avcodec/adxdec: Fix runtime error: left shift of negative value -1
Fixes: 705/clusterfuzz-testcase-5129572590813184
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
d23727e0420b9f77f0d4cb28b43819b402f702e5
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/d23727e0420b9f77f0d4cb28b43819b402f702e5
|
2017-03-04 17:48:04+01:00
|
avcodec/mpegaudiodec: Eliminate many undefined operations
Fixes: 625/clusterfuzz-testcase-4574924406521856
Fixes: 626/clusterfuzz-testcase-4738718621499392
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
15ccaa344c4f645ae791aafecdef3d886e196127
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/15ccaa344c4f645ae791aafecdef3d886e196127
|
2017-02-20 17:14:54+01:00
|
avcodec/pthread_frame: Check av_packet_ref() for failure
Fixes CID1396242
|
1e5cfad57e88d168f50794e1523abfa477ad9aed
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/1e5cfad57e88d168f50794e1523abfa477ad9aed
|
2017-02-06 01:01:33+01:00
|
pvfdec: prevent overflow during block alignment calculation
Reviewed-by: Paul B Mahol <[email protected]>
Signed-off-by: Andreas Cadhalpun <[email protected]>
|
169c1cfa928040b83f2ac8386333ec5e5cff3df7
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/169c1cfa928040b83f2ac8386333ec5e5cff3df7
|
2017-01-29 01:20:52+01:00
|
lavf/rtmpproto: Make bytes_read variables 64bit.
When bytes_read overflowed, last_bytes_read did not yet overflow
and no bytes-read report was created leading to a timeout.
Analyzed-by: Thomas Bernhard
Fixes ticket #5836.
|
75bd4ea02400ffa5fa95569a9cf3213c64e651fb
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/75bd4ea02400ffa5fa95569a9cf3213c64e651fb
|
2017-01-25 00:39:13+01:00
|
avformat/mp3dec: fix msan warning when verifying mpa header
MPEG Audio frame header must be 4 bytes. If we fail to read
4 bytes bail early to avoid Use-of-uninitialized-value msan error.
Reference https://crbug.com/666874.
Signed-off-by: Michael Niedermayer <[email protected]>
|
ab87df9a47cd31bfcae9acd84c04705a149dfc14
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/ab87df9a47cd31bfcae9acd84c04705a149dfc14
|
2016-12-15 04:36:28+01:00
|
avformat/options_table: Set the default maximum number of streams to 1000
Fixes CVE-2016-9561, Note the security relevance of this is disputed as
running out of memory can happen with valid files
Suggested-by: Andreas Cadhalpun <[email protected]>
Reviewed-by: Andreas Cadhalpun <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
30581c51e72a7a7ea1572c1c6039f6e4c590a55c
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/30581c51e72a7a7ea1572c1c6039f6e4c590a55c
|
2016-12-13 15:55:42+01:00
|
qsvdec: Fix memory leak on error
Bug-Id: CID 1396851
Signed-off-by: Vittorio Giovara <[email protected]>
|
d32bdadda86b35c2960e4de877cf081b9d2dadb3
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/d32bdadda86b35c2960e4de877cf081b9d2dadb3
|
2016-12-08 15:53:58-05:00
|
avformat/ffmdec: Silence "may be used uninitialized in this function" warnings
Signed-off-by: Michael Niedermayer <[email protected]>
|
9859f54db3d24148826f2543367d06a3b77a9725
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/9859f54db3d24148826f2543367d06a3b77a9725
|
2016-12-03 19:45:31+01:00
|
Revert "ffserver: use AVStream.codecpar in open_input_stream()"
Fixes null pointer dereference
Testcase is simply a ffmpeg instance sending a stream to ffserver while another ffmpeg reads from it
This reverts commit 6f0a1710d77dde0d803861506a2157a23f08c14c.
|
bc9eb0467a52828d6be48de5e60f042bf3b62d1f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/bc9eb0467a52828d6be48de5e60f042bf3b62d1f
|
2016-11-27 14:07:58+01:00
|
libavcodec/exr : fix channel size calculation for uint32 channel
uint32 need 4 bytes not 1.
Fix decoding when there is half/float and uint32 channel.
This fixes crashes due to pointer corruption caused by invalid writes.
The problem was introduced in commit
03152e74dfdc7f438cb4a10402c4de744e807e22.
Signed-off-by: Andreas Cadhalpun <[email protected]>
|
52da3f6f70b1e95589a152aaf224811756fb9665
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/52da3f6f70b1e95589a152aaf224811756fb9665
|
2016-11-16 23:45:44+01:00
|
arm: vp9mc: Use a different helper register for PIC loads
This fixes crashes since 557c1675cf in linux PIC builds.
Previously, movrelx silently used r12 as helper register, which
doesn't work when r12 is the destination register.
Signed-off-by: Martin Storsjö <[email protected]>
|
11623217e3c9b859daee544e31acdd0821b61039
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/11623217e3c9b859daee544e31acdd0821b61039
|
2016-11-10 14:01:04+02:00
|
mov: Update colr values
For 'nclx', the latest edition of the standard switched from JPEG XR
to 23001-8, which matches the current order of our entries. Bounds
are preserved as a sanity check.
For 'nclc', qtff edition 2016-09-13 introduced a few new entries.
Signed-off-by: Vittorio Giovara <[email protected]>
|
4b07ebf1eb13561492f7e3c30a67f34415016b3e
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4b07ebf1eb13561492f7e3c30a67f34415016b3e
|
2016-10-21 17:15:04-04:00
|
avfilter/vf_weave: do not leak unused frame
Signed-off-by: Paul B Mahol <[email protected]>
|
653ca058079ccf65f487abd5f30f479903ec82ac
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/653ca058079ccf65f487abd5f30f479903ec82ac
|
2016-09-09 11:58:18+02:00
|
dxv: Check to make sure we don't overrun buffers on corrupt inputs
Signed-off-by: Martin Storsjö <[email protected]>
|
7ebdffc353f3f0827864e8e3461fdc00cc243b14
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/7ebdffc353f3f0827864e8e3461fdc00cc243b14
|
2016-07-31 22:50:47+03:00
|
h2645_parse: don't overread AnnexB NALs within an avc stream
We know the maximum size of an AnnexB NAL, signaling it as the maximum
NAL size allows ff_h2645_extract_rbsp to determine the correct size.
|
83a940e7fb9640954d631870e2ec6e8b3fc528ed
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/83a940e7fb9640954d631870e2ec6e8b3fc528ed
|
2016-07-08 15:20:20+02:00
|
checkasm: h264dsp: Initialize the padding area
This fixes valgrind warnings about conditional jumps based on
uninitialized data (even though the uninitialized data only ever
was compared with a direct copy of the same uninitialized data).
Signed-off-by: Martin Storsjö <[email protected]>
|
e57de6faa1e796099091c9af947d4755edacccaf
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/e57de6faa1e796099091c9af947d4755edacccaf
|
2016-06-28 14:24:01+03:00
|
avcodec/cfhd: Don't decode coefficients if no end of header tag found. Fixes fuzzed files such as the one in in ticket #5383
|
e9a9ca1936ea2853cdfb8913d44711d240eec60d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/e9a9ca1936ea2853cdfb8913d44711d240eec60d
|
2016-04-28 21:33:08+01:00
|
avformat/mux: Check that deinit is set before calling it
Fixes null pointer dereference
Signed-off-by: Michael Niedermayer <[email protected]>
|
c84ba07db4abd123b2ad93784e312a24d9341553
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c84ba07db4abd123b2ad93784e312a24d9341553
|
2016-04-24 12:07:37+02:00
|
avformat/svag: fix division by zero
Fixes ticket #5386
Signed-off-by: James Almer <[email protected]>
|
d5a3578350a3901a26df39df196bb085760ec46f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/d5a3578350a3901a26df39df196bb085760ec46f
|
2016-03-28 21:34:08-03:00
|
fate/aac: Increase fuzz from of fate-aac-pns-encode from 72 to 74 for Loongson
Signed-off-by: Michael Niedermayer <[email protected]>
|
c78a7267175a3d1e07b88be42f949f95124925e3
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c78a7267175a3d1e07b88be42f949f95124925e3
|
2016-03-05 22:38:14+01:00
|
ffmpeg_opt: Fix memleaks in "manually set programs" loop
Fixes CID1351356, CID1351357
Signed-off-by: Michael Niedermayer <[email protected]>
|
a25c5dbb5ee0f54c474d9caf43359cd0f61ae1bf
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/a25c5dbb5ee0f54c474d9caf43359cd0f61ae1bf
|
2016-02-08 15:57:24+01:00
|
libavcodec: Add missing AVClass pointers
This fixes crashes since 243df1351.
Signed-off-by: Martin Storsjö <[email protected]>
|
87a814fdce522d45aa31aa258cb5514d7e754bff
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/87a814fdce522d45aa31aa258cb5514d7e754bff
|
2016-01-22 17:08:08+02:00
|
avformat/hls: Even stricter URL checks
This fixes a null pointer dereference at least
Signed-off-by: Michael Niedermayer <[email protected]>
|
cfda1bea4c18ec1edbc11ecc465f788b02851488
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/cfda1bea4c18ec1edbc11ecc465f788b02851488
|
2016-01-15 15:29:22+01:00
|
lavu: prevent overflow in av_clip_intp2_c
This fixes ubsan runtime error: signed integer overflow: 8388608 +
2140274688 cannot be represented in type 'int'
Reviewed-by: Michael Niedermayer <[email protected]>
Signed-off-by: Andreas Cadhalpun <[email protected]>
|
f8bc0137bdf8da8806ef75d30bb749fcc301bb35
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/f8bc0137bdf8da8806ef75d30bb749fcc301bb35
|
2016-01-15 00:32:54+01:00
|
avformat/ivfenc: fix division by zero
Fixes Ticket 5115
Signed-off-by: Michael Niedermayer <[email protected]>
|
5c8467a07c654f6acd9e8e3a436cd5b746bb2f44
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/5c8467a07c654f6acd9e8e3a436cd5b746bb2f44
|
2016-01-08 23:27:10+01:00
|
lavfi/vf_overlay: fix memory leaks
Recent commits 6aaac24d72a7da631173209841a3944fcb4a3309 and
3835554bf8ed78539a3492c239f979c0ab03a15f made progress towards cleaning
up usage of the formats API, and in particular fixed possible NULL pointer
dereferences.
This commit addresses the issue of possible resource leaks when some intermediate
call fails.
Tested with valgrind --leak-check=full --show-leak-kinds=all, and manual simulation
of malloc/realloc failures.
Fixes: CID 1338327.
Signed-off-by: Ganesh Ajjanagadde <[email protected]>
|
301c2784b35036945cd9a7049808deecce149916
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/301c2784b35036945cd9a7049808deecce149916
|
2015-12-09 07:57:57-05:00
|
avcodec/hevc: Fix integer overflow of entry_point_offset
Fixes out of array read
Fixes: d41d8cd98f00b204e9800998ecf8427e/signal_sigsegv_321165b_7641_077dfcd8cbc80b1c0b470c8554cd6ffb.bit
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
|
214085852491448631dcecb008b5d172c11b8892
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/214085852491448631dcecb008b5d172c11b8892
|
2015-12-05 22:34:30+01:00
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.