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
ffv1enc: Check return value of av_frame_ref() Fixes CID1026740 Signed-off-by: Michael Niedermayer <[email protected]>
7e99d528f95a56f365a8d8e3624f9be4fe87687b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7e99d528f95a56f365a8d8e3624f9be4fe87687b
2013-06-03 14:06:25+02:00
mpegvideo: fix forgotten lowres op_index limits Signed-off-by: Michael Niedermayer <[email protected]>
0abe923d20db6280dfdfa8a4ed07710ad8376e97
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0abe923d20db6280dfdfa8a4ed07710ad8376e97
2013-05-29 19:55:27+02:00
sws: remove hack to support partial convert / xyz bswaping Signed-off-by: Michael Niedermayer <[email protected]>
45f1cf88a85c3e17abe8244806d4161f062add88
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/45f1cf88a85c3e17abe8244806d4161f062add88
2013-04-28 19:20:06+02:00
avconv: make -t insert trim/atrim filters. This makes -t sample-accurate for audio and will allow further simplication in the future. Most of the FATE changes are due to audio now being sample accurate. In some cases a video frame was incorrectly passed with the old code, while its was over the limit.
a83c0da539fb07260310bc3b34056239d2b138b2
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a83c0da539fb07260310bc3b34056239d2b138b2
2013-04-30 11:53:12+02:00
avdevice/lavfi: add error checking for av_opt_set_int_list() Signed-off-by: Michael Niedermayer <[email protected]>
9b595e86e342e0e39c5ddf9020286cae258b9965
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/9b595e86e342e0e39c5ddf9020286cae258b9965
2013-04-12 20:39:07+02:00
lavf/tta: check header and seek table checksum Since we don't check for seek table integrity in the decoder anymore, check it in the demuxer instead (Only tta files are guaranteed to have one, and it should be valid there). Check also for header integrity, since the check done in the decoder is ignored because matroska doesn't store the header at all. Signed-off-by: James Almer <[email protected]>
6510686c16633339b7f23236abd2c32a62424ba2
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/6510686c16633339b7f23236abd2c32a62424ba2
2013-05-31 21:10:57+00:00
qdm2: initialize coeff_per_sb_select from bit_rate The value of coeff_per_sb_select depends on the bit rate, not on sub_sampling. Also remove the calculation of tmp, no longer needed. Fixes tickets #1868 and #742 (only audio part) Signed-off-by: Michael Niedermayer <[email protected]>
8017683647f5afaea0251eb0e01ec533f2a48d33
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8017683647f5afaea0251eb0e01ec533f2a48d33
2013-04-21 02:00:06+02:00
lavf/gif: correct the delay after the first frame. To define accurately the delay between two frames, it is necessary to have both available. Before this commit, the first frame had a delay of 0; while in practice the problem is not visible in most situation, it is problematic with low frame rate and large scene change. This commit notably fixes output generated with commands such as: ffmpeg -i big_buck_bunny_1080p_h264.mov -vf "select='gt(scene,0.4)',scale=320:-1,setpts=N/TB" -frames:v 5 -y out.gif Also, to avoid odd loop delays, the N-1 delay is duplicated for the last frame.
a7c5b7a6764b5170515183716943a7a463161cfc
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a7c5b7a6764b5170515183716943a7a463161cfc
2013-04-19 12:02:19+02:00
avutil/opencl: replace assert by check and error message in av_opencl_init() Signed-off-by: Michael Niedermayer <[email protected]>
cfaffb1ab7de383e8fe67add8ff42f0a2c52ff97
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cfaffb1ab7de383e8fe67add8ff42f0a2c52ff97
2013-04-04 19:27:45+02:00
ec: check that reference pictures have matching parameters before using them. Fixes out of array reads Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
669d50b445960a7929cd4240bd1a086ab7843c92
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/669d50b445960a7929cd4240bd1a086ab7843c92
2013-02-21 16:38:24+01:00
yadif: remove repeated check on width The filter already checks that width (and height) are greater than 3. Signed-off-by: Michael Niedermayer <[email protected]>
1d3b14cac2f074b55daca5e29bc395fe4bf29aaf
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1d3b14cac2f074b55daca5e29bc395fe4bf29aaf
2013-03-16 22:33:30+01:00
lavc: allow decoders to override frame parameters.
15ec0450b4ae891f3e6ababa03c777a4443b94ca
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/15ec0450b4ae891f3e6ababa03c777a4443b94ca
2013-03-08 07:39:44+01:00
normalize calls to ff_alloc_packet2 - check ret < 0 - remove excessive error log Signed-off-by: Michael Niedermayer <[email protected]>
bcaf64b605442e1622d16da89d4ec0e7730b8a8c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/bcaf64b605442e1622d16da89d4ec0e7730b8a8c
2013-03-06 22:11:46+01:00
lavfi/overlay: add support for partial overlaying Partially rework the iteration logic, in order to limit iteration only for the clipped overlay region.
f164228fd793766187ed3e68cb6d6e2fe3e77c04
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f164228fd793766187ed3e68cb6d6e2fe3e77c04
2013-03-05 20:09:21+01:00
ffmpeg: free last sub when using -fix_sub_duration. Fix trac ticket #2242. Note: under valid circumstances, when using -fix_sub_duration, the last subtitle is a dummy termination packet, with no allocated memory.
f102c24d9040b94eb8a561fbd40f0e61b808703e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f102c24d9040b94eb8a561fbd40f0e61b808703e
2013-02-27 18:57:33+01:00
lavc: make up a fake frame channel layout when there is no real one. This should ensure that a valid channel layout is always set on a frame, until a better solution is implemented.
2eba9087f3031c6050f8dcd996225490be6c2410
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2eba9087f3031c6050f8dcd996225490be6c2410
2013-03-08 07:40:06+01:00
ffmpeg: dont allow -flags to override -pass Fixes Ticket2154 Signed-off-by: Michael Niedermayer <[email protected]>
ccf9dd00da055e94117b56cead4af80ff331b00e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ccf9dd00da055e94117b56cead4af80ff331b00e
2013-02-06 01:26:26+01:00
pngdec/filter: dont access out of array elements at the end Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
1ac0fa50eff30d413206cffa5f47f7fe6d4849b1
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1ac0fa50eff30d413206cffa5f47f7fe6d4849b1
2013-02-12 20:10:35+01:00
libfdk-aacenc: Actually check for upper bounds of cutoff Signed-off-by: Derek Buitenhuis <[email protected]>
c177f2ec4a21d62fdefd925ad69c24a2f9dad303
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c177f2ec4a21d62fdefd925ad69c24a2f9dad303
2013-02-11 10:20:33-05:00
sws: Check for unsupported combination of ED/FULL_CHR flags Signed-off-by: Michael Niedermayer <[email protected]>
aef5c0b68f31c4f4ff2654a8439dccf511c182df
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/aef5c0b68f31c4f4ff2654a8439dccf511c182df
2013-01-19 23:13:40+01:00
4xm: add assert to check that the pointer from read_huffman_tables is within the array Signed-off-by: Michael Niedermayer <[email protected]>
d73b65ed0ebc1bff4ee6bc873381230092792892
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d73b65ed0ebc1bff4ee6bc873381230092792892
2013-01-26 02:27:19+01:00
rmdec: Limit videobufsize to remaining amount of data Fixes excessive memory allocation Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
0780fe27404c24d58bf9b2a3b928d885772bc702
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0780fe27404c24d58bf9b2a3b928d885772bc702
2013-01-07 21:35:52+01:00
rtpdec: Handle more received packets than expected when sending RR Without this, we'd signal a huge loss rate (due to unsigned wraparound) if we had received one packet more than expected (that is, one seq number sent twice). The code has a check for lost_interval <= 0, but that doesn't do what was intended as long as the variable is unsigned. Signed-off-by: Martin Storsjö <[email protected]>
30b50f79aea355f3cf1b08dbfc36754689fd6383
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/30b50f79aea355f3cf1b08dbfc36754689fd6383
2013-01-14 17:52:02+02:00
h264: use mbaff ref indices in fill_colmap() only for mbaff references Prevents writing beyond array bounds. Signed-off-by: Janne Grunau <[email protected]>
c9aab8a123c0bcf6adeab390db1ec783326456ca
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c9aab8a123c0bcf6adeab390db1ec783326456ca
2012-12-18 11:02:23+01:00
iff: fix some incorrect interpretations of invalid files Signed-off-by: Paul B Mahol <[email protected]>
1560c3295db00119e1bef51c2eca1957edd972f4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1560c3295db00119e1bef51c2eca1957edd972f4
2012-11-30 10:44:00+00:00
configure: fix automatic processing of _extralibs in check_deps This fixes the automatic use of $foo_extralibs when feature foo is enabled indirectly through a _select or _suggest. Signed-off-by: Mans Rullgard <[email protected]>
5c75708cf08d57ed4f9744201554d276c8d5c2e9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5c75708cf08d57ed4f9744201554d276c8d5c2e9
2012-12-10 01:23:23+01:00
h264: slice-mt: check master context for valid current_picture_ptr Fixes errors in slice based multithreading introduced in 0b300daad2f5. CC: [email protected]
5945c7b35d9169caf9ecef1c419eebdebb909e60
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5945c7b35d9169caf9ecef1c419eebdebb909e60
2012-12-05 23:16:37+01:00
ffserver remove CONFIG_NOCUTILS check Nothing sets CONFIG_NOCUTILS, i also dont remember anything setting it in the past. Signed-off-by: Michael Niedermayer <[email protected]>
c2c1726847fe3a043762062db40774bf0cc434c3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c2c1726847fe3a043762062db40774bf0cc434c3
2012-11-27 14:41:41+01:00
zmbvdec: check decompression buffer size. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
44c23aa1b85d195db6647d24e3b1d3de051790db
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/44c23aa1b85d195db6647d24e3b1d3de051790db
2012-11-11 18:09:11+01:00
ffv1enc: consider 2pass float rounding, fix loop Found-by: "Peter B." <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
c2cbc80ae9e3f00e21235915a80f81a2aeb7db0a
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/c2cbc80ae9e3f00e21235915a80f81a2aeb7db0a
2012-11-16 17:01:13+01:00
aacdec: fix temporary array size Avoids out of array accesses. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
ac7ff0963bf353ffd951ae8d51444b82b7ea69c1
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ac7ff0963bf353ffd951ae8d51444b82b7ea69c1
2012-11-09 21:05:43+01:00
lavc/options_table: force non-negative bitrate range It does not make sense to set a negative bitrate.
0372ecfa48252b579b1f84d2ad14cc1b59743a83
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/0372ecfa48252b579b1f84d2ad14cc1b59743a83
2012-11-03 20:38:02+01:00
lxfdec: remove deplanarization hack Signed-off-by: Paul B Mahol <[email protected]>
37e2a9783fd07558e2ce49b7cf2f617bf500f512
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/37e2a9783fd07558e2ce49b7cf2f617bf500f512
2012-11-17 19:30:04+00:00
ffplay: only initialize codec opts before using it Fixes Coverity CID 733793. Signed-off-by: Marton Balint <[email protected]>
fdb933444add87e026b64639d0db83b0d5177c7b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fdb933444add87e026b64639d0db83b0d5177c7b
2012-11-01 15:46:18+01:00
qt-faststart: check return of ftello() Fixes CID739863 Signed-off-by: Michael Niedermayer <[email protected]>
4a2297294fa269e05aa2b3fe36b2ea231caa6dca
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4a2297294fa269e05aa2b3fe36b2ea231caa6dca
2012-10-25 01:32:45+02:00
tiffdec: check rps, fix infinite loop. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
02a325cb6fdc1e33a45191cbfbfe4298affcd021
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/02a325cb6fdc1e33a45191cbfbfe4298affcd021
2012-11-09 19:28:57+01:00
cmdutils: add missing check for ftell() return Fixed CID703706 Signed-off-by: Michael Niedermayer <[email protected]>
ce739e66f4f9154d74f4a84436238abb205152b9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ce739e66f4f9154d74f4a84436238abb205152b9
2012-10-18 00:10:59+02:00
ffeval: avoid folding EOF onto a valid char Fixes CID733704 Signed-off-by: Michael Niedermayer <[email protected]>
225d3cc1ccd85bcda77e378f28aea6ab17ee4ba1
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/225d3cc1ccd85bcda77e378f28aea6ab17ee4ba1
2012-10-13 20:35:56+02:00
random_seed: fix out of array read Fixes CID733787 Signed-off-by: Michael Niedermayer <[email protected]>
7fe55485315201ea2ca540e6e337bfaf4af086c5
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7fe55485315201ea2ca540e6e337bfaf4af086c5
2012-10-11 18:28:21+02:00
swfenc: error out for more than 1 audio or video stream Prevents CID602000.
53e122dd4afbb5bbdbba8b18bee0beb460242dc7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/53e122dd4afbb5bbdbba8b18bee0beb460242dc7
2012-10-09 15:39:05+02:00
lavfi/edgedetect: use "@see" instead of the invalid "@url".
3899e4995538a002c49e1e9d204832a3388588c8
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3899e4995538a002c49e1e9d204832a3388588c8
2012-08-20 23:12:34+02:00
smjpeg: fix type of 'ret' variable in smjpeg_read_packet() The 'ret' variable is used for negative error codes so it should be a signed type. Signed-off-by: Mans Rullgard <[email protected]>
366484fff1720977b8591e3a90fbef9f4885e53c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/366484fff1720977b8591e3a90fbef9f4885e53c
2012-10-12 22:21:10+01:00
ffv1dec: change bitstream end check to a exact check instead of a +-1 check Signed-off-by: Michael Niedermayer <[email protected]>
aea15df3b4c264b5b13d5f85341f52c7ec756c6f
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/aea15df3b4c264b5b13d5f85341f52c7ec756c6f
2012-09-25 03:43:23+02:00
ppc: fix Altivec build with old compilers The vec_splat() intrinsic requires a constant argument for the element number, and the code relies on the compiler unrolling the loop to provide this. Manually unrolling the loop avoids this reliance and works with all compilers. Signed-off-by: Mans Rullgard <[email protected]>
f79364b2c30aaaec9f0b1500a74da5a859c2ff37
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f79364b2c30aaaec9f0b1500a74da5a859c2ff37
2012-10-08 23:14:51+01:00
lavc/pgssubdec: use the PTS from the presentation segment. According to the sample for trac ticket #1722, PGS subtitles are decoded from several packets at the same DTS and varying PTS. The PTS from the presentation segment seem to be the valid one; in particular, clear subtitles are too early with the other PTS.
37bbc9eb8bdae43d38a6fb7cc1356d1ce7d41e1c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/37bbc9eb8bdae43d38a6fb7cc1356d1ce7d41e1c
2012-09-15 16:14:33+02:00
alsdec: Check that quantized parcor coeffs are within range. ALS spec: 11.6.3.1.1 Quantization and encoding of parcor coefficients ... In all cases the resulting quantized values ak are restricted to the range [-64,63]. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Justin Ruggles <[email protected]>
5b051ec3bdc78f3d89e8d1425674cde8fd6c9ccc
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5b051ec3bdc78f3d89e8d1425674cde8fd6c9ccc
2012-09-17 14:17:27-04:00
Revert "lavu: add snprintf(), vsnprint() and strtod() replacements for MS runtime." This reverts commit ba537202801d71711f1ef9306a6248dd2d426fa0. A better implementation has been commited by the same author to qatar Conflicts: configure Found-by: jamal <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
2bb62455c899cdccbdc2a6ad33f9582008ed9f05
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2bb62455c899cdccbdc2a6ad33f9582008ed9f05
2012-09-06 16:14:34+02:00
configure: add section for libc-specific hacks Signed-off-by: Martin Storsjö <[email protected]>
b797f3c4d01e62b4db689d69bf417cced9099b06
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/b797f3c4d01e62b4db689d69bf417cced9099b06
2012-09-05 17:07:17+03:00
lavfi/movie: split class definitions for movie and amovie This is required for iterating through the filter class (without incurring into a loop).
831a999ddaf89ad3bb31bfcf4201463098444539
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/831a999ddaf89ad3bb31bfcf4201463098444539
2012-08-18 10:04:25+02:00
utvideodec: Fix single symbol mode decoding Put the zero length check in place of code that was never used during decoding, as zero-length slices were generally refused in decode_frame(). Signed-off-by: Kostya Shishkov <[email protected]>
01cb4c84f54a52725c9b4b4dd6c609c36cccc5d4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/01cb4c84f54a52725c9b4b4dd6c609c36cccc5d4
2012-08-24 13:12:31+02:00
flvdec: follow packets backward until a valid last timestamp is found Fixed Ticket981 Signed-off-by: Michael Niedermayer <[email protected]>
231ffb9243e5286b7c3d5806fa8f3142c72bfe15
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/231ffb9243e5286b7c3d5806fa8f3142c72bfe15
2012-08-03 14:50:26+02:00
rtmp: Check the buffer length of ping packets Signed-off-by: Martin Storsjö <[email protected]>
8ea1459bc32b55441fb49311fcee4f9f0fcf39b9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8ea1459bc32b55441fb49311fcee4f9f0fcf39b9
2012-07-26 22:57:15+03:00
nuv: check size of buffer before accessing it instead of after. Signed-off-by: Reimar Döffinger <[email protected]>
e1bc0171c0e6ba85cc14a52b979d6cb00b0c38bb
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e1bc0171c0e6ba85cc14a52b979d6cb00b0c38bb
2012-08-01 19:35:58+02:00
pp: check that the argument is not NULL as this is not supported Signed-off-by: Michael Niedermayer <[email protected]>
561a365dca6e392c5f6cd718784c57627819eef4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/561a365dca6e392c5f6cd718784c57627819eef4
2012-07-07 19:14:21+02:00
jacosub_probe: slightly increase the score to limit misdetection.
303619d3ca9efa0031f6fede7dedeb27fcfb1756
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/303619d3ca9efa0031f6fede7dedeb27fcfb1756
2012-05-31 22:12:46+02:00
x86: lavfi: fix gradfun/yadif build with mmx/sse disabled These functions are defined conditionally so any uses need to have preprocessor guards. Signed-off-by: Mans Rullgard <[email protected]>
fb93e61e2b7baa44ff991bc0ce96291490a0188e
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/fb93e61e2b7baa44ff991bc0ce96291490a0188e
2012-07-03 14:14:13+01:00
proresenc: make a variable local to the loop where it is used This moves the mbs_per_slice declaration inside the only loop where it is used. Fixes a dead assignment. Signed-off-by: Mans Rullgard <[email protected]>
1c2c64edac4bd2b65b6d2f8d1489eed40f8a5458
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1c2c64edac4bd2b65b6d2f8d1489eed40f8a5458
2012-07-01 20:38:14+01:00
avfilter: use designated initializer for class Signed-off-by: Paul B Mahol <[email protected]>
908c045f3aa0e96cb8d357e70e3a38d3e3fdfb18
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/908c045f3aa0e96cb8d357e70e3a38d3e3fdfb18
2012-05-29 07:59:21+00:00
rtmp: send check_bw as notification Set the transactionId to 0 to signal the server a return _result/_error is not expected. Solves the problems experienced with strict rtmp servers.
82613564cfae459796642b22fc0163927d7f49e0
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/82613564cfae459796642b22fc0163927d7f49e0
2012-08-08 14:22:34+02:00
avprobe: output proper INI format Make the output valid INI serialization.
3a8c95f730732b9f1ffacdbfbf79a01b202a67af
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/3a8c95f730732b9f1ffacdbfbf79a01b202a67af
2012-05-25 14:20:34-07:00
mjpegenc: add a limit for maximum supported resolution jpeg does not allow more than 65000 pixels for width and height Signed-off-by: Michael Niedermayer <[email protected]>
d2581dcca6abe74e3fbf44df815194a6aea71bd6
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d2581dcca6abe74e3fbf44df815194a6aea71bd6
2012-05-31 16:57:47+02:00
lavfi/tinterlace: remove unnecessary NULL check in start_frame()
18c6bd098baba1ace8fea946e4bc0c60098f49d4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/18c6bd098baba1ace8fea946e4bc0c60098f49d4
2012-04-27 22:45:11+02:00
mpegvideo: double thread limit 16 seems a bit tight for current high end and expected near term future boxes. Signed-off-by: Michael Niedermayer <[email protected]>
cb982739fa2b43afb7f1262c07804cad41f778de
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cb982739fa2b43afb7f1262c07804cad41f778de
2012-05-07 20:08:56+02:00
rtmp: Support 'rtmp_tcurl', an option which overrides the URL of the target stream. Signed-off-by: Martin Storsjö <[email protected]>
55c9320e0638349dbea2f8a658ecd3f48d1a80f1
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/55c9320e0638349dbea2f8a658ecd3f48d1a80f1
2012-05-10 13:55:26+03:00
mlpdec: set channel variables after checking them This fixes out of array reads Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
a9cd12ee2afb3f3aad783c396816b23d8513f472
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a9cd12ee2afb3f3aad783c396816b23d8513f472
2012-04-19 20:01:33+02:00
vp3: Assert on invalid filter_limit values. Signed-off-by: Dale Curtis <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
e9dc616472081f13827dbb19999f515abb61f3ae
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/e9dc616472081f13827dbb19999f515abb61f3ae
2012-04-13 02:12:22+02:00
wmalosslessdec: Make arrays WMALL_BLOCK_MAX_SIZE big and check samples_per_frame. The samples_per_frame check is ported from wmaprodec.c Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
d442c4462a2692e27a24e1a9d0eb6f18725c7bd8
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d442c4462a2692e27a24e1a9d0eb6f18725c7bd8
2012-04-14 13:35:29+02:00
qdm2: Fix out of array writes Signed-off-by: Michael Niedermayer <[email protected]>
cece491daa9f4c7c908e016f4e285a49d37cb17c
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/cece491daa9f4c7c908e016f4e285a49d37cb17c
2012-03-26 15:29:14+02:00
apedec: check bits <= 32. Fixes a floating-point exception further down. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected] Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Ronald S. Bultje <[email protected]> Signed-off-by: Derek Buitenhuis <[email protected]>
420d1df2e2a857eae45fa947e16eae7494793d57
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/420d1df2e2a857eae45fa947e16eae7494793d57
2012-03-31 14:01:12-04:00
zerocodec: factorize loop Signed-off-by: Diego Biurrun <[email protected]>
afa612901615cca6c0160b5e6c18ffcacf0add46
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/afa612901615cca6c0160b5e6c18ffcacf0add46
2012-03-23 12:10:41+01:00
Revert "raw: move buffer size check up." This reverts commit cc5dd632cecc5114717d0b90f8c2be162b1c6ee8. The change was redundant, it has been fixed long ago (422e3a7) Conflicts: libavcodec/rawdec.c Signed-off-by: Michael Niedermayer <[email protected]>
8b58f6b5c286ba14ec9c6c9e03f9ede8c6be9181
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8b58f6b5c286ba14ec9c6c9e03f9ede8c6be9181
2012-03-27 02:17:54+02:00
lavfi/movie: add loop parameter Signed-off-by: William Yu <[email protected]> Signed-off-by: Stefano Sabatini <[email protected]>
d19d52d4a11547cc70bcbc3a2f8b83ccd24bb951
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/d19d52d4a11547cc70bcbc3a2f8b83ccd24bb951
2012-03-18 21:19:09+01:00
iff: check for pbm tag more robust Signed-off-by: Michael Niedermayer <[email protected]>
86b6e49d921b0debca9be66732fd61ac43f7b08d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/86b6e49d921b0debca9be66732fd61ac43f7b08d
2012-03-12 05:09:37+01:00
mov: Discard invalid CTTS. Fixes Ticket385 Signed-off-by: Michael Niedermayer <[email protected]>
4093220029a4d77f272c491e9299680480a08c00
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4093220029a4d77f272c491e9299680480a08c00
2012-03-08 21:31:45+01:00
rv34: clean a bit availability checks. Signed-off-by: Ronald S. Bultje <[email protected]>
7104c23bd1a1dcb8a7d9e2c8838c7ce55c30a331
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7104c23bd1a1dcb8a7d9e2c8838c7ce55c30a331
2012-03-07 10:29:52-08:00
svq3: protect against negative quantizers. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected]
11b940a1a8e7e5d5b212935a3ce78aeda577f5f2
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/11b940a1a8e7e5d5b212935a3ce78aeda577f5f2
2012-03-06 10:47:42-08:00
vp8: convert loopfilter x86 assembly to use cpuflags().
28170f1a39236c5be91ab6df67e477a213c552b4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/28170f1a39236c5be91ab6df67e477a213c552b4
2012-03-03 20:40:00-08:00
movenc: remove redundant check The proper check is already in mov_write_header. Signed-off-by: Martin Storsjö <[email protected]>
18b59956e0e94017f1b519bb42c7c937b2f9f8a4
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/18b59956e0e94017f1b519bb42c7c937b2f9f8a4
2012-04-11 14:38:36+03:00
roqvideodec: improve end of input buffer check This fixes a out of array read. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
7a7b1f5c4d4127ff78bed67e786d03560a9cc199
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7a7b1f5c4d4127ff78bed67e786d03560a9cc199
2012-03-02 02:32:14+01:00
cmdutils: Fix cpuflags so the flags dont pull in and out other flags. Note, this doesnt break compatibility with libav, as libav has implemented a incompatible and more limited system under the same -cpuflags command line option we used since some time. The differences to libav for example are we can do things like ffmpeg -cpuflags -sse+mmx -cpuflags +3dnow Its also possible in our system to force flags that have not been detected as available And our -cpuflags works with all tools not just 1 Signed-off-by: Michael Niedermayer <[email protected]>
f43a16049ef07585789d311f314f236a314f91f7
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f43a16049ef07585789d311f314f236a314f91f7
2012-03-14 23:05:38+01:00
bit_depth_template: use av_clip_uint8 over crop_tab. This fixes some global out of array reads and wrong cliping. No speed difference meassurable under clang on i5 also all important code paths on all important platforms should use SIMD. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <[email protected]>
263bb6edcf6b767006fcde315850d3a60b3fceed
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/263bb6edcf6b767006fcde315850d3a60b3fceed
2012-03-05 03:05:21+01:00
rtp: Factorize the check for distinguishing RTCP packets from RTP The binary doesn't change after this patch. Signed-off-by: Martin Storsjö <[email protected]>
298a587f447fbc9103f66a50b8433aab977afc9b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/298a587f447fbc9103f66a50b8433aab977afc9b
2012-02-16 17:45:33+01:00
mxfdec: Check for NULL component This fixes a SIGSEGV with zzuf1.mxf. Signed-off-by: Diego Biurrun <[email protected]>
effe3b9575bf5770b228df37675a976a68e8a5e3
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/effe3b9575bf5770b228df37675a976a68e8a5e3
2012-02-09 12:41:50+01:00
swscale: rename "dstw" to "w" to prevent name collisions. "dstw" can collide with the word-version of the "dst" argument, causing all kind of weird stuff down the pipe.
8c433d8a03279703b6ef1b4645ae06b570011ccd
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/8c433d8a03279703b6ef1b4645ae06b570011ccd
2012-02-12 08:27:50-08:00
h264 golomb: Fix copyright violation. Copy and paste does not change authorship See 0da71265 for the original checkin Signed-off-by: Michael Niedermayer <[email protected]>
ada28b7f72c5cd3a849a0a7f11f3c19dae9d5c67
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ada28b7f72c5cd3a849a0a7f11f3c19dae9d5c67
2012-02-01 03:34:12+01:00
SBR DSP x86: implement SSE sbr_hf_g_filt Unrolling the main loop to process, instead of 4 elements: - 8: minor gain of 2 cycles (not worth the extra object size) - 2: loss of 8 cycles. Assigning STEP to a register is a loss. Output address (Y) is almost always unaligned. Timings: - C (32/64 bits): 117/109 cycles - SSE: 57 cycles Signed-off-by: Ronald S. Bultje <[email protected]>
2784d187919b48022a89633fb3b5a99ca97cf869
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2784d187919b48022a89633fb3b5a99ca97cf869
2012-02-23 15:50:09-08:00
frwu: check if allocation was successful Signed-off-by: Paul B Mahol <[email protected]> Signed-off-by: Ronald S. Bultje <[email protected]>
5eda82aac9b400f0435293db9b102bd4e9749a7b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/5eda82aac9b400f0435293db9b102bd4e9749a7b
2012-01-27 09:31:06+08:00
sunrast: Remove if (unsigned int < 0) check. Note: This fixes the following GCC warning :- libavcodec/sunrast.c:94: warning: comparison of unsigned expression < 0 is always false. Signed-off-by: Ronald S. Bultje <[email protected]>
4ffb8e2c14dbbe28014fb9d5cea769d600094e1b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/4ffb8e2c14dbbe28014fb9d5cea769d600094e1b
2012-01-29 08:11:18-08:00
cabac: Remove ff_h264_lps_state array. It was only ever used in the cabac test program, but never initialized.
64d779f2f7607070a87b0a70edeba5e51834ce85
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/64d779f2f7607070a87b0a70edeba5e51834ce85
2012-01-12 22:54:24+01:00
adpcmenc: check return value of avcodec_alloc_frame() Signed-off-by: Paul B Mahol <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
82c252972b494402818aa07df5bdbac16111c09d
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/82c252972b494402818aa07df5bdbac16111c09d
2012-01-28 20:15:15+01:00
vf_deshake: zero-init Transform structs in end_frame() Initialize Transform structs t and orig to zero. Signed-off-by: Ray Simard <[email protected]> Signed-off-by: Stefano Sabatini <[email protected]>
7f6004fc7466c2ce975894446f4b13ca6c3779a0
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/7f6004fc7466c2ce975894446f4b13ca6c3779a0
2012-01-13 16:59:50+01:00
adxenc: use a loop to encode each channel
f1be41c63d8c2f0d0ecc6cbde4eb50701f809834
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/f1be41c63d8c2f0d0ecc6cbde4eb50701f809834
2012-01-03 18:47:42-05:00
timecode: more tolerant frame rate check for drop flag. This fixes some timecode probing in MOV.
ed14b7242ae51d74a64eed7687c8680f7882548b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ed14b7242ae51d74a64eed7687c8680f7882548b
2012-01-06 12:16:06+01:00
flvdec: Disable metadatacreator "MEGA" hack Signed-off-by: Michael Niedermayer <[email protected]>
67c734ea5c3bcba7fca35dcff223ca0388eb8b4b
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/67c734ea5c3bcba7fca35dcff223ca0388eb8b4b
2011-12-30 04:29:55+01:00
h264: add forgotten \n to "Invalid mix of idr and non-idr slices" Signed-off-by: Michael Niedermayer <[email protected]>
ecb14b8af73b92e5a1be47c119d2f528ff402ebd
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/ecb14b8af73b92e5a1be47c119d2f528ff402ebd
2012-01-01 21:04:34+01:00
vmdav: check that theres enough space for a chunk remaining. Signed-off-by: Michael Niedermayer <[email protected]>
2278ecc434d390bccd32a083a12ab964a6b7b0ce
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/2278ecc434d390bccd32a083a12ab964a6b7b0ce
2011-12-24 22:03:59+01:00
lavc: Check codec_ids against insertion/removial typos Signed-off-by: Michael Niedermayer <[email protected]>
83b46713f0941f468f20a149be206db1f78eb944
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/83b46713f0941f468f20a149be206db1f78eb944
2011-12-17 06:09:13+01:00
lavf: add internal AVIOContext.maxsize This allows simple and generic limiting of allocations used for packets. Signed-off-by: Michael Niedermayer <[email protected]>
47572323f2f908913b4d031af733047d481fb1f6
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/47572323f2f908913b4d031af733047d481fb1f6
2011-12-16 05:59:43+01:00
Initialize num_logged_tiles and remove unnecessary codes
1e0db1c52addb8f92cc0e40d3005dc76c0c842d9
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/1e0db1c52addb8f92cc0e40d3005dc76c0c842d9
2011-11-20 14:51:39+06:00
lavc: avoid invalid memcpy() in avcodec_default_release_buffer() When the buf and last pointers are equal, the FFSWAP() results in an invalid call to memcpy() with same source and destination on some targets. Although assigning a struct to itself is valid C99, gcc does not check for this before calling memcpy(). See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32667 Signed-off-by: Mans Rullgard <[email protected]>
a09bb3ba5e018b81a659c199a84cd1d80c07d869
ffmpeg
devign
0
https://github.com/ffmpeg/ffmpeg
https://github.com/ffmpeg/ffmpeg/commit/a09bb3ba5e018b81a659c199a84cd1d80c07d869
2011-12-11 18:54:28+00:00