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
Do not read beyond end of input in EA-TGV. This should avoid FATE test #362 result depending on uninitialized data. FATE result may change for this test. Originally committed as revision 22082 to svn://svn.ffmpeg.org/ffmpeg/trunk
4784b0922febe020c31e0fc6b37dd8b4d86b28f0
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4784b0922febe020c31e0fc6b37dd8b4d86b28f0
2010-02-26 18:12:27+00:00
Fix heap overflow due to lack of nb_components check. Originally committed as revision 21450 to svn://svn.ffmpeg.org/ffmpeg/trunk
021dccba1ff01b9005199fe8671a1887a262b430
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/021dccba1ff01b9005199fe8671a1887a262b430
2010-01-25 13:26:10+00:00
Re-add check for compilation failure with ebx clobber, and only set ebx_available if both "b" constraint and exb clobber code compile. This is to fix compilation with Mac OSX 10.5.8's gcc 4.0.1 in 64 bit mode (-m64) which only fails for ebx/rbx clobbers but not "b" constraints - this is probably a compiler bug. Originally committed as revision 20107 to svn://svn.ffmpeg.org/ffmpeg/trunk
e04a3c9613358b139f194df331ead6eba6369d8a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e04a3c9613358b139f194df331ead6eba6369d8a
2009-09-30 21:57:13+00:00
Fix cmd_pos bounds check to avoid the overflow case. Originally committed as revision 19640 to svn://svn.ffmpeg.org/ffmpeg/trunk
ffbe087b589506cb0e671fa711e5c2c6ea203ac0
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ffbe087b589506cb0e671fa711e5c2c6ea203ac0
2009-08-15 00:02:42+00:00
Check for failed extradata malloc, fixes a crash in out-of-memory conditions or with extremely large extradata. Originally committed as revision 19333 to svn://svn.ffmpeg.org/ffmpeg/trunk
3dcddf82edeb79a51a030191be6d4e816556c8ef
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3dcddf82edeb79a51a030191be6d4e816556c8ef
2009-07-03 11:27:52+00:00
oggenc: check for failed av_mallocz() Originally committed as revision 19245 to svn://svn.ffmpeg.org/ffmpeg/trunk
e9a32230c3e05deff257cbfa1e5e3d86dc0e94e6
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e9a32230c3e05deff257cbfa1e5e3d86dc0e94e6
2009-06-21 20:13:54+00:00
Change CHECK_STREAM_PTR macro to correctly handle the (extremely unlikely) overflow case. Originally committed as revision 18224 to svn://svn.ffmpeg.org/ffmpeg/trunk
a1f6ffd44d115e9ccc4e1acb2219e7d8bf6c0d58
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a1f6ffd44d115e9ccc4e1acb2219e7d8bf6c0d58
2009-03-29 17:50:46+00:00
Add av_uninit macro to variable to avoid false positive warning: libavcodec/eatgv.c: In function ‘tgv_decode_frame’: libavcodec/eatgv.c:66: warning: ‘offset’ may be used uninitialized in this function Originally committed as revision 17154 to svn://svn.ffmpeg.org/ffmpeg/trunk
decae20f3662650ecb9602c0c760af275a1e7db3
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/decae20f3662650ecb9602c0c760af275a1e7db3
2009-02-11 14:52:35+00:00
check that nb_streams is valid before setting stream, fix crash with jp2 which do not use same structure Originally committed as revision 16166 to svn://svn.ffmpeg.org/ffmpeg/trunk
271344377a3391c1a8ccc45e021721a56f237612
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/271344377a3391c1a8ccc45e021721a56f237612
2008-12-16 08:47:28+00:00
Fix memory leak in libgsm wrapper. Patch by Martin Storsjö, martin at martin dot st Originally committed as revision 15798 to svn://svn.ffmpeg.org/ffmpeg/trunk
916ff02261f79e759d996c76670958276276bf2a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/916ff02261f79e759d996c76670958276276bf2a
2008-11-10 20:02:00+00:00
matroskadec: ass events lines must end with a DOS style EOL Originally committed as revision 15454 to svn://svn.ffmpeg.org/ffmpeg/trunk
3df2be9fa7365646f22a93cfde1e4097467f498e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3df2be9fa7365646f22a93cfde1e4097467f498e
2008-09-28 23:01:07+00:00
Increase buffer size to 16384 patch by Alexander E. Patrakov" patrakov gmail This fixes a (probably not exploitable) buffer overflow (apparently unknown to its author). Originally committed as revision 14917 to svn://svn.ffmpeg.org/ffmpeg/trunk
4df7beb3686caf2df345d2e10564aa8cf6c24a65
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4df7beb3686caf2df345d2e10564aa8cf6c24a65
2008-08-23 13:29:13+00:00
Fix regression test failure caused by golomb limit not being considered in r15334. Originally committed as revision 15338 to svn://svn.ffmpeg.org/ffmpeg/trunk
740c14dbd788c1a3c49bea3af0af87b5f8077933
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/740c14dbd788c1a3c49bea3af0af87b5f8077933
2008-09-16 01:24:12+00:00
Make v4l2_read_header() don't free a stream in case of failure when reading its header. The stream will be freed later in av_open_input_stream(). Fix a segmentation fault due to a double free on the same pointer. Originally committed as revision 14247 to svn://svn.ffmpeg.org/ffmpeg/trunk
deaab5fc32134ea53bff2ab46f95dd493ecf94c1
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/deaab5fc32134ea53bff2ab46f95dd493ecf94c1
2008-07-15 20:45:42+00:00
free private streamcontext when closing demuxer, fix memory leak, patch by Art Clarke, aclarke at vlideshow dot com Originally committed as revision 13800 to svn://svn.ffmpeg.org/ffmpeg/trunk
e3ec60d82a853a4de5568bfadcd72e3984095148
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e3ec60d82a853a4de5568bfadcd72e3984095148
2008-06-18 08:30:50+00:00
Remove improper usage of AV_TIME_BASE_Q Originally committed as revision 13960 to svn://svn.ffmpeg.org/ffmpeg/trunk
a4696aa2fe88c21927835e59d543eb2efbfabaef
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a4696aa2fe88c21927835e59d543eb2efbfabaef
2008-06-25 11:55:57+00:00
Check for av_new_stream failure, fixes CID76 RUN2 Originally committed as revision 13533 to svn://svn.ffmpeg.org/ffmpeg/trunk
6c10281c3a3c5fe0ce9c5943ed94c73ebd0a5209
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6c10281c3a3c5fe0ce9c5943ed94c73ebd0a5209
2008-05-29 15:22:45+00:00
Force DOS users to enable memalign hack when needed, the same way it's done for MinGW. Originally committed as revision 12299 to svn://svn.ffmpeg.org/ffmpeg/trunk
6548ff57c0637337741c7fb837c218f738a70d7c
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6548ff57c0637337741c7fb837c218f738a70d7c
2008-03-03 17:06:48+00:00
Fix crash in PCM decoder when number of channels is not set. Patch by "wg": video06 malloc de See Issue298 Originally committed as revision 11249 to svn://svn.ffmpeg.org/ffmpeg/trunk
3426d575bf46edc0f52d15f7e7c1d199e8688faa
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3426d575bf46edc0f52d15f7e7c1d199e8688faa
2007-12-17 10:41:47+00:00
Do not print quality when stream copy, Silence valgrind complaint: ==14746== Conditional jump or move depends on uninitialised value(s) ==14746== at 0x43488DF: (within /lib/i686/cmov/libc-2.7.so) ==14746== by 0x434ED81: __printf_fp (in /lib/i686/cmov/libc-2.7.so) ==14746== by 0x434A3F3: vfprintf (in /lib/i686/cmov/libc-2.7.so) ==14746== by 0x436EA93: vsnprintf (in /lib/i686/cmov/libc-2.7.so) ==14746== by 0x4353234: snprintf (in /lib/i686/cmov/libc-2.7.so) ==14746== by 0x806247C: print_report (ffmpeg.c:963) Originally committed as revision 11728 to svn://svn.ffmpeg.org/ffmpeg/trunk
99fb79b55ad9e6be52c16f2fd794f350bd76154a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/99fb79b55ad9e6be52c16f2fd794f350bd76154a
2008-02-01 13:08:04+00:00
fix a crash with svq1 + sse2. EMU_EDGE broke memory alignment when the desired alignment is >32 bytes. Originally committed as revision 8999 to svn://svn.ffmpeg.org/ffmpeg/trunk
5b67307a6898d9b1b1b78034d4f4fa79932d91bf
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5b67307a6898d9b1b1b78034d4f4fa79932d91bf
2007-05-12 00:31:48+00:00
fix an off-by-one error in probing function this prevented correct detection of Mushishi24-head.mkv Originally committed as revision 8177 to svn://svn.ffmpeg.org/ffmpeg/trunk
ebfcf31ddf654b6e44c8cebb51bfe0ba0964b33e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ebfcf31ddf654b6e44c8cebb51bfe0ba0964b33e
2007-03-01 23:36:39+00:00
Fix possible overflows. Found by Steven Johnson Originally committed as revision 7065 to svn://svn.ffmpeg.org/ffmpeg/trunk
d8b45f7961dd7ad73fbe703f5b7ab600c876cde3
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d8b45f7961dd7ad73fbe703f5b7ab600c876cde3
2006-11-14 19:19:13+00:00
cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code. Originally committed as revision 23158 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
6e42e6c4b410dbef8b593c2d796a5dad95f89ee4
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6e42e6c4b410dbef8b593c2d796a5dad95f89ee4
2007-04-28 11:44:49+00:00
fix stream class fix a infinite loop on corrupted streams Originally committed as revision 4343 to svn://svn.ffmpeg.org/ffmpeg/trunk
01bd1ed2db53fa90a0512d65ad6c08170061dfdf
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/01bd1ed2db53fa90a0512d65ad6c08170061dfdf
2005-06-03 08:54:32+00:00
10l (overflows) Originally committed as revision 4226 to svn://svn.ffmpeg.org/ffmpeg/trunk
1677155df8ee2dbf6c99738b289e27c2237506bd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1677155df8ee2dbf6c99738b289e27c2237506bd
2005-05-12 16:27:05+00:00
- a lot less overflows when decoding frames - no more error with norm6 codes - almost skipped frames (~110 bits) are not overflowed However: - there are very few bits left in those frames, so I wonder if enough MB data is actually left - NORM6/DIFF6 (4/5) bitplanes are a lot more present, which I don't find obvious. patch by anonymous Originally committed as revision 3915 to svn://svn.ffmpeg.org/ffmpeg/trunk
bf2bc926f04dcdde0a22c137d08a0bb546e0179e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bf2bc926f04dcdde0a22c137d08a0bb546e0179e
2005-02-01 10:03:55+00:00
10l (missing overflow check) Originally committed as revision 3908 to svn://svn.ffmpeg.org/ffmpeg/trunk
84af4a7ee6f938c6466c8d795ead0e6ee8ed486d
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/84af4a7ee6f938c6466c8d795ead0e6ee8ed486d
2005-01-31 03:14:22+00:00
various security fixes and precautionary checks Originally committed as revision 3822 to svn://svn.ffmpeg.org/ffmpeg/trunk
0ecca7a49f8e254c12a3a1de048d738bfbb614c6
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0ecca7a49f8e254c12a3a1de048d738bfbb614c6
2005-01-12 00:16:25+00:00
H.261 decoder improvements - GOB's can exist of only MBA_STUFFING codes: it crashed before, but it is fixed now - Clearer code - Some extra checks so the decoder is more resilient against errors patch by (Maarten Daniels <maarten dot daniels at student dot luc dot ac dot be>) Originally committed as revision 3457 to svn://svn.ffmpeg.org/ffmpeg/trunk
49e5dcbce5f9e08ec375fd54c413148beb81f1d7
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/49e5dcbce5f9e08ec375fd54c413148beb81f1d7
2004-09-13 03:27:53+00:00
put the warning to the right place to avoid crashes Originally committed as revision 3448 to svn://svn.ffmpeg.org/ffmpeg/trunk
d58a6d8537a6f34941973c5c3be93d484a4d62ed
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d58a6d8537a6f34941973c5c3be93d484a4d62ed
2004-09-10 15:38:14+00:00
mpeg1 overflowing dc coeff fix Originally committed as revision 2674 to svn://svn.ffmpeg.org/ffmpeg/trunk
85e3374798c6d694983cbdd3a0d7a005f68b3c80
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/85e3374798c6d694983cbdd3a0d7a005f68b3c80
2004-01-06 21:16:59+00:00
* fixing bug that prevented resampling the picture and changing pix_fmt at the same time. * aspect ratio should be more reliable for DV now. Originally committed as revision 2338 to svn://svn.ffmpeg.org/ffmpeg/trunk
a686caf03ddd29b32abd1af5c6f887bc09e6d71b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a686caf03ddd29b32abd1af5c6f887bc09e6d71b
2003-10-03 01:08:10+00:00
memory leak fix by (Tom Dexter <devel at www dot digitalaudiorock dot com>) Originally committed as revision 2216 to svn://svn.ffmpeg.org/ffmpeg/trunk
0a5f92a120118286961a28486cb2a1d96ca47627
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0a5f92a120118286961a28486cb2a1d96ca47627
2003-09-07 09:26:39+00:00
fixed layer1/2 overflow if very loud sound - fixed broken free format decoding to pass all mpeg audio standard decoding tests (please avoid patching the parser without having all test streams available - contact me if necessary) Originally committed as revision 634 to svn://svn.ffmpeg.org/ffmpeg/trunk
8155233413540c63e53a620ff5734fb4b0635611
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8155233413540c63e53a620ff5734fb4b0635611
2002-06-01 14:34:29+00:00
- Bug fix MPEG-2 decoder to handle "repeat_first_field" (Telecine) - Hack in MPEG-2 demux to cope with buggy VOBs. Originally committed as revision 333 to svn://svn.ffmpeg.org/ffmpeg/trunk
1cb0edb40b8e94e1a50ad40c40d43e34ed8435fe
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1cb0edb40b8e94e1a50ad40c40d43e34ed8435fe
2002-03-16 02:41:00+00:00
avcodec/nvenc: refcount input frame mappings If some logic like vsync in ffmpeg.c duplicates frames, it might pass the same frame twice, which will result in a crash due it being effectively mapped and unmapped twice. Signed-off-by: Timo Rothenpieler <[email protected]>
bbe1b21022e4872bc64066d46a4567dc1b655f7a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bbe1b21022e4872bc64066d46a4567dc1b655f7a
2018-01-28 12:29:24+01:00
avfilter/af_compand: change default attack to 0 Fixes many distortions. Signed-off-by: Paul B Mahol <[email protected]>
13f4d077ed27c53fffd114f92fbd7b2c9cfcec77
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/13f4d077ed27c53fffd114f92fbd7b2c9cfcec77
2017-05-15 14:29:18+02:00
v4l2_m2m: Fix integer overflow in timestamp handling
2e96f5278095d44f090a4d89507e62d27cccf3b9
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2e96f5278095d44f090a4d89507e62d27cccf3b9
2018-01-22 17:24:36+01:00
lavf/mov: Use av_fast_realloc() in mov_read_stts(). Avoids large allocations for short files with invalid stts entry. Fixes bugzilla 1102.
1112ba012df38d486694154b03f5007341f43b24
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1112ba012df38d486694154b03f5007341f43b24
2018-01-01 22:27:29+01:00
avcodec/hevc_cabac: Check prefix so as to avoid invalid shifts in coeff_abs_level_remaining_decode() I suspect that this can be limited tighter, but i failed to find anything in the spec that would confirm that. Fixes: 4833/clusterfuzz-testcase-minimized-5302840101699584 Fixes: runtime error: left shift of 134217730 by 4 places cannot be represented in type 'int' Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
a026a3efaeb9c2026668dccbbda339a21ab3206b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a026a3efaeb9c2026668dccbbda339a21ab3206b
2018-01-27 04:29:30+01:00
avcodec/dirac_dwt: Fix integer overflow in COMPOSE_DD97iH0() and COMPOSE_DD137iL0() Fixes: runtime error: signed integer overflow: 2147483646 + 33554433 cannot be represented in type 'int' Fixes: 4563/clusterfuzz-testcase-minimized-5438979567517696 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
4d70fbeec8cbab072b3a9b9f760b8deaaef240f2
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4d70fbeec8cbab072b3a9b9f760b8deaaef240f2
2017-12-26 18:05:10+01:00
avcodec/vp9: mark frame as finished on decode_tiles() failure Fixes deadlock with framethreads Fixes: Netflix_Aerial_1080p_60fps_8bit_420.y4m.vp9.noaltref.webm.ivf.s69372_r01-05_b6-.ivf Fixes: Netflix_Aerial_1080p_60fps_10bit_420.y4m.vp9.noaltref.webm.ivf.s149104_r01-05_b6-.ivf Fixes: ducks_take_off_444_720p50.y4m.vp9.webm.ivf.s107375_r01-05_b6-.ivf Reported-by: James Zern <[email protected]> Reviewed-by: James Zern <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
5e03eea673a9da2253ed15152e46b1422b35d145
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5e03eea673a9da2253ed15152e46b1422b35d145
2017-12-15 00:08:56+01:00
avcodec/hevcdsp_template.c: Fix undefined shift in FUNC(dequant) Fixes: runtime error: left shift of negative value -180 Fixes: 4626/clusterfuzz-testcase-minimized-5647837887987712 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
0c9ab5ef9c1ee852c80c859c9e07efe8730b57ed
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0c9ab5ef9c1ee852c80c859c9e07efe8730b57ed
2017-12-26 18:05:10+01:00
avcodec/dnxhddec: Do not overwrite colorspace if the container has set it. The existing logic overrides container metadata even in cases where the container metadata must be trusted (e.g. HDR). The original spec had no provision for specifying color volume, so many files rely on the assumption of Rec. 709. An update to the spec included a 'clv' field for explicitly signaling that the container should be trusted in an existing bitfield in the frame header, but the default of 0 from old encoders forces Rec. 709, which would break any HDR stream. Because there is no place in DNxHR for specifying a transfer function, DNxHR HDR files must include container-level color information. This patch maintains the existing behavior of choosing the 709 over the 601 matrix when container-level information is missing, and allows container-level information to win if present. Signed-off-by: Steven Robertson <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
c6a905b91d935f78f5c33f6ce2dbe294b3353b77
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c6a905b91d935f78f5c33f6ce2dbe294b3353b77
2017-11-30 02:46:22+01:00
avcodec/dirac_dwt: Fix integer overflow in COMPOSE_FIDELITYi* Fixes: runtime error: signed integer overflow: -2143827186 - 7404944 cannot be represented in type 'int' Fixes: 4354/clusterfuzz-testcase-minimized-4671122764201984 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
2b6964f764382742bb052a1ee3b7167cac35332f
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2b6964f764382742bb052a1ee3b7167cac35332f
2017-11-26 18:35:55+01:00
avcodec/hevcdsp_template: Fix invalid shift in put_hevc_epel_bi_w_v() Fixes: runtime error: left shift of negative value -255 Fixes: 4037/clusterfuzz-testcase-minimized-5290998163832832 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
7d88586e4728e97349f98e07ff782bb168ab96c3
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7d88586e4728e97349f98e07ff782bb168ab96c3
2017-11-20 21:29:00+01:00
avcodec/dirac_dwt: Fix integer overflow in COMPOSE_DD137iL0() Fixes: 4035/clusterfuzz-testcase-minimized-6479308925173760 Fixes: runtime error: signed integer overflow: 9 * 402653183 cannot be represented in type 'int' Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
73964680d7bce6d81ddc553a24d73e9a1c9156f9
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/73964680d7bce6d81ddc553a24d73e9a1c9156f9
2017-11-18 11:57:57+01:00
avcodec/sbrdsp_fixed: Fix integer overflow in shift in sbr_hf_g_filt_c() Fixes: runtime error: shift exponent 66 is too large for 64-bit type 'long long' Fixes: 3642/clusterfuzz-testcase-minimized-5443853801750528 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
981e99ab99986935affad7c164ebdfe28e8ea7f8
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/981e99ab99986935affad7c164ebdfe28e8ea7f8
2017-11-05 22:13:16+01:00
lavc/alac: Avoid allocating huge memory blocks for malicious alac input.
3357b68bc02d855a92656d7a474b22adb32ca1a7
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3357b68bc02d855a92656d7a474b22adb32ca1a7
2017-11-04 17:08:18+01:00
avcodec/vp9_superframe_bsf: cache packets by creating new references rather than moving them Should hopefully fix the invalid reads after free introduced in e1bc3f4396ade6033787717d3650fb62663eae8 for all targets. Signed-off-by: James Almer <[email protected]>
7a02b364b68c0bf7f065f5c217fae458f0efdb8d
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7a02b364b68c0bf7f065f5c217fae458f0efdb8d
2017-10-31 20:33:32-03:00
movenc: take packet dts shifting into mention in check_pkt This FFmpeg-specific "fuzzer fix" was never perfect, but now it stopped encoding of actual content with a big enough DTS shift. This returns the function to its original state of results before negative CTS offsets were added. I remember dealing with this function before, but somehow had forgotten about it during VDD. The test cases not tripping this over also didn't help.
ffc58b2ce27e140b47900d1ead304663f7b385ae
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ffc58b2ce27e140b47900d1ead304663f7b385ae
2017-10-04 13:09:29+02:00
avformat/hlsenc: fix CID 1418106 fix the "Uninitialized scalar variable (UNINIT)" problem. Signed-off-by: Steven Liu <[email protected]>
7e9cdd3f49e50ef5d8f85d3510c8f0d305671dac
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7e9cdd3f49e50ef5d8f85d3510c8f0d305671dac
2017-09-21 23:08:00+08:00
avutil/imgutils: Fix warning: missing braces around initializer Signed-off-by: Michael Niedermayer <[email protected]>
0f5576a22b11ef726a01b14d1eaae2fa780c2f52
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0f5576a22b11ef726a01b14d1eaae2fa780c2f52
2017-09-16 19:55:03+02:00
avcodec/aacdec_fixed: Fix undefined shift Fixes: runtime error: left shift of negative value -801112064 Fixes: 3492/clusterfuzz-testcase-minimized-5784775283441664 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
fca198fb5bf42ba6b765b3f75b11738e4b4fc2a9
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fca198fb5bf42ba6b765b3f75b11738e4b4fc2a9
2017-11-13 19:54:20+01:00
avfilter/vf_separatefields: stop leaking last frame This can happen when filtering is ended without receiving EOF.
41096904d03611de8024a8dbebb6935d643c3d6b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/41096904d03611de8024a8dbebb6935d643c3d6b
2017-08-08 18:53:10+02:00
avcodec/rangecoder: Do not increase the pointer beyond the buffer Fixes: undefined behavior Signed-off-by: Michael Niedermayer <[email protected]>
c359c51947c9ac925cc4a5d1893ef20ea1d3b4c8
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c359c51947c9ac925cc4a5d1893ef20ea1d3b4c8
2017-08-18 11:33:14+02:00
avcodec/hevc_ps: fix integer overflow in log2_parallel_merge_level_minus2 Fixes: runtime error: signed integer overflow: -2147483647 - 2 cannot be represented in type 'int' Fixes: 2702/clusterfuzz-testcase-minimized-4511932591636480 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
74c1c22d7f0d25f527ed2ebf62493be5ad52c972
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/74c1c22d7f0d25f527ed2ebf62493be5ad52c972
2017-07-26 17:06:29+02:00
avcodec/diracdec: Check perspective_exp and zrs_exp. Fixes: undefined shift Fixes: runtime error: shift exponent 264 is too large for 32-bit type 'int' Fixes: 2860/clusterfuzz-testcase-minimized-4672811689836544 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
1e6cab874512070b36267a5a53fd053f90072fa2
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1e6cab874512070b36267a5a53fd053f90072fa2
2017-08-17 00:23:01+02:00
pthread_frame: save the FF_DEBUG_THREADS option in PerThreadContext. Add the debug_threads boolean field to PerThreadContext. For PerThreadContext *p, p->debug_threads records whether the FF_DEBUG_THREADS bit is set in p->avctx->debug, and p->debug_threads and p->avctx->debug are kept in sync. The debug_threads field is defined as an atomic_int to allow atomic read by another thread in ff_thread_await_progress(). This fixes the tsan warning that 2e664b9c1e73c80aab91070c1eb7676f04bdd12d attempted to fix: WARNING: ThreadSanitizer: data race (pid=452658) Write of size 4 at 0x7b640003f4fc by main thread (mutexes: write M248499): #0 update_context_from_user [..]/libavcodec/pthread_frame.c:335:19 (5ab42bb1a6f4b068d7863dabe9b2bacc+0xe73859) [..] Previous read of size 4 at 0x7b640003f4fc by thread T130 (mutexes: write M248502, write M248500): #0 ff_thread_await_progress [..]/libavcodec/pthread_frame.c:591:26 (5ab42bb1a6f4b068d7863dabe9b2bacc+0xe749a1) Signed-off-by: Wan-Teh Chang <[email protected]> Signed-off-by: Ronald S. Bultje <[email protected]>
15c41cb6adc4d6720d51c21f8baebebce923b213
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/15c41cb6adc4d6720d51c21f8baebebce923b213
2017-07-11 21:27:35-04:00
avcodec/pthread_slice: use slice threading from avutil Also remove pthread_cond_broadcast(progress_cond) on uninit. Broadcasting it is not required because workers are always parked when they are not in thread_execute. So it is imposible that a worker is waiting on progress_cond when uninitialized. Benchmark: ./ffmpeg -threads $threads -thread_type slice -i 10slices.mp4 -f null null threads=2: old: 70.212s 70.525s 70.877s new: 65.219s 65.377s 65.484s threads=3: old: 65.086s 66.306s 66.409s new: 63.229s 65.026s 65.116s threads=4: old: 60.993s 61.482s 62.123s new: 59.224s 59.441s 59.667s threads=5: old: 57.576s 57.860s 58.832s new: 53.032s 53.948s 54.086s Signed-off-by: Muhammad Faiz <[email protected]>
b505f15b1530d72682b3314e84936f80fe6e43b2
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b505f15b1530d72682b3314e84936f80fe6e43b2
2017-07-19 15:51:32+07:00
videotoolbox: fix crash when decoding interlaced video with new API
02d248d5828dbbfecfb37597c626900f41448bea
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/02d248d5828dbbfecfb37597c626900f41448bea
2017-07-11 18:27:27+02:00
avcodec/cfhd: Fix invalid left shift of negative value Fixes: runtime error: left shift of negative value -1 Fixes: 2395/clusterfuzz-testcase-minimized-6540529313513472 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
c709f009dad20d99b28918f4f8d7cd394b838def
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c709f009dad20d99b28918f4f8d7cd394b838def
2017-06-28 23:39:11+02:00
avcodec/hevcdec: do basic validity check on delta_chroma_weight and offset Fixes: runtime error: signed integer overflow: 2147483520 + 128 cannot be represented in type 'int' Fixes: 2385/clusterfuzz-testcase-minimized-6594333576790016 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
2c874548d663225a61b9c25a8b2ce490d26b65fa
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2c874548d663225a61b9c25a8b2ce490d26b65fa
2017-06-27 23:21:12+02:00
lavc/videotoolboxenc: fix open videotoolbox bug on iOS8.4 Checks for NULL before using object. Signed-off-by: Rick Kern <[email protected]>
9f26d670e447767683ed21b1b5ac16423eba4c72
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9f26d670e447767683ed21b1b5ac16423eba4c72
2017-06-23 09:37:34-04:00
avcodec/wavpack: Fix integer overflow Fixes: runtime error: signed integer overflow: 227511904 + 1964113935 cannot be represented in type 'int' Fixes: 2331/clusterfuzz-testcase-minimized-6182185830711296 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
24e95f9d4de012f51fdd5767dff0b3142e13ec3a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/24e95f9d4de012f51fdd5767dff0b3142e13ec3a
2017-06-23 03:03:04+02:00
avformat/oggenc: check for stream private data in ogg_free() Fixes a NULL pointer derefence when ogg_init() returns a failure and a stream's private data was not yet allocated. This is a regression since 3c5a53cdfa099bba8bd951f95b85727b4b3b5d68 Reviewed-by: Paul B Mahol <[email protected]> Signed-off-by: James Almer <[email protected]>
505cb8e390f275830f5f387020207aaf267be800
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/505cb8e390f275830f5f387020207aaf267be800
2017-06-22 16:12:51-03:00
avcodec/jpeg2000dsp: Reorder operations in ict_int() to avoid 2 integer overflows Fixes: runtime error: signed integer overflow: 58065 * 51981 cannot be represented in type 'int' Fixes: 2271/clusterfuzz-testcase-minimized-5778297776504832 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
c746f92a8e03d5a062359fba836eba4b3530687e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c746f92a8e03d5a062359fba836eba4b3530687e
2017-06-17 22:36:54+02:00
avcodec/mpeg4videodec: Fix integer overflow in num_sprite_warping_points=2 case Fixes: runtime error: signed integer overflow: 131072 + 2147352576 cannot be represented in type 'int' Fixes: 2192/clusterfuzz-testcase-minimized-5370387988742144 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
0a87be404ab7e3f47e67e79160dcc9623e36835b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0a87be404ab7e3f47e67e79160dcc9623e36835b
2017-06-15 00:16:20+02:00
avfilter/vf_scale_npp: fix out-of-bounds reads Fixes CIDs 1396414 and 1396415
0fbc9bbbbb39b9a6f62d57f237052b64eefac578
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0fbc9bbbbb39b9a6f62d57f237052b64eefac578
2017-06-13 19:47:44+02:00
avcodec/interplayvideo: Clean up frames on parameter change Fixes: out of array access Fixes: 2467/clusterfuzz-testcase-minimized-4755798049685504 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
f1baafac7129c3bb8d4abaaa899988c7a51ca5cd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f1baafac7129c3bb8d4abaaa899988c7a51ca5cd
2017-07-06 03:59:09+02:00
avcodec/pafvideo: Check packet size and frame code before ff_reget_buffer() Fixes 1745/clusterfuzz-testcase-minimized-6160693365571584 Fixes: Timeout Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
faa5a2181df53b5226f998a20b735798addcd365
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/faa5a2181df53b5226f998a20b735798addcd365
2017-06-04 13:40:54+02:00
avcodec/wavpack: Fix runtime error: signed integer overflow: -1386217472 * 4 cannot be represented in type 'int' Fixes: 1853/clusterfuzz-testcase-minimized-5471155626442752 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
c51357d206f2ad58c9d9610cf85b6ea5dd88f501
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c51357d206f2ad58c9d9610cf85b6ea5dd88f501
2017-05-28 12:57:14+02:00
avcodec/sanm: Fix uninitialized reference frames Fixes: poc.snm Signed-off-by: Michael Niedermayer <[email protected]>
ca616b0f72c65b0ef5f9e1e6125698b15f50a26e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ca616b0f72c65b0ef5f9e1e6125698b15f50a26e
2017-05-24 15:51:11+02:00
avcodec/wavpack: Fix runtime error: shift exponent 32 is too large for 32-bit type 'int' Fixes: 1967/clusterfuzz-testcase-minimized-5757031199801344 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
8b3e580b7f436206e84dac89415e057fa9abdab8
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8b3e580b7f436206e84dac89415e057fa9abdab8
2017-06-01 22:20:16+02:00
avcodec/aacps: Fix runtime error: left shift of 1073741824 by 1 places cannot be represented in type 'INTFLOAT' (aka 'int') Fixes: 2005/clusterfuzz-testcase-minimized-5744226438479872 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
9faf098163b33e7b0f5baafa3371ef5401f4105d
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9faf098163b33e7b0f5baafa3371ef5401f4105d
2017-06-03 00:09:58+02:00
avcodec/fic: Fix multiple runtime error: signed integer overflow: 5793 * 419752 cannot be represented in type 'int' Fixes: 1669/clusterfuzz-testcase-minimized-5287529198649344 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
a173f484b52ed63292439de5347e49bd78cad0ed
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a173f484b52ed63292439de5347e49bd78cad0ed
2017-05-18 18:08:23+02:00
avcodec/aac_defines: Fix: runtime error: left shift of negative value -2 Fixes: 1716/clusterfuzz-testcase-minimized-4691012196761600 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
c3547dcbc326474745f02a618e01848a293f3f92
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c3547dcbc326474745f02a618e01848a293f3f92
2017-05-21 02:56:47+02:00
avcodec/rscc: Check pixel_size for overflow Fixes: 1509/clusterfuzz-testcase-minimized-5129419876204544 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
934572c5c3592732a30336afdf2df9926a8b4df2
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/934572c5c3592732a30336afdf2df9926a8b4df2
2017-05-13 01:32:55+02:00
avcodec/mlp: Fix multiple runtime error: left shift of negative value -1 Fixes: 1512/clusterfuzz-testcase-minimized-4713846423945216 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
74dc728a2c2cc353da20cdc09b8cdfbbe14b7be8
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/74dc728a2c2cc353da20cdc09b8cdfbbe14b7be8
2017-05-13 15:54:33+02:00
avcodec/msmpeg4dec: Check for cbpy VLC errors Fixes: runtime error: left shift of negative value -1 Fixes: 1480/clusterfuzz-testcase-minimized-5188321007370240 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
15e892aad12b23e9b5686cf66ca6fa739c734ead
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/15e892aad12b23e9b5686cf66ca6fa739c734ead
2017-05-11 20:04:57+02:00
avcodec/cllc: Check num_bits Fixes: runtime error: shift exponent -2 is negative Fixes: 1479/clusterfuzz-testcase-minimized-6638493360979968 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
2bfd0a97587d26c0c39413a6291ccc66e4a928d0
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2bfd0a97587d26c0c39413a6291ccc66e4a928d0
2017-05-11 20:04:57+02:00
avcodec/svq3: Fix multiple runtime error: signed integer overflow: 44161 * 61694 cannot be represented in type 'int' Fixes: 1382/clusterfuzz-testcase-minimized-6013445293998080 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
669419939c1d36be35196859dc73ec9a194157ad
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/669419939c1d36be35196859dc73ec9a194157ad
2017-05-07 04:11:21+02:00
libavcodec/mpeg4videodec: Convert sprite_offset to 64bit This avoids intermediates from overflowing (the final values are checked) Fixes: runtime error: signed integer overflow: -167712 + -2147352576 cannot be represented in type 'int' Fixes: 1298/clusterfuzz-testcase-minimized-5955580877340672 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
c1c3a14073b33f790075f2884ea5c64451a6c876
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c1c3a14073b33f790075f2884ea5c64451a6c876
2017-05-04 19:49:45+02:00
vf_hwmap: Add reverse mapping for hardware frames This is something of a hack. It allocates a new hwframe context for the target format, then maps it back to the source link and overwrites the input link hw_frames_ctx so that the previous filter will receive the frames we want from ff_get_video_buffer(). It may fail if the previous filter imposes any additional constraints on the frames it wants to use as output.
81a4cb8e58636d4efd200c2b4fec786a7e948d8b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/81a4cb8e58636d4efd200c2b4fec786a7e948d8b
2017-04-30 17:33:18+01:00
decode: Initialize ret before using it libavcodec/decode.c:608:9: warning: variable 'ret' is used uninitialized whenever 'if' condition is false
efddf2c09aed7400c73ecf327f86a4d0452b94b5
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/efddf2c09aed7400c73ecf327f86a4d0452b94b5
2017-04-10 09:04:41-04:00
mm: Skip unexpected audio packets Bug-Id: 1046 CC: [email protected]
1731c3530bffb876deb9e00dfffdf9841a8412cd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1731c3530bffb876deb9e00dfffdf9841a8412cd
2017-04-20 15:39:18+00:00
png: split header state and data state in two separate variables. Fixes a reported (but false) race condition in tsan for fate-apng: WARNING: ThreadSanitizer: data race (pid=6274) Read of size 4 at 0x7d680001ec78 by main thread (mutexes: write M1338): #0 update_thread_context src/libavcodec/pngdec.c:1456 (ffmpeg+0x000000dacf0c) [..] Previous write of size 4 at 0x7d680001ec78 by thread T1 (mutexes: write M1335): #0 decode_idat_chunk src/libavcodec/pngdec.c:737 (ffmpeg+0x000000dae951)
478f1c3d5e5463a284ea7efecfc62d47ba3be11a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/478f1c3d5e5463a284ea7efecfc62d47ba3be11a
2017-04-03 10:08:29-04:00
avfilter/avf_abitscope: Correct range for framerate Signed-off-by: Gyan Doshi <[email protected]> Signed-off-by: Paul B Mahol <[email protected]> (via IRC)
2104e3383fd1e9340c693451d9c7abb6501683ac
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2104e3383fd1e9340c693451d9c7abb6501683ac
2017-03-30 10:29:14-08:00
tests/api-seek: fix memory leak on realloc() failure Reviewed-by: Michael Niedermayer <[email protected]> Signed-off-by: James Almer <[email protected]>
ff17c76e92cd9a9072a8771cad73c96cd620040b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ff17c76e92cd9a9072a8771cad73c96cd620040b
2017-03-12 14:29:11-03:00
avcodec/vp6: clear dimensions on failed resolution change in vp6_parse_header() Fixes: 807/clusterfuzz-testcase-6470061042696192 Fixes null pointer dereference Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
967feea5ebb744dce97ab327d33502b43fca0c7f
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/967feea5ebb744dce97ab327d33502b43fca0c7f
2017-03-13 04:48:43+01:00
avcodec/texturedsp: Fix multiple runtime error: left shift of 255 by 24 places cannot be represented in type 'int' Fixes: 1386/clusterfuzz-testcase-minimized-5323086394032128 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
e92fb2bea1800b987ebc3cbeef9d48cfe4bcd191
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e92fb2bea1800b987ebc3cbeef9d48cfe4bcd191
2017-05-07 04:11:21+02:00
avcodec/dvdsubdec: Fixes 2 runtime error: left shift of 170 by 24 places cannot be represented in type 'int' Fixes: 619/clusterfuzz-testcase-5803914534322176 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
61ee2ca7758672128e30b3e87908b6845e006d71
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/61ee2ca7758672128e30b3e87908b6845e006d71
2017-04-07 03:38:31+02:00
avcodec/vp568: Check that there is enough data for ff_vp56_init_range_decoder() Fixes: timeout in 730/clusterfuzz-testcase-5265113739165696 (part 1 of 2) Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Reviewed-by: BBB Signed-off-by: Michael Niedermayer <[email protected]>
55d7371fe0c44c025eb0e75215e0685870f31874
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/55d7371fe0c44c025eb0e75215e0685870f31874
2017-03-07 21:29:12+01:00
avcodec/mpeg12dec: Fix runtime error: left shift of negative value Fixes: 608/clusterfuzz-testcase-603978286392934 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
706757d26dd5e606c1745a4bb53fe45f6d6493cf
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/706757d26dd5e606c1745a4bb53fe45f6d6493cf
2017-02-19 19:48:57+01:00
avcodec/movtextdec: Fix decode_styl() cleanup Fixes: null pointer dereference Fixes: 555/clusterfuzz-testcase-5986646595993600 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <[email protected]>
e248522d1b0d6dd8641f382cd5c4338d0ecd98e5
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e248522d1b0d6dd8641f382cd5c4338d0ecd98e5
2017-02-06 11:19:05+01:00
lavc/mjpegdec: Do not overread too short JFIF tags. Fixes ticket #6055.
4acea512f36b96256535b45b1a7e723c61c89c31
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4acea512f36b96256535b45b1a7e723c61c89c31
2017-01-01 18:53:27+01:00
swresample/resample_template: Add filter values in parallel This is faster 2871 -> 2189 cycles for int16 matrixbench -> 23456hz Fixes a integer overflow in a artificial corner case Fixes part of 668007-media Found-by: Matt Wolenetz <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
65e33d8e23277bb96809842656482e0e3fe8746f
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/65e33d8e23277bb96809842656482e0e3fe8746f
2016-12-10 02:44:21+01:00
rtmppkt: Check for packet size mismatches When receiving fragmented packets, the first packet declares the size, and the later ones normally are small follow-on packets that don't repeat the size and the other header fields. But technically, the later fragments also can have a full header, declaring a different size than the previous packet. If the follow-on packet declares a larger size than the initial one, we could end up writing outside of the allocation. This fixes out of bounds writes. Found-by: Paul Cher <[email protected]> Reviewed-by: Paul Cher <[email protected]> CC: [email protected] Signed-off-by: Martin Storsjö <[email protected]>
a4fec9a7eab842ea5eea1b1ee98624356cb31422
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a4fec9a7eab842ea5eea1b1ee98624356cb31422
2016-12-15 15:45:59+02:00
configure: Check build with some header not just preprocessing for testing --std=c11 Fixes build failure on FreeBSD with gcc 4.7 Signed-off-by: Michael Niedermayer <[email protected]>
af7a75cb517141f649cbbe0a9dcdb4854359b740
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/af7a75cb517141f649cbbe0a9dcdb4854359b740
2016-12-31 13:11:37+01:00