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
⌀ |
---|---|---|---|---|---|---|---|
swscale-test: allocate more memory to prevent scalers from writing out of bounds
Some converters (ie. unscaled rgb24 -> argb) may write some bytes out of
bounds. Ideally the converters should be fixed, but in the meantime we allocate
more memory to prevent heap corruption.
Originally committed as revision 31768 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
|
67e1d52783f506c00d7a12eff3fdb2eb268b8dbd
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/67e1d52783f506c00d7a12eff3fdb2eb268b8dbd
|
2010-07-22 15:30:22+00:00
|
overflows
Originally committed as revision 3935 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
8d65750ef1089561f0257fa1719b3094f341d16f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/8d65750ef1089561f0257fa1719b3094f341d16f
|
2005-02-04 11:26:40+00:00
|
aacdec: Remove the warning about non-meaningful window transitions.
It created false positives on seeks and where the first frame is STOP or SHORT.
It failed to warn in illegal SHORT->LONG transitions. In general it created
much confusion and many junk bug reports from the users.
Originally committed as revision 24214 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
7167bc94cb695a3027aea6aac34a1b040848c7dc
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/7167bc94cb695a3027aea6aac34a1b040848c7dc
|
2010-07-12 18:24:22+00:00
|
RTSP: Clean up rtsp_hd on failure
Since rtsp_hd isn't assigned to rt->rtsp_hd until after the setup phase,
the initialized URLContext could be leaked on failures.
Originally committed as revision 23643 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
d3f84dfc0e65201983e88c99b7544d5a60d0165e
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/d3f84dfc0e65201983e88c99b7544d5a60d0165e
|
2010-06-18 17:54:56+00:00
|
aacdec: Work around illegal files with all elem_id tags set to the same value.
Fixes issue 1882.
Originally committed as revision 23439 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
7caee063a0b71a2b9bdd21f508bb39b6b7a83ceb
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/7caee063a0b71a2b9bdd21f508bb39b6b7a83ceb
|
2010-06-03 02:17:49+00:00
|
ffserver: Fix another memory leak
Don't allocate st->codec, it will be overwritten by the memcpy a few
lines further down.
Fix by Howard Chu, hyc at highlandsun dot com
Originally committed as revision 23291 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
9cc9a155100d4364ad02d50e89b313ec94195102
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/9cc9a155100d4364ad02d50e89b313ec94195102
|
2010-05-24 19:12:00+00:00
|
Fix a crash when opening WMS RTSP streams
Fixes issue 1948
Originally committed as revision 23181 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
8d168a9207f231c22a04a5a2b252d0ab89477b02
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/8d168a9207f231c22a04a5a2b252d0ab89477b02
|
2010-05-19 09:46:29+00:00
|
matroskadec: Fix buffer overread in matroska_ebmlnum_uint
Based on a Chromium patch
Originally committed as revision 23168 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
465c28b6b43be2563e0b644ec22cf641fe374d8d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/465c28b6b43be2563e0b644ec22cf641fe374d8d
|
2010-05-18 21:21:32+00:00
|
Fix buffer overrun (or, well, actually a typo, 80 should be 0x80...).
Partially fixes issue 1758.
Originally committed as revision 23005 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
593a8614705eb1b098185db6e4d227c67e8c3597
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/593a8614705eb1b098185db6e4d227c67e8c3597
|
2010-05-01 18:45:02+00:00
|
oggdec: Fix memory leak in setting up vorbis headers
Originally committed as revision 22460 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
2ac41150c03eab9a2149b54d537e338ea3df0b09
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/2ac41150c03eab9a2149b54d537e338ea3df0b09
|
2010-03-11 07:17:49+00:00
|
Remove first_rtcp_ntp_time. This is used to prevent overflow of the timestamp,
but doesn't actually do that. What's worse, it creates timestamp adjustments
that are different per stream within a session, leading to a/v sync issues.
See discussion in thread "[FFmpeg-devel] rtp streaming x264+audio issues (and
some ideas to fix them)". Patch suggested by Luca Abeni <lucabe72 email it>.
Originally committed as revision 21857 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
fc78b0cb7e115ae494861c37a9928cff74df8db9
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/fc78b0cb7e115ae494861c37a9928cff74df8db9
|
2010-02-16 23:00:03+00:00
|
Fix crash in MLP decoder due to integer overflow.
Probably only DoS, init_get_bits sets buffer to NULL, thus causing a
NULL-dereference directly after.
Originally committed as revision 21426 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
0b882b4009c9fbe24020c2fe83b21ee43d0784ea
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/0b882b4009c9fbe24020c2fe83b21ee43d0784ea
|
2010-01-24 18:07:29+00:00
|
Use AVPALETTE_COUNT instead of hard-coding 256.
This is consistent with other codecs and will also avoid a crash on the
memcpy to data[1] if AVPALETTE_SIZE ever increases.
Originally committed as revision 21399 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
87ac0c0a39268654c8a6ae4b3acb7a01f9d942bb
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/87ac0c0a39268654c8a6ae4b3acb7a01f9d942bb
|
2010-01-23 15:22:48+00:00
|
Do not crash on frame size changes.
Fixes issue1481.
Originally committed as revision 20730 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
b83ccbffe9b109fcd18dbd178d6b4f300e6d6799
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/b83ccbffe9b109fcd18dbd178d6b4f300e6d6799
|
2009-12-04 16:20:00+00:00
|
Try to clarify that anyone using get_bits must check for buffer overrun
themselves, get_bits does not do anything in that regard.
Originally committed as revision 19794 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
17f0c3be8ecbf3555d763007bd51583ad3f63cc0
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/17f0c3be8ecbf3555d763007bd51583ad3f63cc0
|
2009-09-08 08:30:56+00:00
|
Change buffer size checks to avoid the very unlikely overflow case.
Originally committed as revision 18576 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
4b96f43fe169bb29a9b45cbb116cd8a81cebfebe
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4b96f43fe169bb29a9b45cbb116cd8a81cebfebe
|
2009-04-17 18:03:00+00:00
|
win32, dos: Work around a bug in the GNU toolchain.
The bug[1] is exposed when gcc decides to put some data in a common
section (i.e. data that will be used by more than one object). It will
suggest the data to be aligned, but binutils >= 2.19 will fail to
properly align it. Thus if the data requires any alignment greater
than 4, the application will crash.
The workaround prevents gcc from putting data in a common section,
instead putting it in a properly aligned section.
[1] http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37216
Originally committed as revision 18501 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
1894e741f5a0cbc0818b0acbe0f7e45a22ab9107
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/1894e741f5a0cbc0818b0acbe0f7e45a22ab9107
|
2009-04-13 22:54:21+00:00
|
Add av_uninit to vbA[1-8], vbB[1-8] variables to work around
some 'may be used uninitialized' warnings.
Originally committed as revision 17963 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
2f2cabef9ca3d087588cdaa83f29cf5e34bda03e
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/2f2cabef9ca3d087588cdaa83f29cf5e34bda03e
|
2009-03-14 19:14:40+00:00
|
Prevent (negative) overflow of rm->remaining_len. This evaluation really only
has two possible outcomes: either len and rm->remaining_len are the same, in
which case we care about the outcome and it is zero, or rm->remaining_len is
currently not in use and we don't care about the outcome. In that case, len
is positive and rm->remaining_len is zero, which leads to a negative result.
This is confusing and could eventually lead to a sign-flip if we skip a lot
of packets (unlikely, but still). Therefore, just always set it to zero.
Originally committed as revision 17919 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
b8cc5a9fdfbc514a0d6e02b7c5380853a50ae1ac
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/b8cc5a9fdfbc514a0d6e02b7c5380853a50ae1ac
|
2009-03-09 22:03:47+00:00
|
Prevent (negative) overflow of rm->remaining_len. This evaluation really only
has two possible outcomes: either len and rm->remaining_len are the same, in
which case we care about the outcome and it is zero, or rm->remaining_len is
currently not in use and we don't care about the outcome. In that case, len
is positive and rm->remaining_len is zero, which leads to a negative result.
This is confusing and could eventually lead to a sign-flip if we skip a lot
of packets (unlikely, but still). Therefore, just always set it to zero.
Originally committed as revision 17910 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
0ecf9cc9007b49f989f4276ef517652fa734d927
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/0ecf9cc9007b49f989f4276ef517652fa734d927
|
2009-03-09 13:08:19+00:00
|
Add a default (error) for the switch in case of an unsupported PIX_FMT.
Removes warnings about possibly uninitialized variables.
Patch by Patrik Kullman %patrik A yes P nu%
Originally committed as revision 17130 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
c7efffcb443fe5a2134833f62987b3a999e0701e
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c7efffcb443fe5a2134833f62987b3a999e0701e
|
2009-02-10 12:38:56+00:00
|
Prevent shift overflow, patch by Anders Grönberg, galileo.m2 gmail com.
Originally committed as revision 16121 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
31c3a4dc7e15f993b0076c7231f80249a55ea146
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/31c3a4dc7e15f993b0076c7231f80249a55ea146
|
2008-12-14 12:30:34+00:00
|
10l set AVPacket.size to the true size of the returned data instead of
the (larger) allocated size. (prevents segfaults due to later failures
from 900MB-sized packets, yes fuzzed file not a valid one)
Originally committed as revision 16404 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
ce0453aac99c826ba0093f701e4dea67718ce457
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/ce0453aac99c826ba0093f701e4dea67718ce457
|
2008-12-31 02:47:54+00:00
|
Check the 4th plane too when selecting the pixfmt.
Fixes a crash with Test-4-component-YCCK.jpg.
Originally committed as revision 15435 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
7c1e33f930a890fc89ec0d5f48c49eb473aea5f4
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/7c1e33f930a890fc89ec0d5f48c49eb473aea5f4
|
2008-09-27 01:50:57+00:00
|
Fix PCM DVD divide by zero bug introduced in r14659. Patch supplied by lars dot taeuber at gmx dot net.
Originally committed as revision 14864 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
2cd04cf919ce2f22da391bd80b7664a25348b943
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/2cd04cf919ce2f22da391bd80b7664a25348b943
|
2008-08-20 11:05:15+00:00
|
Avoid undefined behavior for removing elements that were not in the tree.
Originally committed as revision 15368 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
eed36075645ecc3d3ef202c94badb66818114c2c
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/eed36075645ecc3d3ef202c94badb66818114c2c
|
2008-09-19 12:41:12+00:00
|
Fix static leaks in h264.c.
Patch by Art Clarke aclarke A vlideshow D com
Originally committed as revision 14538 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
910e3668170d2e1e56dc28f8b722232a218e4b9a
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/910e3668170d2e1e56dc28f8b722232a218e4b9a
|
2008-08-04 21:45:05+00:00
|
It makes more sense to return 1 here in case of overflow.
Originally committed as revision 13930 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
b45411e24a7566a1191f9526a4adea0f76e9cb86
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/b45411e24a7566a1191f9526a4adea0f76e9cb86
|
2008-06-23 20:42:36+00:00
|
Fix exploitable code.
Fixes issue311
Originally committed as revision 13993 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
fdb5932e357e2e528b62130eefc8bf8bc1b12da2
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/fdb5932e357e2e528b62130eefc8bf8bc1b12da2
|
2008-06-26 22:22:10+00:00
|
prevent crash when dba params are invalid
Originally committed as revision 13653 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
31bc6b454994d7b7a99a30876c0427c07c5885e3
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/31bc6b454994d7b7a99a30876c0427c07c5885e3
|
2008-06-03 23:34:26+00:00
|
Fix memory leak.
Commited in SoC by Bobby Bingham on 2007-07-31 20:11:25
Originally committed as revision 12694 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
1deec58ba308f66280e388071dbcc223c3728595
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/1deec58ba308f66280e388071dbcc223c3728595
|
2008-04-04 20:06:19+00:00
|
Fix crash for CAVLC->CABAC switch caused by writing into NULL tables.
(iam not sure if this might have been exploitable)
fixes issue332 / CVCANLMA2_Sony_C.jsv
Other solutions which waste a few bytes less are welcome ...
Originally committed as revision 11605 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
cb077b7aa319caf4a11e811df93b1c2b86fff954
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/cb077b7aa319caf4a11e811df93b1c2b86fff954
|
2008-01-24 19:31:59+00:00
|
Fix illegal identifiers, names starting with _ and uppercase are reserved.
Originally committed as revision 11476 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
4514a1d544984edd983583f2f6e971b7b300d2bf
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4514a1d544984edd983583f2f6e971b7b300d2bf
|
2008-01-08 23:07:55+00:00
|
Rename illegal identifiers, _ followed by capital is reserved for the system.
Originally committed as revision 11541 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
426d18b85be393a94adf4e4528702d8cf9d66a35
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/426d18b85be393a94adf4e4528702d8cf9d66a35
|
2008-01-16 21:21:30+00:00
|
fix mem leak
patch by Daniel Kristjansson: [danielk cuymedia net]
Original thread: [FFmpeg-devel] [PATCH] alloc_picture needs to free buffer when
it's not going to use it
Date: 07/20/2007 07:27 PM
Originally committed as revision 9838 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
29d2dc59f973f9495c703b4cab17ded5c24ab3e8
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/29d2dc59f973f9495c703b4cab17ded5c24ab3e8
|
2007-07-31 14:51:21+00:00
|
sanity checks for bitrate tolerance and buffer size (= fail if a single frame at the
requested bitrate would be bigger than the buffer size)
Originally committed as revision 9077 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
64be2e60ef7b7b7f0da9b4a0921e4cfdf8f87da2
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/64be2e60ef7b7b7f0da9b4a0921e4cfdf8f87da2
|
2007-05-20 01:35:15+00:00
|
fix image corruption when with multi-threaded decoding.
dequant-tables were not correctly reinitialized in the slave
contexts when a PPS came with updated matrices.
Patch by Andreas Öman %andreas A olebyn P nu%
Original thread:
date: Sep 16, 2007 6:14 AM
subject: [FFmpeg-devel] Parallelized h264 image corruption bug
Originally committed as revision 10505 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
50c21814b9de5635cf01e2d1ea091a9a272a4d67
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/50c21814b9de5635cf01e2d1ea091a9a272a4d67
|
2007-09-16 10:37:07+00:00
|
Fix audio corruption when cutting.
Patch by Wolfram Gloger, wmglo dent dot med dot uni-muenchen dot de.
Originally committed as revision 7818 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
9ecf7fada31aac294dee540abb9a8dcf8131d67d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/9ecf7fada31aac294dee540abb9a8dcf8131d67d
|
2007-02-05 02:08:57+00:00
|
some interlaced direct sanity checks
Originally committed as revision 7442 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
2d0bcfb412a618e8130fbfea15df76eb0f7dac45
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/2d0bcfb412a618e8130fbfea15df76eb0f7dac45
|
2007-01-13 02:45:05+00:00
|
10l memory corruption bug found by Steven Johnson
Originally committed as revision 7163 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
fe99025b167634ceca4bc8118e2b9eeda5769d21
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/fe99025b167634ceca4bc8118e2b9eeda5769d21
|
2006-11-23 22:57:20+00:00
|
remove unused, uninitialized free format frame size
Originally committed as revision 6256 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
8e453fc3c76ee59c111fa5b40e87341d2bab2dcd
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/8e453fc3c76ee59c111fa5b40e87341d2bab2dcd
|
2006-09-15 10:28:23+00:00
|
fixing coverity warnig CID: 253 (reading over the end of the aspect_ratio array for illegal aspect ratios)
Originally committed as revision 5163 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
4cb8574dc838e5b8adddf3f6ee18ccf8ece4483b
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4cb8574dc838e5b8adddf3f6ee18ccf8ece4483b
|
2006-03-13 23:46:47+00:00
|
Comment out WMV3 decoder for now, it crashes on every file and causes
bug report spam.
Originally committed as revision 4817 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
faf824dfd12f2d7254ee69af84ab15f209cded1f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/faf824dfd12f2d7254ee69af84ab15f209cded1f
|
2006-01-06 13:18:31+00:00
|
Support for samples with fft_order = 7
Fail init for unknown fft order, to prevent an array overflow
Output sound high-pitched compared to binary. Sample here
http://a1862.g.akamai.net/7/1862/14448/v1/esa.download.akamai.com/13452/qt/ESA_VenusExpress_110K_Stream.mov
Originally committed as revision 4724 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
a4893bafd8b303c7933c2f4badedcf95d088c212
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/a4893bafd8b303c7933c2f4badedcf95d088c212
|
2005-12-06 17:42:16+00:00
|
fix stream class
fix a infinite loop on corrupted streams
Originally committed as revision 4344 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
47805d210ce03f97eee3398a872d2a1a5018ce28
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/47805d210ce03f97eee3398a872d2a1a5018ce28
|
2005-06-03 09:04:34+00:00
|
read 32bit instead of 64bit to avoid overreading and missalignments
Originally committed as revision 4133 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
4e492bf107de07d352ced47cc67380d0aca6857e
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4e492bf107de07d352ced47cc67380d0aca6857e
|
2005-04-17 13:30:45+00:00
|
don't crash on null codec; by matthieu castet <castet DOT matthieu AT free DOT fr>
Originally committed as revision 3894 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
25cf9062babc92b1657bf024f872df4b0ffa66a9
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/25cf9062babc92b1657bf024f872df4b0ffa66a9
|
2005-01-28 11:19:47+00:00
|
Better ARM support for mplayer/ffmpeg, ported from atty fork
while playing with some new hardware, I found it's running a forked mplayer
-- and it looks like they're following the GPL.
The maintainer's page is here: http://atty.jp/?Zaurus/mplayer
Unfortunately it's mostly in Japanese, so it's hard to figure out any
details.
Their code looks quite interesting (at least to those of us w/ ARM CPUs).
The patches I've attached are the patches from atty.jp with a couple of
modifications by myself:
- ported to current CVS
- reverted their change of removing SNOW support from ffmpeg
- cleaned up their bswap mess
- removed DOS-style linebreaks from various files
patch by (Bernhard Rosenkraenzer: bero, arklinux org)
Originally committed as revision 4311 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
6ad1fa5a49320c101a62d24aa0e7df14c10d7612
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/6ad1fa5a49320c101a62d24aa0e7df14c10d7612
|
2005-05-26 14:32:46+00:00
|
10l (uninitialized var ...)
Originally committed as revision 2589 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
7f9b37b08eb7c3f3cf2f76031e123f09caa733f7
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/7f9b37b08eb7c3f3cf2f76031e123f09caa733f7
|
2003-12-10 16:20:28+00:00
|
- Gracefully handle the case where not all the streams are requested/wanted
from the client. Simply ignore the unwanted/unasked streams.
- Don't need to pool() for every input character! (the socket is nonblocking,
so the loop is ok).
- Partially resurrect compute_send_delay for avoiding udp flood. Without a
similar patch, udp transmission is seriously unreliable.
(note that we don't link to a specific input reference stream, it's not needed
as the pts values should be coherent anyway. Also, non-monotonic pts
progression is unimportant in the long term).
- rtsp_cmd_pause must reset the time reference
patch by (Giancarlo Formicuccia <ilsensine at inwind dot it>)
Originally committed as revision 2034 to svn://svn.ffmpeg.org/ffmpeg/trunk
|
1bc1cfdddf7ab8ef50d0fc888808d6b609eb5d8d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/1bc1cfdddf7ab8ef50d0fc888808d6b609eb5d8d
|
2003-07-11 22:30:12+00:00
|
avcodec/g2meet: Clear pointers after deallocation
Fixes double free
Found-by: Samuel Groß, Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
|
80e42387dc524a6c893bca3ec27d55a850af58e4
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/80e42387dc524a6c893bca3ec27d55a850af58e4
|
2015-07-08 15:38:37+02:00
|
libavformat/rtmpproto: Plug leak if sending bytes read report fails.
Signed-off-by: Michael Niedermayer <[email protected]>
|
ee88f31d34c848fd95daf12bdf054b7228efdf14
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/ee88f31d34c848fd95daf12bdf054b7228efdf14
|
2018-01-25 20:42:39+01:00
|
avfilter/af_aiir: do not leak memory on failure in convert_zp2tf()
Signed-off-by: Paul B Mahol <[email protected]>
|
3c29f68b4db316c5d2b126619220cfa4255eacd6
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/3c29f68b4db316c5d2b126619220cfa4255eacd6
|
2018-01-10 18:38:01+01:00
|
lavc: replace and deprecate the lock manager
Use static mutexes instead of requiring a lock manager. The behavior
should be roughly the same before and after this change for API users
which did not set the lock manager at all (except that a minor memory
leak disappears).
|
a04c2c707de2ce850f79870e84ac9d7ec7aa9143
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/a04c2c707de2ce850f79870e84ac9d7ec7aa9143
|
2017-12-26 02:50:00+01:00
|
avcodec/diracdsp: Fix integer overflow in PUT_SIGNED_RECT_CLAMPED()
Fixes: runtime error: signed integer overflow: 2147483646 + 2048 cannot be represented in type 'int'
Fixes: 4479/clusterfuzz-testcase-minimized-6529894147162112
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
610dd74502a58e8bb0f1d8fcbc7015f86b78d70e
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/610dd74502a58e8bb0f1d8fcbc7015f86b78d70e
|
2017-12-06 22:09:25+01:00
|
avcodec/mjpegdec: Fix integer overflow in DC dequantization
Fixes: runtime error: signed integer overflow: -65535 * 65312 cannot be represented in type 'int'
Fixes: 4900/clusterfuzz-testcase-minimized-5769019744321536
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
1bfc1aa004950c5ad527d823a08b8a19eef34eb0
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/1bfc1aa004950c5ad527d823a08b8a19eef34eb0
|
2018-01-27 04:29:30+01:00
|
rtmp: Plug leak if sending bytes read report fails.
Signed-off-by: Martin Storsjö <[email protected]>
|
a2a9e4eea0e4fde2ed8d3405b4f33f655b600c2d
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/a2a9e4eea0e4fde2ed8d3405b4f33f655b600c2d
|
2018-01-24 07:16:06+02:00
|
Revert "checkasm/vf_interlace : add test for lowpass_line 8 and 16"
This reverts commit adff97be5e2ff51c0bb66080c2f904ed40b6c571.
It currently fails on Windows targets.
Signed-off-by: James Almer <[email protected]>
|
da032427786d9db4ab21014998cb1245083d6c85
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/da032427786d9db4ab21014998cb1245083d6c85
|
2017-12-19 19:07:24-03:00
|
vorbisenc: Check the return value of av_frame_clone
Prevents a segfault when alloc fails.
Signed-off-by: Derek Buitenhuis <[email protected]>
|
e7af1394ecd0e7c237db34ee9c149afff37641dd
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/e7af1394ecd0e7c237db34ee9c149afff37641dd
|
2017-11-26 17:26:59+00:00
|
avcodec/dvbsubdec: Avoid re-computing clut
Fixes: Timeout
Fixes: 3218/clusterfuzz-testcase-5390672154591232
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
eec67f7b24da5407cc2e8933ffe72358336811ab
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/eec67f7b24da5407cc2e8933ffe72358336811ab
|
2017-11-15 17:31:09+01:00
|
avcodec/h264dec: Fix potential array overread
add padding before scantable arrays
See: 522d850e68ec4b77d3477b3c8f55b1ba00a9d69a
Signed-off-by: Michael Niedermayer <[email protected]>
|
380b48fb9fdc7b0c40d67e026f9b3accb12794eb
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/380b48fb9fdc7b0c40d67e026f9b3accb12794eb
|
2017-11-15 17:31:09+01:00
|
avcodec/snowdec: Fix integer overflow in header parsing
Fixes: 3984/clusterfuzz-testcase-minimized-5265759929368576
Fixes: runtime error: signed integer overflow: -1085585801 + -1094995529 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]>
|
c897a9285846b6a072b9650976afd4f091b7a71f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c897a9285846b6a072b9650976afd4f091b7a71f
|
2017-11-13 19:54:20+01:00
|
avcodec/snowdec: Check for remaining bitstream in decode_blocks()
Fixes: Timeout
Fixes: 3142/clusterfuzz-testcase-5007853163118592
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
4527ec2216109867498edc3ac8a17fd879b5d017
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4527ec2216109867498edc3ac8a17fd879b5d017
|
2017-11-17 20:37:41+01:00
|
avformat/mov: Fix memory leak when reading DDTS box.
Signed-off-by: Michael Niedermayer <[email protected]>
|
4b54d5a721cc55288093417b098382bbb27a8d3f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4b54d5a721cc55288093417b098382bbb27a8d3f
|
2017-08-16 03:35:13+02:00
|
avcodec/exr: fix undefined shift in pxr24_uncompress()
Fixes: runtime error: left shift of 255 by 24 places cannot be represented in type 'int'
Fixes: 3787/clusterfuzz-testcase-minimized-5728764920070144
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: Paul B Mahol <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
66f0c958bfd5475658b432d1af4d2e174b2dfcda
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/66f0c958bfd5475658b432d1af4d2e174b2dfcda
|
2017-11-05 03:12:35+01:00
|
avfilter/f_interleave: check ff_insert_inpad() for failure
Signed-off-by: Paul B Mahol <[email protected]>
|
9bd1bf382e18a1595f6ded05e87390f79fa0328b
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/9bd1bf382e18a1595f6ded05e87390f79fa0328b
|
2017-08-25 09:53:46+02:00
|
ffplay: zero initialize copy avpacket
Prevents potential use of uninitialized stack.
Signed-off-by: James Almer <[email protected]>
|
5a9415533dd064d44605b3a3896a53377b7a5ca8
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/5a9415533dd064d44605b3a3896a53377b7a5ca8
|
2017-09-23 20:13:58-03:00
|
avfilter/af_headphone: check ff_insert_inpad() for failure
Signed-off-by: Paul B Mahol <[email protected]>
|
13f9639e3e2af50017c48fd804d76bad455f61af
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/13f9639e3e2af50017c48fd804d76bad455f61af
|
2017-08-25 09:45:20+02:00
|
avcodec/proresdec2: Check bits in DECODE_CODEWORD(), fixes invalid shift
Fixes: runtime error: shift exponent 42 is too large for 32-bit type 'unsigned int'
Fixes: 3410/clusterfuzz-testcase-minimized-5313377960198144
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
4f5eaf0b5956e492ee5023929669b1d09aaf6299
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4f5eaf0b5956e492ee5023929669b1d09aaf6299
|
2017-09-24 21:54:13+02:00
|
lavu/tests: move timer.h include earlier
In the next commit, timer.h will require a _GNU_SOURCE to be set before
including system headers. This commit prevents compilation failures.
|
e0b9b3e60ea3b970c5fcdbccb401cd9d93b9a63f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/e0b9b3e60ea3b970c5fcdbccb401cd9d93b9a63f
|
2017-09-08 18:51:05+02:00
|
avcodec/dirac_vlc: Fix invalid shift in ff_dirac_golomb_read_32bit()
Fixes: runtime error: shift exponent 64 is too large for 64-bit type 'residual' (aka 'unsigned long')
Fixes: 2838/clusterfuzz-testcase-minimized-6260066086813696
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
c595139f1fdb5ce5ee128c317ed9e4e836282436
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c595139f1fdb5ce5ee128c317ed9e4e836282436
|
2017-09-02 23:50:28+02:00
|
avcodec/hevcdsp_template: Fix undefined shift in put_hevc_pel_bi_w_pixels
Fixes: runtime error: left shift of negative value -95
Fixes: 3077/clusterfuzz-testcase-minimized-4684917524922368
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
c225da68cffbea11270a758ff42859194c980863
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c225da68cffbea11270a758ff42859194c980863
|
2017-09-11 12:23:58+02:00
|
avcodec/shorten: Move buffer allocation and offset init to end of read_header()
They are time consuming operations, performing them after the other checks
improves the speed with damaged input dramatically.
Fixes: Timeout
Fixes: 2928/clusterfuzz-testcase-4992812120539136
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: Paul B Mahol <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
380659604f2692b625928a3a76a1c046f473c9f6
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/380659604f2692b625928a3a76a1c046f473c9f6
|
2017-09-12 01:52:14+02:00
|
avcodec/mpeg4videodec: Clear mcsel before decoding an image
Fixes: runtime error: signed integer overflow: 2146467840 + 1032192 cannot be represented in type 'int'
Fixes: 2826/clusterfuzz-testcase-minimized-5901511613743104
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
7735ed29741d985e1e670249ca56e7a1ce18b729
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/7735ed29741d985e1e670249ca56e7a1ce18b729
|
2017-08-11 12:07:16+02:00
|
avcodec/pixlet: Simplify nbits computation
Fixes multiple integer overflows
Fixes: runtime error: signed integer overflow: 1 + 2147483647 cannot be represented in type 'int'
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: Paul B Mahol <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
aeddb3607be94b1d6fef41b602b07f08223ea565
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/aeddb3607be94b1d6fef41b602b07f08223ea565
|
2017-07-28 03:35:22+02:00
|
avcodec/aacpsdsp_template: Fix undefined integer overflow in ps_add_squares_c()
Fixes runtime error: signed integer overflow: 1997494407 + 613252359 cannot be represented in type 'int'
Fixes: 2014/clusterfuzz-testcase-minimized-5186337030275072
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
0181b202cc42133eacd74bad33745cf1ba699e6b
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/0181b202cc42133eacd74bad33745cf1ba699e6b
|
2017-08-27 19:40:28+02:00
|
avcodec/ffv1dec_template: Fix signed integer overflow
Fixes: runtime error: negation of -2147483648 cannot be represented in type 'int'; cast to an unsigned type to negate this value to itself
Fixes: 2634/clusterfuzz-testcase-minimized-4540890636877824
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
4de4308d2aa3bfaa286ab566caf087d523cf9a85
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4de4308d2aa3bfaa286ab566caf087d523cf9a85
|
2017-07-16 02:09:43+02:00
|
avcodec/shorten: Sanity check maxnlpc
Fixes OOM
Fixes: 2131/clusterfuzz-testcase-minimized-4718045157130240
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
e77ddd31a8e14bcf5eccd6008d866ae90b4b0d4c
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/e77ddd31a8e14bcf5eccd6008d866ae90b4b0d4c
|
2017-06-16 20:32:39+02:00
|
avcodec/ra144: Fix runtime error: signed integer overflow: -2200 * 1033073 cannot be represented in type 'int'
Fixes: 2175/clusterfuzz-testcase-minimized-5809657849315328
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
71da0a5c9750e9fd0c9609470f610d32952923eb
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/71da0a5c9750e9fd0c9609470f610d32952923eb
|
2017-06-11 00:47:29+02:00
|
avcodec/cavs: Fix runtime error: signed integer overflow: -12648062 * 256 cannot be represented in type 'int'
Fixes: 2067/clusterfuzz-testcase-minimized-5578430902960128
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
1e6ee86d9254e8fd2158cc9a31d3be96b0809411
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/1e6ee86d9254e8fd2158cc9a31d3be96b0809411
|
2017-06-05 22:43:23+02:00
|
avcodec/hevc_ps: Fix runtime error: index 32 out of bounds for type 'uint8_t [32]'
Fixes: 2010/clusterfuzz-testcase-minimized-6209288450080768
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
29808fff339da3e0f26131f7a6209b853947a54b
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/29808fff339da3e0f26131f7a6209b853947a54b
|
2017-06-04 17:51:02+02:00
|
avcodec/wavpack: Fix runtime error: signed integer overflow: 2013265955 - -134217694 cannot be represented in type 'int'
Fixes: 1922/clusterfuzz-testcase-minimized-5561194112876544
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
a47273c803edfbc43793349b74429ae29b05c003
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/a47273c803edfbc43793349b74429ae29b05c003
|
2017-05-31 22:53:51+02:00
|
avcodec/jpeg2000dec: Check tile offsets
Fixes: runtime error: signed integer overflow: 4096 - -2147483648 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]>
|
89325417e7b33f4b08171d9d609c48662d96b2d3
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/89325417e7b33f4b08171d9d609c48662d96b2d3
|
2017-05-24 19:41:15+02:00
|
libfdk-aacdec: Correct buffer_size parameter
The timeDataSize argument to aacDecoder_DecodeFrame() seems undocumented
and until 2016 04 (203e3f28fbebec7011342017fafc2a0bda0ce530) unused.
After that commit libfdk-aacdec interprets it as size in sample units
and memsets that on error.
FFmpeg as well as others (like GStreamer) did interpret it as size in
bytes.
Fixes: 1442/clusterfuzz-testcase-minimized-4540199973421056 (This requires recent libfdk to reproduce)
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Martin Storsjö <[email protected]>
|
f61265571d68c410f5307c240a7f9c95c247fb54
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/f61265571d68c410f5307c240a7f9c95c247fb54
|
2017-06-13 22:08:44+03:00
|
avcodec/tscc2: Skip duplicate frames
This turns CFR duplicated frames into skiped frames
Fixes: Timeout
Fixes: 1719/clusterfuzz-testcase-minimized-6375090079924224
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
4dc3714c48e74e75a3a9c7d9fb52fd5917107508
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/4dc3714c48e74e75a3a9c7d9fb52fd5917107508
|
2017-05-25 14:30:04+02:00
|
avcodec/dds: Fix runtime error: left shift of 145 by 24 places cannot be represented in type 'int'
Fixes: 1891/clusterfuzz-testcase-minimized-6274417925554176
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
c49fa2a51452eeba0cf2c14ce999ddeadf69aa4f
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/c49fa2a51452eeba0cf2c14ce999ddeadf69aa4f
|
2017-05-29 13:51:42+02:00
|
avcodec/dvbsubdec: Check entry_id
Fixes: randomly writing over the array end
Fixes: 1473/clusterfuzz-testcase-minimized-5768907824562176
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
8a69f2602fea04b7ebae2db16f2581e8ff5ee0cd
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/8a69f2602fea04b7ebae2db16f2581e8ff5ee0cd
|
2017-05-11 15:51:08+02:00
|
avcodec/bmvvideo: Fix runtime error: left shift of 137 by 24 places cannot be represented in type 'int'
Fixes: 1411/clusterfuzz-testcase-minimized-5776085184675840
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
29692023b2f1e0580a4065f4c9b62bafd89ab337
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/29692023b2f1e0580a4065f4c9b62bafd89ab337
|
2017-05-08 15:47:29+02:00
|
avcodec/msvideo1: Check buffer size before re-getting the frame
Fixes timeout
Fixes: 1306/clusterfuzz-testcase-minimized-6152296217968640
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
cabfed6895fcc679cd6a6244a12d800e0f3f2d20
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/cabfed6895fcc679cd6a6244a12d800e0f3f2d20
|
2017-05-04 17:15:43+02:00
|
avcodec/g722: Fix multiple runtime error: left shift of negative value -1
Fixes: 1340/clusterfuzz-testcase-minimized-4669892148068352
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
f55df62998681c7702f008ce7c12a00b15e33f53
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/f55df62998681c7702f008ce7c12a00b15e33f53
|
2017-05-05 18:33:38+02:00
|
avformat/movenc: Fix potential leak of sgpd_entries array.
Signed-off-by: Matthew Gregan <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
b905ba5bc18c89c7fccd8621795755644442ef19
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/b905ba5bc18c89c7fccd8621795755644442ef19
|
2017-04-12 23:12:06+02:00
|
vp8: make mv_min/max thread-local if using partition threading.
Fixes tsan warnings like this in fate-vp8-test-vector-007:
WARNING: ThreadSanitizer: data race (pid=65909)
Write of size 4 at 0x7d8c0000e088 by thread T1:
#0 vp8_decode_mb_row_sliced vp8.c:2519 (ffmpeg:x86_64+0x100995ede)
[..]
Previous write of size 4 at 0x7d8c0000e088 by thread T2:
#0 vp8_decode_mb_row_sliced vp8.c:2519 (ffmpeg:x86_64+0x100995ede)
|
fed92adbb3fc6cbf735e3df9a2f7d0a2917fcfbd
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/fed92adbb3fc6cbf735e3df9a2f7d0a2917fcfbd
|
2017-04-06 10:03:28-04:00
|
avfilter/avfiltergraph: Check for allocation failure in avfilter_graph_queue_command()
Fixes: CID1396538
Reviewed-by: Paul B Mahol <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
|
55d53cb59380bebea79ae8f99d4e119b2b006629
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/55d53cb59380bebea79ae8f99d4e119b2b006629
|
2017-03-31 12:28:58+02:00
|
tools/target_dec_fuzzer: Fix return code on open failure
Fixes: 1271/clusterfuzz-testcase-minimized-6095220498235392
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
966cbfbc83db34f50616fe582d1a53f81d292282
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/966cbfbc83db34f50616fe582d1a53f81d292282
|
2017-04-27 04:25:31+02:00
|
png: set AVFrame flags/fields before calling setup_finished().
Fixes tsan warnings in fate-apng:
WARNING: ThreadSanitizer: data race (pid=51230)
Read of size 4 at 0x7d50000042fc by main thread (mutexes: write M1000):
#0 frame_copy_props frame.c:302 (ffmpeg:x86_64+0x1019a35d6)
[..]
Previous write of size 4 at 0x7d50000042fc by thread T1 (mutexes: write M997):
#0 decode_idat_chunk pngdec.c:708 (ffmpeg:x86_64+0x100f5562a)
|
eff2861a757b8a46398e6fcb844b960b4775daad
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/eff2861a757b8a46398e6fcb844b960b4775daad
|
2017-04-03 14:46:26-04:00
|
avcodec/indeo2: Check remaining bits in ir2_decode_plane()
Fixes: 1290/clusterfuzz-testcase-minimized-5815578902134784
Fixes: timeout
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
b29feec9829cfab2523c8d95e35bd69e689ea4af
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/b29feec9829cfab2523c8d95e35bd69e689ea4af
|
2017-05-01 18:54:41+02:00
|
avcodec/tiff: Check geotag count for being non zero
Fixes memleak
Fixes: 874/clusterfuzz-testcase-5252796175613952
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
3182e19c1c29eef60208a67ad8ecad1d9a2d0694
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/3182e19c1c29eef60208a67ad8ecad1d9a2d0694
|
2017-03-23 15:25:48+01:00
|
avcodec/h264_direct: Fix runtime error: signed integer overflow: 2147483647 - -14133 cannot be represented in type 'int'
Fixes: 755/clusterfuzz-testcase-5369072516595712
See: [FFmpeg-devel] [PATCH 1/2] avcodec/h264_direct: Fix runtime error: signed integer overflow: 2147483647 - -14133 cannot be represented in type 'int'
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
a557ae8d52ce1cfaf3be5cdb13728b7b2b9512b9
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/a557ae8d52ce1cfaf3be5cdb13728b7b2b9512b9
|
2017-03-14 02:23:50+01:00
|
avcodec/interplayvideo: Fix timeout from lack of bitstream end check
Fixes: 697/clusterfuzz-testcase-6111250582863872
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
6191198c216e0ca38d6e65270d2f1b054584a0a9
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/6191198c216e0ca38d6e65270d2f1b054584a0a9
|
2017-03-03 01:03:29+01:00
|
avcodec/jpeglsdec: check shift for values that cause overflow later
Fixes: 657/clusterfuzz-testcase-6674741433729024
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <[email protected]>
|
e98dfeb27c2a82673d7f1782705f6694ec9062ca
|
ffmpeg
|
devign
| 1 |
https://github.com/ffmpeg/ffmpeg
|
https://github.com/ffmpeg/ffmpeg/commit/e98dfeb27c2a82673d7f1782705f6694ec9062ca
|
2017-02-24 00:38:45+01:00
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.