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
rv34: Handle only complete frames in frame-mt. Correct handling of errors to prevent hags or crashes is very complex otherwise. The frame initializing is also moved from decode_slice() to decode_frame() for clarity.
73ad4471a48bd02b2c2a55de116161b87e061023
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/73ad4471a48bd02b2c2a55de116161b87e061023
2012-03-23 17:50:46+01:00
error_concealment: Prevent FPEs in case of corrupted input. Signed-off-by: Michael Niedermayer <[email protected]>
71c2a70cbfbb5fea6dffa5e462b0227565e29bcc
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/71c2a70cbfbb5fea6dffa5e462b0227565e29bcc
2012-03-23 22:03:32+01:00
wma: fix off-by-one in array bounds check. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected]
b4bccf3e4e58f6fe58043791ca09db01a4343fac
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b4bccf3e4e58f6fe58043791ca09db01a4343fac
2012-03-07 14:42:39-08:00
wmaenc: limit block_align to MAX_CODED_SUPERFRAME_SIZE This is near the theoretical limit for wma frame size and is the most that our decoder can handle. Allowing higher bit rates will just end up padding each frame with empty bytes. Fixes invalid writes for avconv when using very high bit rates. CC:[email protected]
c2b8dea1828f35c808adcf12615893d5c740bc0a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c2b8dea1828f35c808adcf12615893d5c740bc0a
2012-03-03 18:20:09-05:00
h263dec: Disallow width/height changing with frame threads. Fixes CVE-2011-3937 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
71db86d53b5c6872cea31bf714a1a38ec78feaba
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/71db86d53b5c6872cea31bf714a1a38ec78feaba
2012-03-02 09:31:32-08:00
h264: error out on invalid bitdepth. Fixes invalid reads while initializing the dequant tables, which uses the bit depth to determine the QP table size. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected]
0ce4fe482c27abfa7eac503a52fdc50b70ccd871
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0ce4fe482c27abfa7eac503a52fdc50b70ccd871
2012-03-01 12:15:51-08:00
Indeo3: fix crashes on corrupt bitstreams. Splits at borders of cells are invalid, since it leaves one of the cells with a width/height of zero. Also, propagate errors on buffer allocation failures, so we don't continue decoding (which crashes). Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected]
fc9bc08dca9ac32526251e19fcf738d23b8c68d1
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fc9bc08dca9ac32526251e19fcf738d23b8c68d1
2012-02-28 10:34:35-08:00
matroska: don't overwrite string values until read/alloc was succesful. This prevents certain tags with a default value assigned to them (as per the EBML syntax elements) from ever being assigned a NULL value. Other parts of the code rely on these being non-NULL (i.e. they don't check for NULL before e.g. using the string in strcmp() or similar), and thus in effect this prevents crashes when reading of such specific tags fails, either because of low memory or because of targeted file corruption. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected]
cd40c31ee9ad2cca6f3635950b002fd46be07e98
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cd40c31ee9ad2cca6f3635950b002fd46be07e98
2012-02-25 07:53:23-08:00
pan: fix uninitialized channel_id variable. Fix broken parsing with pan=2:FL=FR:FR=FL and similar.
cba4e2cbbcb8abb45fff1e0255934bb577ab799f
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cba4e2cbbcb8abb45fff1e0255934bb577ab799f
2012-02-15 10:26:30+01:00
threads: Perform the generic progress cleanup more carefully. The cleanup is only done now when a picture is returned (assuming that it has to be done when its returned) a error is returned (assuming that there will be no further progress on the frame) the codec is not h264 (this is still needed due to some deadlocks in realvideo) This fixes a decoding regression with 00017.MTS Signed-off-by: Michael Niedermayer <[email protected]>
18a7f7465e7e6b9c3688ffc23230ae7a0639a771
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/18a7f7465e7e6b9c3688ffc23230ae7a0639a771
2012-02-12 20:24:29+01:00
nsvdec: Check return value of avio_seek and avoid modifying state if it fails Signed-off-by: Paul B Mahol <[email protected]> Signed-off-by: Justin Ruggles <[email protected]>
8dcd00eabddab5e3366173391b87fa99e9132c36
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8dcd00eabddab5e3366173391b87fa99e9132c36
2012-02-10 15:27:49-05:00
libavcodec: Don't crash in avcodec_encode_audio if time_base isn't set Earlier, calling avcodec_encode_audio worked fine even if time_base wasn't set. Now it crashes due to trying to scale the output pts to the codec context time base. This affects e.g. VLC. If no time_base is set for audio codecs, set it to the sample rate. CC: [email protected] Signed-off-by: Martin Storsjö <[email protected]>
9a7dc618c50902e7a171f2deda6430d52c277a95
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9a7dc618c50902e7a171f2deda6430d52c277a95
2012-01-27 20:52:32+02:00
diracdec: Check dirac_unpack_idwt_params parameters before storing them. Fixes CVE-2011-3949 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
e2291ea1534d17306f685b8c8abc8585bbed87bf
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e2291ea1534d17306f685b8c8abc8585bbed87bf
2012-01-26 17:05:57+01:00
ffmpeg: add image size check to codec_get_buffer() Fixes CVE-2011-3935 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
668494acd8b20f974c7722895d4a6a14c1005f1e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/668494acd8b20f974c7722895d4a6a14c1005f1e
2012-01-25 06:48:30+01:00
mxfdec: Fix files > 2 GiB Accumulating into an int would cause overflow for files with essence containers larger than 2 GiB.
b720915be103cc8b062405bf9f7765ce3ad679d1
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b720915be103cc8b062405bf9f7765ce3ad679d1
2012-01-24 12:42:32+01:00
Use av_fast_padded_malloc in fraps and mpc decoders. Fixes FATE failures due to uninitialized reads under valgrind for these two codecs. Signed-off-by: Reimar Döffinger <[email protected]>
f9ced97543daf4a34a31bc4d5b1cd898ded11abd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f9ced97543daf4a34a31bc4d5b1cd898ded11abd
2012-01-18 21:22:01+01:00
Fix ff_get_guid for short reads or errors. Current code would just return uninitialized data with no way to detect this condition. Instead, fill the whole GUID with 0 in that case. Fixes valgrind uninitialized data errors in fate-seek-lavf_asf. Signed-off-by: Reimar Döffinger <[email protected]>
ea3abcd58f83673bf2fe28170339f19ddf683442
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ea3abcd58f83673bf2fe28170339f19ddf683442
2012-01-15 20:37:54+01:00
ffprobe: replace av_destruct_packet() with av_free_packet() av_destruct_packet() always frees the packet data even when the demuxer is going to re-use it, thus causing crashes when decoding audio frames (as implemented in a pending patch). av_free_packet() is used instead, as it allows each demuxer to set the right packet data releasing mechanism through the pkt->destruct callback.
7328c2fc2184476235ebc9a9b9247a986bdea1cf
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7328c2fc2184476235ebc9a9b9247a986bdea1cf
2012-01-12 10:39:24+01:00
rawdec: use av_shrink_packet. This fixes reads of uninitialized data by the parser when running FATE sample h264-conformance/SL1_SVA_B.264. Signed-off-by: Reimar Döffinger <[email protected]>
efd6b80b402a54923f007378a7dc5397676a8f3a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/efd6b80b402a54923f007378a7dc5397676a8f3a
2012-01-09 11:02:21+01:00
tta: fix off be 1 error in the end detection. Fixes use of uninitialized values. Signed-off-by: Michael Niedermayer <[email protected]>
4925b6e784cad1b00561f786b92a8d5eb6c28666
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4925b6e784cad1b00561f786b92a8d5eb6c28666
2012-01-07 00:08:36+01:00
4xm: Prevent buffer overreads. 4xm decoder while decoding i2 frames can overread the buffer if proper checks are not made. Signed-off-by: Ronald S. Bultje <[email protected]>
9b55b4bb3acc5f41b00eed5b93af4cd8400c9145
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9b55b4bb3acc5f41b00eed5b93af4cd8400c9145
2012-01-05 09:37:16-08:00
vorbis: An additional defense in the Vorbis codec. BUG=101458 Review URL: http://codereview.chromium.org/8414025 Fixes second part of CVE-2011-3895 Signed-off-by: Michael Niedermayer <[email protected]>
f74ce3a60d6ef49080df85c44b54280357109f56
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f74ce3a60d6ef49080df85c44b54280357109f56
2012-01-04 21:58:08+01:00
avio: exit early in fill_buffer without read_packet Fixes an invalid free() with ass in avi. The sample in bug 98 passes parts of AVPacket.data as buffer for the AVIOContext. Since the packet is quite large fill_buffer tries to reallocate the buffer before doing nothing. Fixes bug 98.
a2d1d216291fd8c1f4a8b3bad4f0b50c084ba96d
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a2d1d216291fd8c1f4a8b3bad4f0b50c084ba96d
2012-01-04 11:18:24+01:00
adxdec: Validate channel count to fix a division by zero.
6fd075f1806e375f66ce436cca15e085f0088118
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6fd075f1806e375f66ce436cca15e085f0088118
2012-01-03 16:28:17-05:00
mxg: fix compiler warning for uninitialized variables Based on work by: Jean First <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
bd553d5ea940e987333dcdd9a554c3f2622fec8a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bd553d5ea940e987333dcdd9a554c3f2622fec8a
2011-12-31 17:15:31+01:00
j2kdec: Fix crash in get_qcx Signed-off-by: Michael Niedermayer <[email protected]>
282bb02839b1ce73963c8e3ee46804f1ade8b12a
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/282bb02839b1ce73963c8e3ee46804f1ade8b12a
2011-12-24 18:51:36+01:00
indeo5: Fix null pointer dereference Fixes Ticket803 Bug found by: Oana Stratulat Signed-off-by: Michael Niedermayer <[email protected]>
f27930cd9a2d4970b182024a42a9f5103c942f21
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f27930cd9a2d4970b182024a42a9f5103c942f21
2011-12-20 22:23:12+01:00
atrac3: Fix crash in tonal component decoding. Fixes Ticket780 Bug Found by: cosminamironesei Signed-off-by: Michael Niedermayer <[email protected]>
9af6abdc17deb95c9b1f1d9242ba49b8b5e0b016
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9af6abdc17deb95c9b1f1d9242ba49b8b5e0b016
2011-12-17 03:18:58+01:00
resample: Fix overflow Found-by: Jim Radford Signed-off-by: Michael Niedermayer <[email protected]>
a67cb012e6947fb238193afc0f18114f6e20818c
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a67cb012e6947fb238193afc0f18114f6e20818c
2011-10-27 14:31:53+02:00
vc1_parser: fix NULL pointer dereference Fixes Ticket456 Signed-off-by: Michael Niedermayer <[email protected]>
b50be4e38dc83389925dc14f24fa11e660d32197
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b50be4e38dc83389925dc14f24fa11e660d32197
2011-12-01 18:46:22+01:00
indeo3: error out if no motion vector is set. This fixes a crash on a corrupt bitstream (bugzilla #93). Signed-off-by: Ronald S. Bultje <[email protected]>
97980db4870675baf553dc190051161ecffa9d77
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/97980db4870675baf553dc190051161ecffa9d77
2011-11-27 13:30:00-08:00
pthread: next try on freeing threads without crashing. This should fix mingw Signed-off-by: Michael Niedermayer <[email protected]>
2bb79b23fe106a45eab6ff80d7ef7519d542d1f7
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2bb79b23fe106a45eab6ff80d7ef7519d542d1f7
2011-11-27 05:55:20+01:00
swscale: align vertical filtersize by 2 on x86. The vertical scaler handles 2 rows at a time and thus requires alignment by 2, or else it'll read invalid memory and result in corrupt output.
1deb08fcb678364f7cb2559d1e3497d1e5568910
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1deb08fcb678364f7cb2559d1e3497d1e5568910
2011-11-05 07:06:38-07:00
cinepak: Fix division by zero, ask for sample if encoded_buf_size is 0 Signed-off-by: Michael Niedermayer <[email protected]>
4e7b3ef3b3cf71479dde1d4ae644eaf4857c4813
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4e7b3ef3b3cf71479dde1d4ae644eaf4857c4813
2011-11-16 15:19:57+01:00
ffplay: avoid window resize crash on osx with libsdl 1.2.14 Signed-off-by: Marton Balint <[email protected]>
72776adfb9f0b856198a770acdec97d523c01208
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/72776adfb9f0b856198a770acdec97d523c01208
2011-10-16 19:28:22+02:00
vc1: enable interlaced p fields again, they seem no longer to crash with out of array writes Signed-off-by: Michael Niedermayer <[email protected]>
7b5c03064df522aef027490c51af8136ed5f17b3
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7b5c03064df522aef027490c51af8136ed5f17b3
2011-10-11 13:55:09+02:00
avidec: fix signed overflow in avi_sync() Keeping byte values read from the file as unsigned is consistent with how they are subsequently used and avoids an undefined left shift by 24 when bit 7 is set. Signed-off-by: Mans Rullgard <[email protected]>
1703013cb7f06bb6304cbf3c5fd650d8076ee295
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1703013cb7f06bb6304cbf3c5fd650d8076ee295
2011-10-10 17:49:13+01:00
shorten: Fix out of bound writes in fix_bitshift() The data pointers s->decoded[*] already take into account s->nwrap. Signed-off-by: Janne Grunau <[email protected]>
5f05cf4ea9aaafed8edcabe785c2719786103ec1
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5f05cf4ea9aaafed8edcabe785c2719786103ec1
2011-10-07 16:25:31+02:00
xan: Prevent NULL dereference with missing palette Signed-off-by: Janne Grunau <[email protected]>
7d17a794f0348ba40d5cda7d969564cb83981001
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7d17a794f0348ba40d5cda7d969564cb83981001
2011-10-07 17:15:31+02:00
Prevent NULL dereference when the huffman table is invalid in the 4xm decoder. Signed-off-by: Michael Niedermayer <[email protected]>
4a8ff0636d67c6df059f2ae2df49ad1181de14ca
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4a8ff0636d67c6df059f2ae2df49ad1181de14ca
2011-10-02 03:24:16+02:00
ws_snd: add some checks to prevent buffer overread or overwrite.
417364ce1f979031ef6fee661fc15e1869bdb1b4
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/417364ce1f979031ef6fee661fc15e1869bdb1b4
2011-09-26 15:49:50-04:00
Prevent out of bound read in lz_unpack in vmd video decoder. Signed-off-by: Michael Niedermayer <[email protected]>
5127f465bd3e2cf9cbf66dea3cf7b481b522d266
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5127f465bd3e2cf9cbf66dea3cf7b481b522d266
2011-09-25 00:25:42+02:00
Prevent NULL dereferences when the previous frame is missing in vmd video decoder. Signed-off-by: Michael Niedermayer <[email protected]>
6a6383bebcb03a785797007031ad1c9786a508a5
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6a6383bebcb03a785797007031ad1c9786a508a5
2011-09-24 23:42:49+02:00
Revert "ffmpeg: get rid of useless AVInputStream.nb_streams." This reverts commit 2cf8355f98681bdd726b739008acd5483f82f8d7. AVInputStream.nb_streams tracks number of streams found at the beginning, new streams may appear that ffmpeg doesn't know about. Fixes crash in this case.
9aa1f87dfd815cfc3b1ba7db78da4bdf3a176053
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9aa1f87dfd815cfc3b1ba7db78da4bdf3a176053
2011-09-21 14:12:00+02:00
rv10: Reject slices that does not have the same type as the first one This prevents crashes with some corrupted bitstreams. Signed-off-by: Martin Storsjö <[email protected]>
4a29b471869353c3077fb4b25b6518eb1047afb7
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4a29b471869353c3077fb4b25b6518eb1047afb7
2011-09-19 14:58:33+03:00
[mpc8] Check return value of avio_seek and avoid modifying state if it fails
88ad79415c3821e5c4f3cb4d5b289d772fcac621
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/88ad79415c3821e5c4f3cb4d5b289d772fcac621
2011-09-14 19:53:45+02:00
avformat_open_input(): Add braces to shut up gcc warning. libavformat/utils.c:599: warning: missing braces around initializer libavformat/utils.c:599: warning: (near initialization for ‘ap.time_base’)
5a819c5e23b46bb03a9862790452ff829ea1e898
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5a819c5e23b46bb03a9862790452ff829ea1e898
2011-07-14 20:45:26+02:00
[r3d] Check return value of avio_seek and avoid modifying state if it fails
425907809b48a7f44c0508e3dc09b8ba0c023d06
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/425907809b48a7f44c0508e3dc09b8ba0c023d06
2011-09-14 19:53:45+02:00
Fix av_open_input_stream with uninitialized context pointer. Code would allocate a new context but forget to assign it to the pointer actually passed to avformat_open_input, potentially causing a crash. Even if it was initialized it would cause a memleak. This caused crashes with e.g. mpd, see also http://bugs.gentoo.org/show_bug.cgi?id=373423 Signed-off-by: Reimar Döffinger <[email protected]>
4e59c8ecf1433b85b539c5e89bb68cfe8b839866
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4e59c8ecf1433b85b539c5e89bb68cfe8b839866
2011-07-06 20:17:43+02:00
Do not crash if SDL_SetVideoMode() fails.
d8ee777021ac251c48274e7fd9864acb9e19a5cb
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d8ee777021ac251c48274e7fd9864acb9e19a5cb
2011-06-16 23:21:19+02:00
options: Add missing braces around struct initializer. This fixes the warning: libavformat/options.c:62:1: warning: missing braces around initializer [-Wmissing-braces]
5bd6ec6d59737db63b12312f20ac0f3f0b89502e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5bd6ec6d59737db63b12312f20ac0f3f0b89502e
2011-06-08 15:01:02+02:00
Move code for "ffmpeg: fix massive leak occurring when seeking" / e4841a404bdabfeafb917454d510b60d888cb761 elsewhere The picture struct is written to in the loop, so this cannot work. Signed-off-by: Michael Niedermayer <[email protected]>
580817df048fb114529cdb4a82885f551bf62c0c
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/580817df048fb114529cdb4a82885f551bf62c0c
2011-06-06 04:20:43+02:00
swscale: fix crash in bilinear scaling.
009f829dde811af654af7110326aea3a72c05d5e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/009f829dde811af654af7110326aea3a72c05d5e
2011-05-28 08:59:56-04:00
Fix ff_mpa_synth_filter_fixed() prototype The prototype should use the same typedefs as the definition, or it will fail where int32_t is not int (DOS apparently). Signed-off-by: Mans Rullgard <[email protected]>
89a20987355757be64c49fb714721c38902ac1cc
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/89a20987355757be64c49fb714721c38902ac1cc
2011-05-20 01:20:53+01:00
avoptions: Check the return value from av_get_number This avoids doing a division by zero if the option wasn't found, or wasn't an option of an appropriate type. Signed-off-by: Martin Storsjö <[email protected]>
8089b7fa8c5b5a48cc7101daa4be891d0ead5a5e
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8089b7fa8c5b5a48cc7101daa4be891d0ead5a5e
2011-05-22 22:06:17+03:00
mjpeg: Detect overreads in mjpeg_decode_scan() and error out. Signed-off-by: Michael Niedermayer <[email protected]>
73a51e00a74df079507d6355a4e353494ddb0385
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/73a51e00a74df079507d6355a4e353494ddb0385
2011-04-21 22:44:55+02:00
h264_mp3toannexb_bsg: don't crash, but warn, if PPS/SPS not found. Should an AVC-1 in MP4 stream not contain SPS or PPS NAL units, this BSF is then unable to allocate an output buffer for the modified stream. Warn that the resulting stream may be unplayable. Fix roundup issue #2386. Signed-off-by: Ronald S. Bultje <[email protected]> (cherry picked from commit 02dd3666c2944a3db44ba13916ba40dbdd41f9b1)
e4a2695856dad2333376739a2dca23da82dc2aa6
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e4a2695856dad2333376739a2dca23da82dc2aa6
2011-03-08 02:09:16+01:00
ac3enc: fix bug in stereo rematrixing decision. The rematrixing strategy reuse flags are not reset between frames, so they need to be initialized for all blocks, not just block 0. Signed-off-by: Mans Rullgard <[email protected]> (cherry picked from commit 5b54d4b376fbd2c291b8a6dba7d425e28f654bcf)
6159bd0d670f88dc87f515f859100c53b7d81a89
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6159bd0d670f88dc87f515f859100c53b7d81a89
2011-02-18 19:52:32+01:00
mmst: fix reading uninitialized data for ping packets. Fixes errors after a few minutes (first ping) when playing back mmst://wm.bbc.co.uk/wms/bbc7coyopa/bbc7_-_friday_0430.wma (cherry picked from commit 275189a2bd71cf49d66374c44d3de2262d323460)
e84314515ac39543641cd148a33b155218df6a74
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e84314515ac39543641cd148a33b155218df6a74
2011-02-14 23:59:55+01:00
dvbsubdec: pass correct input buffer size In some places, dvbsubdec passes improper input buffer size to bitstream reading functions, not accounting for reading pointer updates. Fixed by using buffer_end - buffer pointer instead of fixed buffer length. Signed-off-by: Jindrich Makovicka <[email protected]> Signed-off-by: Mans Rullgard <[email protected]>
5bea615dc383cf3617c5057db4fbc6832fc64137
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5bea615dc383cf3617c5057db4fbc6832fc64137
2011-02-07 14:21:36+00:00
Do not fail DVB sub decoding because of a few padding bytes Instead of returning an error when bytes are left over, just return the number of actually used bytes as other decoders do. Instead add a special case so an error will be returned when none of the data looks valid to avoid making debugging a pain. Signed-off-by: Janne Grunau <[email protected]>
4a72765a1c94b05bd3053b1f34f8457a3b71d714
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4a72765a1c94b05bd3053b1f34f8457a3b71d714
2011-02-10 21:37:31+01:00
Fix warnings: ffmpeg.c: In function ‘new_video_stream’: ffmpeg.c:3701:18: warning: ‘codec_id’ may be used uninitialized in this function ffmpeg.c: In function ‘new_audio_stream’: ffmpeg.c:3848:18: warning: ‘codec_id’ may be used uninitialized in this function ffmpeg.c: In function ‘new_subtitle_stream’: ffmpeg.c:3926:18: warning: ‘codec_id’ may be used uninitialized in this function Originally committed as revision 26313 to svn://svn.ffmpeg.org/ffmpeg/trunk
4618637aca3b771b0bfb8fe15f3a080dacf9f0c0
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4618637aca3b771b0bfb8fe15f3a080dacf9f0c0
2011-01-11 21:16:00+00:00
Fix crash for files with strip size larger than the buffer. Fixes issue 2498. Patch by Daniel Kang, daniel.d.kang at gmail Originally committed as revision 26243 to svn://svn.ffmpeg.org/ffmpeg/trunk
1ba44140a3169868eb94e62888d8d2f9861968ab
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1ba44140a3169868eb94e62888d8d2f9861968ab
2011-01-06 14:44:50+00:00
Change FIX15() back to clipping to -32767..32767. This avoids a 16-bit overflow in mdct512() due to a -32768 value in costab. References updated for acodec-ac3, lavf-rm, and seek-ac3_rm tests. Thanks to Måns Rullgård for finding the bug. Originally committed as revision 26071 to svn://svn.ffmpeg.org/ffmpeg/trunk
295ab2af6ef556c37633fc2004ec6b434dcc0113
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/295ab2af6ef556c37633fc2004ec6b434dcc0113
2010-12-21 21:18:58+00:00
Fix crash in uninit. Originally committed as revision 25829 to svn://svn.ffmpeg.org/ffmpeg/trunk
2467997c8c540a50950d7d2078d8bb9d7cb56d24
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2467997c8c540a50950d7d2078d8bb9d7cb56d24
2010-11-25 23:51:37+00:00
Fix ffserver-related regression (and crash) introduced in r25500. Fixes issue 2317. Patch by Rocky Cardwell, rocky d cardwell a lifespringschool d org Originally committed as revision 25603 to svn://svn.ffmpeg.org/ffmpeg/trunk
b67f3d65757e9b08a797f584ee818ad7cfe7b303
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b67f3d65757e9b08a797f584ee818ad7cfe7b303
2010-10-29 14:54:18+00:00
Fix Theora decoding bug if loopfilter is completely disabled Bug caused by the fact that get_bits(gb, 0) is undefined. Doesn't affect any streams generated by the official Theora encoder, but such streams are nevertheless valid. Fixes decoding of CELT-933dd833-nmr-bandt.ogv. Originally committed as revision 25573 to svn://svn.ffmpeg.org/ffmpeg/trunk
1a48a57071df7756a92dee147acb2123cb92a799
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1a48a57071df7756a92dee147acb2123cb92a799
2010-10-26 07:29:00+00:00
Prevent overflow on random input. Originally committed as revision 24795 to svn://svn.ffmpeg.org/ffmpeg/trunk
afbc4d2dac0434f645bbce80d5a47e11e4d6d5fb
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/afbc4d2dac0434f645bbce80d5a47e11e4d6d5fb
2010-08-13 20:06:18+00:00
aacenc: TLS: Try to preserve some energy in each non-zero band. Reduce scalefactors in non-zero bands that underflow by twice as much as those in bands that just fail to hit psy targets. Originally committed as revision 24482 to svn://svn.ffmpeg.org/ffmpeg/trunk
fe461767e69b4f1b63a8e619e9b88e5f790bf60b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fe461767e69b4f1b63a8e619e9b88e5f790bf60b
2010-07-24 16:36:01+00:00
Fix segv when stream copy and validate_tag fails, st->codec->codec is not set Originally committed as revision 24782 to svn://svn.ffmpeg.org/ffmpeg/trunk
d2064fd42b2dd1cf1c44e5c4fc4b8aaba6698637
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d2064fd42b2dd1cf1c44e5c4fc4b8aaba6698637
2010-08-12 00:35:19+00:00
rtpdec_asf: Propagate errors from the chained av_open_input_stream This fixes the crash in issue 2070. Originally committed as revision 24059 to svn://svn.ffmpeg.org/ffmpeg/trunk
0fca8d24ee00284652eecedaa1f922641cdc59b1
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0fca8d24ee00284652eecedaa1f922641cdc59b1
2010-07-05 16:46:00+00:00
LOL, 100l, really fix warning: ffmpeg.c: In function 'new_audio_stream': ffmpeg.c:665: warning: 'best' may be used uninitialized in this function ffmpeg.c:665: note: 'best' was declared here Originally committed as revision 24034 to svn://svn.ffmpeg.org/ffmpeg/trunk
3c5e1b36d5ce0d75e1b63fafab93e8efeb6a6fcd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3c5e1b36d5ce0d75e1b63fafab93e8efeb6a6fcd
2010-07-03 23:24:37+00:00
msmpeg4v1: fix undefined behaviour in msmpeg4_decode_picture_header() Because the order of evaluation of subexpressions is undefined, two get_bits() calls may not be part of the same expression. In this specific case, using get_bits_long() is simpler. This fixes msmpeg4v1 decoding with armcc. Originally committed as revision 24902 to svn://svn.ffmpeg.org/ffmpeg/trunk
b3c1652b8208cd77fdc247a1cca9b07f03d63c10
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b3c1652b8208cd77fdc247a1cca9b07f03d63c10
2010-08-24 15:40:57+00:00
configure: fix symver detection with icc 10 Apparently the compiler sometimes bypasses the normal assembler, in which case the asm label variant works. If the file contains any inline asm, this bypassing is not done, and the assembler chokes on invalid syntax. Inserting a dummy asm() statement in the test when the compiler supports it makes sure no shortcuts are taken and the test fails as it should. Originally committed as revision 23616 to svn://svn.ffmpeg.org/ffmpeg/trunk
0884fadf68817e3325bbe82d875cf470238f44d1
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0884fadf68817e3325bbe82d875cf470238f44d1
2010-06-15 18:06:28+00:00
Fixed overreads in TTA decoder with corrupted bistreams. Originally committed as revision 22176 to svn://svn.ffmpeg.org/ffmpeg/trunk
a9837b58e1b060ed31753821536de128a0deaf26
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a9837b58e1b060ed31753821536de128a0deaf26
2010-03-03 19:31:46+00:00
ff_msmpeg4_decode_init() calls ff_h263_decode_init() which calls MPV_common_init(), so calling both is redundant and leads to memory leaks in WMV3/VC-1 decoder. Thus use only the first function in WMV3/VC-1 decoder initialization. Originally committed as revision 22024 to svn://svn.ffmpeg.org/ffmpeg/trunk
d2df291f73377f87cc92fe9b3b516aa55e1ed3cd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d2df291f73377f87cc92fe9b3b516aa55e1ed3cd
2010-02-24 13:11:38+00:00
10l bug, use av_fast_malloc() instead if av_malloc() for allocating audio buffers. This and the previous revision fix a heap overflow. Originally committed as revision 20769 to svn://svn.ffmpeg.org/ffmpeg/trunk
b8919a30923d4be9033b925b509e54b0ef6ad98c
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b8919a30923d4be9033b925b509e54b0ef6ad98c
2009-12-08 14:48:36+00:00
perform sanity check on number of audio channels in avcodec_open() Originally committed as revision 19877 to svn://svn.ffmpeg.org/ffmpeg/trunk
fa77dd639da796b32d84bed2a00d64b2dd434707
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fa77dd639da796b32d84bed2a00d64b2dd434707
2009-09-16 11:29:47+00:00
Add checks for per-packet mode indexes and per-header mode mapping indexes. 12_vorbis_mode_indexes.patch by chrome maybe exploitable Originally committed as revision 19990 to svn://svn.ffmpeg.org/ffmpeg/trunk
e5b0cfb541035967f4b2fcc49a48c1103a8bce62
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e5b0cfb541035967f4b2fcc49a48c1103a8bce62
2009-09-23 12:09:33+00:00
H264: Fix out of bounds reads in SSSE3 MC Reading above src[-2] isn't safe, so move loads and palignr ahead 3 pixels to load starting at the first pixel actually used. Fixes issue941. Originally committed as revision 18999 to svn://svn.ffmpeg.org/ffmpeg/trunk
2b9969a945584cd057bd47e3679869dcdc248192
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2b9969a945584cd057bd47e3679869dcdc248192
2009-05-30 22:19:14+00:00
ADTS: Increased protection against writing illegal/nonsense files. Originally committed as revision 17859 to svn://svn.ffmpeg.org/ffmpeg/trunk
496dcbbc86b679a3bc23421ed71a35ca1bb8fd9b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/496dcbbc86b679a3bc23421ed71a35ca1bb8fd9b
2009-03-06 21:19:16+00:00
Don't let finalize_packet() touch pkt->stream_index. Instead, let individual payload handlers take care of that themselves at their own option. What this patch really does is "fix" a bug in MS-RTSP protocol where incoming packets are always coming in over the connection (UDP) or interleave-id (TCP) of the stream-id of the first ASF packet in the RTP packet. However, RTP packets may contain multiple ASF packets (and usually do, from what I can see), and therefore this leads to playback bugs. The intended stream-id per ASF packet is given in the respective ASF packet header. The ASF demuxer will correctly read this and set pkt->stream_index, but since the "stream" parameter can not be known to rtpdec.c or any of the RTP/RTSP code, the "st" parameter in all these functions is basically invalid. Therefore, using st->id as pkt->stream_index leads to various playback bugs. The result of this patch is that pkt->stream_index is left untouched for RTP/ASF (and possibly for other payloads that have similar behaviour). The patch was discussed in the "[PATCH] rtpdec.c: don't overwrite pkt->stream_index in finalize_packet()" thread on the mailinglist. Originally committed as revision 17767 to svn://svn.ffmpeg.org/ffmpeg/trunk
eafb17d140f6772c9aac8fbf31641f24a371b2c0
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/eafb17d140f6772c9aac8fbf31641f24a371b2c0
2009-03-03 13:51:34+00:00
Add av_uninit macro to variable to avoid false positive warning: libavformat/electronicarts.c: In function ‘ea_read_packet’: libavformat/electronicarts.c:447: warning: ‘num_samples’ may be used uninitialized in this function Originally committed as revision 17157 to svn://svn.ffmpeg.org/ffmpeg/trunk
b57ac115ae683d44d73d9729eb17b10a10754ab9
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b57ac115ae683d44d73d9729eb17b10a10754ab9
2009-02-11 15:01:52+00:00
If AVPacket->data == NULL, the packet does not contain any buffer to be freed. This fixes a double free on exit. Originally committed as revision 16857 to svn://svn.ffmpeg.org/ffmpeg/trunk
5449a787c953f40f0f4312e6f5897775904ffc45
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5449a787c953f40f0f4312e6f5897775904ffc45
2009-01-30 12:41:44+00:00
Initialize variable to silence the warning: libavutil/pca.c:72: warning: ‘k’ may be used uninitialized in this function Originally committed as revision 15760 to svn://svn.ffmpeg.org/ffmpeg/trunk
ecad9872fb8c50dc88e8298535603e04fd9cf8b4
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ecad9872fb8c50dc88e8298535603e04fd9cf8b4
2008-10-31 06:52:37+00:00
Get rid of now unneeded pps/sps correctness code as pps/sps will not be used at all when anything fails sanity checks. Originally committed as revision 15972 to svn://svn.ffmpeg.org/ffmpeg/trunk
c9c16cacb574e89183430df61a12be34ee249f4b
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c9c16cacb574e89183430df61a12be34ee249f4b
2008-12-01 16:24:19+00:00
Work around GCC variable may be used uninitialised warning Originally committed as revision 14881 to svn://svn.ffmpeg.org/ffmpeg/trunk
fbd91d7cad28915dd7e6061b869b22171ca84101
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fbd91d7cad28915dd7e6061b869b22171ca84101
2008-08-21 12:12:03+00:00
Avoid crash with idiotic cropping. Fixes crash with CVFC1_Sony_C.jsv and closes issue333. Originally committed as revision 12788 to svn://svn.ffmpeg.org/ffmpeg/trunk
faf3dfb94beb18277234034331435c97d421c950
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/faf3dfb94beb18277234034331435c97d421c950
2008-04-11 12:55:21+00:00
ensure av_rescale_q() can be calculated (won't divide by zero) Originally committed as revision 11592 to svn://svn.ffmpeg.org/ffmpeg/trunk
7f938dd32bed373560e06a6f884f5d73415ed788
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7f938dd32bed373560e06a6f884f5d73415ed788
2008-01-21 23:43:25+00:00
make the AVOption code work with strings instead of crash Originally committed as revision 11140 to svn://svn.ffmpeg.org/ffmpeg/trunk
24cdc39e9dfd2b98e96c96387903bd41313bd0dd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/24cdc39e9dfd2b98e96c96387903bd41313bd0dd
2007-12-03 01:03:54+00:00
Turn ancient V offset numerical constants into named ones. Add a check that checks that the width is within the choosen constant. This might have been exploitable. Originally committed as revision 26165 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
8b2fce0d3f5a56c40c28899c9237210ca8f9cf75
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8b2fce0d3f5a56c40c28899c9237210ca8f9cf75
2008-03-05 03:00:25+00:00
optimize the first vertical lifting step, this also prevents another overflow, the last known possible overflow Originally committed as revision 10234 to svn://svn.ffmpeg.org/ffmpeg/trunk
cefa5999534de75686607891b4c06f5b8bd99991
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cefa5999534de75686607891b4c06f5b8bd99991
2007-08-26 11:16:23+00:00
fix mem leak patch by Zdenek Kabelac: [zdenek kabelac gmail com] Originally committed as revision 9740 to svn://svn.ffmpeg.org/ffmpeg/trunk
2c79288d4e0bcb8d3a8a908813fc9cc586dd7fdd
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2c79288d4e0bcb8d3a8a908813fc9cc586dd7fdd
2007-07-18 15:36:45+00:00
kill uninitialised variable warning in ac3_probe() Originally committed as revision 9521 to svn://svn.ffmpeg.org/ffmpeg/trunk
8c222bb405f7031b2326c601f5072ca2980b1079
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8c222bb405f7031b2326c601f5072ca2980b1079
2007-07-07 13:46:28+00:00
Fix an underflow/overflow that was causing some crackles when playing certain THP files. patch by Marco Gerards, mgerards xs4all nl Originally committed as revision 8703 to svn://svn.ffmpeg.org/ffmpeg/trunk
e457023a95e449ac2c80a49256f0611d5a8fffff
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e457023a95e449ac2c80a49256f0611d5a8fffff
2007-04-10 08:18:04+00:00
move eob_reached logic into ff_lzw_decode_tail() which simplifies the code, avoids some checks in the innermost loop and also gets rid of the controversal break while hopefully retaining the last byte in a valid bytestream, invalid bytestreams still can have very significant overread Originally committed as revision 8517 to svn://svn.ffmpeg.org/ffmpeg/trunk
5f01beb54846de8764c15206aa63086238dde493
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5f01beb54846de8764c15206aa63086238dde493
2007-03-25 15:43:46+00:00
replace the auto array "duration_error" with a malloced array. prevents stack overflow on some plateforms patch by Kristian Amlie %kristian A gridmedia P com % Original thread: Date: Mar 1, 2007 11:29 PM Subject: [Ffmpeg-devel] Stack overflow patch Originally committed as revision 8194 to svn://svn.ffmpeg.org/ffmpeg/trunk
0cbff0275b0cff4021e7026ba6060594225fcab5
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0cbff0275b0cff4021e7026ba6060594225fcab5
2007-03-02 13:23:06+00:00
fix overflow and remove wrong comment Originally committed as revision 7187 to svn://svn.ffmpeg.org/ffmpeg/trunk
62b9fc1571b1354cf596a280b5fe55a9593a7a2f
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/62b9fc1571b1354cf596a280b5fe55a9593a7a2f
2006-11-30 11:43:08+00:00
fix some potential security issues, patch by Matthias Hopf, mat at mshopf dot de Originally committed as revision 7153 to svn://svn.ffmpeg.org/ffmpeg/trunk
1e25a7e7ebb55516d522a8ab1c4b7938b5060fe5
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1e25a7e7ebb55516d522a8ab1c4b7938b5060fe5
2006-11-22 01:11:29+00:00
Fix crash with illegal instruction, cmov is available on 686 and later only. Originally committed as revision 6715 to svn://svn.ffmpeg.org/ffmpeg/trunk
8dda3e796b8615b183dc806fefe8ef983157aca2
ffmpeg
devign
1
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8dda3e796b8615b183dc806fefe8ef983157aca2
2006-10-16 21:47:19+00:00