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
⌀ |
---|---|---|---|---|---|---|---|
avformat/matroskadec: Check the return code from strftime()
Signed-off-by: Michael Niedermayer <[email protected]>
| f0390638e0e13436629e0297b1aa5bbc058cda2f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f0390638e0e13436629e0297b1aa5bbc058cda2f | 2014-10-26 17:07:29+01:00 |
avcodec/fate-idct8x8: Defined behavior: eliminate negative left-shifts.
The original code left-shifts negative values, which is undefined
in the C99 specification (the one used during normal FFmpeg compilation).
This change multiplies by (1 << shift), which is functionally equivalent,
but has defined behavior.
With this change, fate-idct8x8 compiled with --fsanitize=undefined works.
Bug-Id: 686
Signed-off-by: Michael Niedermayer <[email protected]>
The assembly generated by gcc is unchanged by this commit
| e50ae60d46181814245f70b61b70394311e10373 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e50ae60d46181814245f70b61b70394311e10373 | 2014-05-20 04:21:06+02:00 |
Check for hevc startcode when muxing into mpeg-ts.
| fddea3f074d920752a3a1d47f4858a710d65a3ef | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/fddea3f074d920752a3a1d47f4858a710d65a3ef | 2014-08-12 08:48:20+02:00 |
avformat/utils: do not wait for packets from discarded streams for genpts
Fixes long loop
Fixes Ticket3208
Signed-off-by: Michael Niedermayer <[email protected]>
| 8202c49b43621c04e26d4a3aa83a10e1e5cc1836 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8202c49b43621c04e26d4a3aa83a10e1e5cc1836 | 2014-07-13 01:07:59+02:00 |
avformat/hlsenc: Added parameter -hls_allow_cache
The -hls_allow_cache parameter enables explicitly setting the
EXT-X-ALLOW-CACHE tag in the manifest file. That tag indicates
whether the client MAY or MUST NOT cache downloaded media
segments for later replay.
Valid values are 1 (=YES) or 0 (=NO) and the EXT-X-ALLOW-CACHE
will not show in the manifest for other values (or if
-hls_allow_cache is not used.
Signed-off-by: Michael Niedermayer <[email protected]>
| 3edb9aaea6aaa6b93d708693cfa6454c17e03732 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3edb9aaea6aaa6b93d708693cfa6454c17e03732 | 2014-09-28 03:09:05+02:00 |
avcodec/g729postfilter: avoid potential negative shift
Fixes CID1194402
Signed-off-by: Michael Niedermayer <[email protected]>
| 1fc28cf1644e813f57dcdcf687e77dc3167b9823 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1fc28cf1644e813f57dcdcf687e77dc3167b9823 | 2014-04-27 23:12:42+02:00 |
flv: Do not mangle dts values for negative cts
Some applications really mean to send negative pts.
| 152b797cd687e96a582a1cb908dddf3d330d7637 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/152b797cd687e96a582a1cb908dddf3d330d7637 | 2014-04-23 21:20:17+02:00 |
configure: check $as first before using $gas as GNU as
llvm's integrated assembler supports the AArch64 asm on darwin since
August 2014. So check $as first before using gas-preprocessor.pl via
$gas. Makes the checks specific for that the architecture specific asm
needs. PPC Altivec and AArch64 needs on ':vararg' for macro arguments.
Arm needs in addition the '.altmacro' directive.
| 15201e256035a3e8f9d3d7b96fc327467e1a8ead | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/15201e256035a3e8f9d3d7b96fc327467e1a8ead | 2014-08-05 13:11:50+02:00 |
lavf/rtspcodes: add missing header include
Fixes make checkheaders
Signed-off-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 09c16542085aa9f227264ffc443fb07558128b20 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/09c16542085aa9f227264ffc443fb07558128b20 | 2014-04-10 21:57:04+02:00 |
Add replaygain side data type and code for parsing replaygain tags.
| 5a7e35dd2351c30bab45177b9482cb8833a0ca78 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5a7e35dd2351c30bab45177b9482cb8833a0ca78 | 2014-03-24 06:07:51+01:00 |
rtspdec: check for strchr returning NULL.
Fixes CID 732244.
Signed-off-by: Reimar Döffinger <[email protected]>
| a0568ed2544025de3c66dd500811f5ba43f38af4 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a0568ed2544025de3c66dd500811f5ba43f38af4 | 2014-04-06 22:04:03+02:00 |
rtspcodes: don't check for >0 on error codes macro
Avoids a warning with gcc 4.7 and -Wtype-limits. Albeit
superfluous (At least gcc 4.8 didnt consider this been
a problem).
Signed-off-by: Reynaldo H. Verdejo Pinochet <[email protected]>
| 5b30f2759267c12ac1a48460ec8c01415c8d5cd6 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5b30f2759267c12ac1a48460ec8c01415c8d5cd6 | 2014-04-08 18:05:02-03:00 |
avformat/matroskaenc: Write duration early during mkv_write_header (Rev #3)
Rev #2: Fixes doubled header writing, checked FATE running without errors
Rev #3: Fixed coding style
This commit addresses the following scenario:
we are using ffmpeg to transcode or remux mkv (or something else) to mkv. The result is being streamed on-the-fly to an HTML5 client (streaming starts while ffmpeg is still running). The problem here is that the client is unable to detect the duration because the duration is only written to the mkv at the end of the transcoding/remoxing process. In matroskaenc.c, the duration is only written during mkv_write_trailer but not during mkv_write_header.
The approach:
FFMPEG is currently putting quite some effort to estimate the durations of source streams, but in many cases the source stream durations are still left at 0 and these durations are nowhere mapped to or used for output streams. As much as I would have liked to deduct or estimate output durations based on input stream durations - I realized that this is a hard task (as Nicolas already mentioned in a previous conversation). It would involve changes to the duration calculation/estimation/deduction for input streams and propagating these durations to output streams or the output context in a correct way.
So I looked for a simple and small solution with better chances to get accepted. In webmdashenc.c I found that a duration is written during write_header and this duration is taken from the streams' metadata, so I decided for a similar approach.
And here's what it does:
At first it is checking the duration of the AVFormatContext. In typical cases this value is not set, but: It is set in cases where the user has specified a recording_time or an end_time via the -t or -to parameters.
Then it is looking for a DURATION metadata field in the metadata of the output context (AVFormatContext::metadata). This would only exist in case the user has explicitly specified a metadata DURATION value from the command line.
Then it is iterating all streams looking for a "DURATION" metadata (this works unless the option "-map_metadata -1" has been specified) and determines the maximum value.
The precendence is as follows: 1. Use duration of AVFormatContext - 2. Use explicitly specified metadata duration value - 3. Use maximum (mapped) metadata duration over all streams.
To test this:
1. With explicit recording time:
ffmpeg -i file:"src.mkv" -loglevel debug -t 01:38:36.000 -y "dest.mkv"
2. Take duration from metadata specified via command line parameters:
ffmpeg -i file:"src.mkv" -loglevel debug -map_metadata -1 -metadata Duration="01:14:33.00" -y "dest.mkv"
3. Take duration from mapped input metadata:
ffmpeg -i file:"src.mkv" -loglevel debug -y "dest.mkv"
Regression risk:
Very low IMO because it only affects the header while ffmpeg is still running. When ffmpeg completes the process, the duration is rewritten to the header with the usual value (same like without this commit).
Signed-off-by: SoftWorkz <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 70c1647a3501fa6182c04c9ce66f477def64a611 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/70c1647a3501fa6182c04c9ce66f477def64a611 | 2016-07-28 02:06:55+02:00 |
avformat/oggparsevorbis: dont use invalid granules
Fixes Ticket3437
Signed-off-by: Michael Niedermayer <[email protected]>
| 12b97dd375736c332989c50ea68af9d834b2621f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/12b97dd375736c332989c50ea68af9d834b2621f | 2014-03-05 17:07:28+01:00 |
hevc: Do not left shift a negative value in hevc_loop_filter_chroma
| 8eeacf31c5ea37baf6b222dc38d20cf4fd33c455 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8eeacf31c5ea37baf6b222dc38d20cf4fd33c455 | 2014-02-23 14:34:41+01:00 |
avcodec: Add padding after the remaining AVFrames
This limits ABI issues in case libavcodec is linked to a libavutil with larger AVFrame
Which can happen if they are shiped in seperate binary packages and libavutil is upgraded
A cleaner alternative would be to replace them by pointers but this would likely cause
a small speedloss
Signed-off-by: Michael Niedermayer <[email protected]>
| fc567ac49e17151f00f31b59030cd10f952612ef | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/fc567ac49e17151f00f31b59030cd10f952612ef | 2014-03-23 00:28:51+01:00 |
vp9: remove memset in loopfilter level setting loop.
Use same function for segmentation map writing also.
| 37c6eac296ba831a4cb5d238200df9237fb3506e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/37c6eac296ba831a4cb5d238200df9237fb3506e | 2014-02-09 18:07:14+01:00 |
vc1dec: Check the error handling flags on slice/field header decode errors
Signed-off-by: Martin Storsjö <[email protected]>
| 23d6ba2c44540eb39c6880e4cbd527d297d264a9 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/23d6ba2c44540eb39c6880e4cbd527d297d264a9 | 2013-09-22 21:02:52+03:00 |
g2meet: Validate bpp and bitmasks in the display info
That prevents processing of media files with
incompatible or unsupported settings.
Signed-off-by: Michael Niedermayer <[email protected]>
| ae95b2f8103cf0136889884fdf1c4e5136634991 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ae95b2f8103cf0136889884fdf1c4e5136634991 | 2014-02-08 23:30:02+01:00 |
avcodec/utils: set AVFrame format unconditional
Fixes inconsistency and out of array accesses
Fixes: 10cdd7e63e7f66e3e66273939e0863dd-asan_heap-oob_1a4ff32_7078_cov_4056274555_mov_h264_aac__mp4box_frag.mp4
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| e5c7229999182ad1cef13b9eca050dba7a5a08da | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e5c7229999182ad1cef13b9eca050dba7a5a08da | 2014-02-16 01:34:35+01:00 |
avcodec/h264: clear dequant8_coeff pointers if 8x8 mode is not enabled
This prevents stale pointers from being left
Signed-off-by: Michael Niedermayer <[email protected]>
| 1a96b27ebfa908f60510be0537508b7c9b370be0 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1a96b27ebfa908f60510be0537508b7c9b370be0 | 2014-02-03 22:15:32+01:00 |
avcodec/takdec: always check bits_per_raw_sample
Fixes out of array access
Fixes: asan_heap-oob_19c7a94_6470_cov_1453611734_luckynight-partial.tak
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| f58eab151214d2d35ff0973f2b3e51c5eb372da4 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f58eab151214d2d35ff0973f2b3e51c5eb372da4 | 2014-01-31 19:54:27+01:00 |
avcodec/mjpegenc: Use av_frame_clone() instead of av_frame_ref()
This avoids the need for double error checking
Fixes CID1163843
Signed-off-by: Michael Niedermayer <[email protected]>
| a26e9c1040afeecf9013da742b0dec7009445f2b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a26e9c1040afeecf9013da742b0dec7009445f2b | 2014-01-24 03:24:55+01:00 |
avutil/opt: Better print representation of number limits
Signed-off-by: João Bernardo Oliveira <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 290326711b1ad24aa83f89a25ae1255077b4ea49 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/290326711b1ad24aa83f89a25ae1255077b4ea49 | 2014-01-24 21:14:02+01:00 |
avcodec/h264: update current_sps & sps->new only after the whole slice header decoder and init code finished
This avoids them being cleared before the full initialization finished
Fixes out of array read
Fixes: asan_heap-oob_f0c5e6_7071_cov_1605985132_mov_h264_aac__Demo_FlagOfOurFathers.mov
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 8a3b85f3a7952c54a2c36ba1797f7e0cde9f85aa | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8a3b85f3a7952c54a2c36ba1797f7e0cde9f85aa | 2014-02-04 04:49:25+01:00 |
hevc: don't check for errors in PTL code
The value of XXX_reserved_zero_44bits should be ignored, no need to
report an error when it's not zero.
Signed-off-by: Michael Niedermayer <[email protected]>
| dddc9b7a8ec3a03e48c69991ca7f20f10dd6f022 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/dddc9b7a8ec3a03e48c69991ca7f20f10dd6f022 | 2013-12-14 03:01:35+01:00 |
configure: remove git url check
This part of the script doesn't check if git command is available and produce error if not.
It is 2 years since address changed and it is more reasonable to remove it than fix it.
Signed-off-by: Lukasz Marek <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| ff8def21313ad91cdbe5cbdb687cdd7645025fd5 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ff8def21313ad91cdbe5cbdb687cdd7645025fd5 | 2013-12-29 12:48:13+01:00 |
wtvdec: when testing for truncated files, actually check the .wtv file size
Previously the demuxer was testing against avio_tell, and this would generate
many false warnings.
Signed-off-by: Peter Ross <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 8baaa924bd42977c1f5c4aae0fe24985afb52a87 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8baaa924bd42977c1f5c4aae0fe24985afb52a87 | 2013-12-21 11:45:14+01:00 |
avcodec/g2meet: check the return code of ff_set_dimensions()
This is currently redundant as the checks before it are tighter than
the checks in ff_set_dimensions() but its more robust not to depend
on that.
Fixes CID1135739
Signed-off-by: Michael Niedermayer <[email protected]>
| 3af9d8269ea2878fb7960ab5ed52f4a75c73e6ec | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3af9d8269ea2878fb7960ab5ed52f4a75c73e6ec | 2013-12-10 18:34:52+01:00 |
avcodec/hevc: calculate checksum only if AV_EF_EXPLODE is set
This avoids a slowdown with the default of enabled CRC checks
Signed-off-by: Michael Niedermayer <[email protected]>
| 758b6d39f685a510f48ff9e4c05fffa859d23c42 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/758b6d39f685a510f48ff9e4c05fffa859d23c42 | 2013-10-27 22:31:04+01:00 |
error resilience: check error_concealment, not err_recognition.
err_recognition is supposed to trigger detecting and reporting errors,
not trying to fix them.
| f354f30836a3148275ce60d19bbc581310249ad2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f354f30836a3148275ce60d19bbc581310249ad2 | 2013-10-28 07:22:11+01:00 |
Revert "avcodec/hevc: calculate checksum only if AV_EF_EXPLODE is set"
This reverts commit 758b6d39f685a510f48ff9e4c05fffa859d23c42.
Requested-by: smarter
"now that http://git.videolan.org/?p=ffmpeg.git;a=commit;h=97de206b44a48da726807cc3e7b9448a8112760b
has been merged, http://git.videolan.org/?p=ffmpeg.git;a=commit;h=758b6d39f685a510f48ff9e4c05fffa859d23c42
could be reverted, this would reduce the delta with libav
(and it makes sense)"
| f1783c05f1398b7a08f16f6aafbcf38a5323e770 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f1783c05f1398b7a08f16f6aafbcf38a5323e770 | 2013-12-04 11:46:31+01:00 |
avutil: reintroduce lls1 as the 52 ABI needs it
lls1 taken from ff130d7
This is incompatible with libavcodec version
55.18.100 to 55.43.100 except 55.39.101
This incompatibility is caused by these libavcodec versions depending on
a libavutil 52 which is ABI incompatible with the previous ABI 52
you can avoid this incompatibility by upgrading your libavcodec so it
does no longer depend on the invalid ABI
See: 502ab21af0ca68f76d6112722c46d2f35c004053
See: cc6714bb16b1f0716ba43701d47273dbe9657b8b
See: 41578f70cf8aec8e7565fba1ca7e07f3dc46c3d2
See: Ticket3136
Tested-by: marillat
Signed-off-by: Michael Niedermayer <[email protected]>
| b382d09d29be90e0947295a70cdcbaa60b9030b8 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b382d09d29be90e0947295a70cdcbaa60b9030b8 | 2013-11-17 16:44:32+01:00 |
hevc: Search start code in decode_nal_units().
User may cut off a weird position and send a packet from there.
This avoids returning as invalid data immediately.
| f7f88018393b96ae410041e9a0fc51f4c082002e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f7f88018393b96ae410041e9a0fc51f4c082002e | 2013-10-27 10:43:14+01:00 |
lavf/segment: simplify logic and fix !=0 check on segment_end return value
A successfull return value can be > 0.
| 1120fd7852cb7c2d1fdc60db4901ce41062b0f20 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1120fd7852cb7c2d1fdc60db4901ce41062b0f20 | 2013-10-15 15:17:22+02:00 |
avcodec: use designated initializers for bitstream filters
Signed-off-by: Paul B Mahol <[email protected]>
| 2490996f38e02da28397631b11c6b3db8ba25934 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/2490996f38e02da28397631b11c6b3db8ba25934 | 2013-10-02 17:20:29+00:00 |
x86inc: Check for __OUTPUT_FORMAT__ having a value of "x64"
This is also a valid value for WIN64.
Signed-off-by: Derek Buitenhuis <[email protected]>
| 47f9d7ce5493e119e09d1227d017414feaaf8d97 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/47f9d7ce5493e119e09d1227d017414feaaf8d97 | 2013-10-07 06:27:08-04:00 |
avformat/omadec: simplify checks in nprobe()
Signed-off-by: Michael Niedermayer <[email protected]>
| fb45de779c8db142b44bf7b00c535ea2eee4f148 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/fb45de779c8db142b44bf7b00c535ea2eee4f148 | 2013-09-24 00:29:02+02:00 |
pngdec: Stop trying to decode once inflate returns Z_STREAM_END
If the input buffer contains more data after the deflate stream,
the loop previously left running infinitely, with inflate returning
Z_STREAM_END.
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: [email protected]
Signed-off-by: Martin Storsjö <[email protected]>
| a81cad8f86d1feb7e4bfae29e43f3e994935a5c7 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/a81cad8f86d1feb7e4bfae29e43f3e994935a5c7 | 2013-09-29 20:01:03+03:00 |
zmbvdec: Check the buffer size for uncompressed data
Also don't pointlessly set the buffer size to 1 after copying
one packet.
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: [email protected]
Signed-off-by: Martin Storsjö <[email protected]>
| 0d61f260010707f3028b818e8b24598e1a83d696 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0d61f260010707f3028b818e8b24598e1a83d696 | 2013-09-12 10:53:39+03:00 |
avcodec/smacker: use the correct field instead of a hardcoded value for the index check in smacker_decode_tree()
Signed-off-by: Michael Niedermayer <[email protected]>
| 59a08d193963ba3455b8c8b8a7b1b620e13b8e8f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/59a08d193963ba3455b8c8b8a7b1b620e13b8e8f | 2013-09-12 16:17:32+02:00 |
avfilter/vf_traspose: move switch out of loop
Signed-off-by: Paul B Mahol <[email protected]>
| 99a283331c8ee63ff9fa92aa551f2a827e6fae2b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/99a283331c8ee63ff9fa92aa551f2a827e6fae2b | 2013-09-11 15:02:08+00:00 |
Fix make checkheaders for wavpackenc.h
| b970f85564ba6b5c17a8d642bb8161119011e7bd | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b970f85564ba6b5c17a8d642bb8161119011e7bd | 2013-08-31 13:34:46+02:00 |
x86: Add and use more convenience macros to check CPU extension availability
| 79aec43ce813a3e270743ca64fa3f31fa43df80b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/79aec43ce813a3e270743ca64fa3f31fa43df80b | 2013-08-29 13:07:37+02:00 |
avconv: support -t as an input option.
It limits the duration of the data read from a given input.
| 488a0fa68973d48e264d54f1722f7afb18afbea7 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/488a0fa68973d48e264d54f1722f7afb18afbea7 | 2013-08-05 10:54:19+02:00 |
avcodec/libxvid: Partially check plugins array size with assert
Signed-off-by: Michael Niedermayer <[email protected]>
| 1ccc2157ff46ddab44357f2ca2f312ffc593ed22 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/1ccc2157ff46ddab44357f2ca2f312ffc593ed22 | 2013-08-05 15:06:04+02:00 |
avformat/utils: assert position monotonicity in ff_find_last_ts()
This ensures that no read timestamp functions finds packets before the search window in ff_find_last_ts()
which could cause an infinite loop
Signed-off-by: Michael Niedermayer <[email protected]>
| e5c338ba7abd086b54021da885dc3b451927f4d5 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e5c338ba7abd086b54021da885dc3b451927f4d5 | 2013-09-04 01:45:13+02:00 |
indeo4: Check the quantization matrix index
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: [email protected]
| 6255ccf7d51c82ab79bf0cd47a921f572dda4489 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/6255ccf7d51c82ab79bf0cd47a921f572dda4489 | 2013-07-13 19:11:18+02:00 |
avcodec/x86/cabac: factorize broken llvm/clang check out
Signed-off-by: Michael Niedermayer <[email protected]>
| 32de28053d23fe70a1b99e143757494a4ef15d07 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/32de28053d23fe70a1b99e143757494a4ef15d07 | 2013-07-06 16:24:27+02:00 |
westwood_vqa: check return value of av_malloc()
Signed-off-by: Paul B Mahol <[email protected]>
| e1b0d3a389ff7050c66f43891539200eddf4af15 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e1b0d3a389ff7050c66f43891539200eddf4af15 | 2013-07-01 22:15:25+00:00 |
jpeg2000: Validate resolution levels
There are 32 maximum decomposition levels, thus 33 resolution levels.
Signed-off-by: Luca Barbato <[email protected]>
| 5650e331a733711b809bc27f968500f0f5530126 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5650e331a733711b809bc27f968500f0f5530126 | 2013-07-02 20:05:43+02:00 |
4xm: check for invalid zero ac coeffs
Signed-off-by: Michael Niedermayer <[email protected]>
| 13c56e9a9cf18f33bcbc2dc1a5cf2a5f98ca9702 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/13c56e9a9cf18f33bcbc2dc1a5cf2a5f98ca9702 | 2013-06-30 01:35:22+02:00 |
rtpproto: Check the source IP if one single source has been specified
If another peer is sending unicast packets to the same port that
we are listening on, those packets can end up being received despite
using source specific multicast. For those cases, manually check the
source address of received packets against the intended source address.
This only handles the case when the source list is one single IP
address for now, which probably is the most common case.
Based on a patch by Ed Torbett.
Signed-off-by: Martin Storsjö <[email protected]>
| 4d97ca040b40eb4771d1a6cacdb611f61a53afd8 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/4d97ca040b40eb4771d1a6cacdb611f61a53afd8 | 2013-07-19 12:02:09+03:00 |
ff_gen_search: fix limit
The limit value could become slightly wrong in the last iteration
Signed-off-by: Michael Niedermayer <[email protected]>
| b3dd50cd0dbbda08610b75384128f5f47f5199d9 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b3dd50cd0dbbda08610b75384128f5f47f5199d9 | 2013-06-18 20:49:37+02:00 |
wavpack: check that all the channels were coded.
| 89806691b1c39181c63d95e0fddc30f11e2a7b04 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/89806691b1c39181c63d95e0fddc30f11e2a7b04 | 2013-05-28 17:47:24+02:00 |
lavd/v4l2enc: check write return value.
| 9a7f1519aac404104a74e10439a077c9a7b98c61 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/9a7f1519aac404104a74e10439a077c9a7b98c61 | 2013-05-20 16:33:21+02:00 |
av_d2q: fix rounding for negative values
Signed-off-by: Michael Niedermayer <[email protected]>
| 64eacb839e0d1bde1b55d94d2ff5477d497e6d75 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/64eacb839e0d1bde1b55d94d2ff5477d497e6d75 | 2013-05-25 16:04:08+02:00 |
lavf/concatdec: remove invalid check for AVSEEK_FLAG_BACKWARD.
| d608a27d9e28d24ab56acc4ea6bfb13b2802035c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d608a27d9e28d24ab56acc4ea6bfb13b2802035c | 2013-05-04 14:11:53+02:00 |
eamad: Check against minimum supported dimensions
Fixes out of array reads
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| e756635964ed3aa1ee997465f9b46143bcb5d894 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e756635964ed3aa1ee997465f9b46143bcb5d894 | 2013-05-03 23:17:37+02:00 |
lavfi: add 'enable' command injection to filters supporting timeline.
| 38853169ce49530bf021dfa1fd4a05e4c886c896 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/38853169ce49530bf021dfa1fd4a05e4c886c896 | 2013-04-23 01:02:28+02:00 |
ffmpeg: limit non monotone workaround to audio & video streams
Signed-off-by: Michael Niedermayer <[email protected]>
| ee3824f6f6968a3917ba7ed1906d00f6e2df258e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ee3824f6f6968a3917ba7ed1906d00f6e2df258e | 2013-05-03 14:55:12+02:00 |
ppc: util_altivec: Surround AltiVec-related code by appropriate ifdefs
This prevents non-AltiVec-enabled compilers from choking.
| f5eecee865a731d2412fde2f73c29f8f8115c499 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/f5eecee865a731d2412fde2f73c29f8f8115c499 | 2013-04-30 12:19:44+02:00 |
lavc: check decoded subtitles encoding.
Address trac ticket #2431.
| 70feca926b93f339cb58c340550e9a2367263bf7 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/70feca926b93f339cb58c340550e9a2367263bf7 | 2013-04-24 19:41:27+02:00 |
lavfi/af_atempo: simplify request_frame loop.
| d38c173dfb4bbee19ec341202c6c79bb0aa2cdad | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d38c173dfb4bbee19ec341202c6c79bb0aa2cdad | 2013-04-03 17:44:10+02:00 |
lavfi/volume: use designated initializers for the sample_fmts declaration.
| 01b2d1288ae3aed39892b15b7e2cf4a5cd54c50f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/01b2d1288ae3aed39892b15b7e2cf4a5cd54c50f | 2013-03-31 11:58:20+02:00 |
avformat/mux: set avoid_negative_ts based on flags if not overridden by user or muxer
This changes the default to avoid negative timestamps.
Signed-off-by: Michael Niedermayer <[email protected]>
| eba33396f007dc373678adea6c1a4b1a50373263 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/eba33396f007dc373678adea6c1a4b1a50373263 | 2013-04-26 14:51:47+02:00 |
dfa: check for invalid access in decode_wdlt().
This can happen when the number of skipped lines is not consistent with
the number of coded lines.
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: [email protected]
| 3623589edc7b1257bb45aa9e52c9631e133f22b6 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3623589edc7b1257bb45aa9e52c9631e133f22b6 | 2013-04-04 07:54:07+02:00 |
x86: sbrdsp: implement SSE qmf_deint_bfly
From 312 to 89/68 (sse/sse2) cycles on Arrandale and Win64.
Sandybridge: 68/47 cycles.
Having a loop counter is a 7 cycle gain.
Unrolling is another 7 cycle gain.
Working in reverse scan is another 6 cycles.
Signed-off-by: Michael Niedermayer <[email protected]>
| e2946e5c3482ab78913bfa5527a6fa9ea4e70bb4 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/e2946e5c3482ab78913bfa5527a6fa9ea4e70bb4 | 2013-04-08 02:26:34+02:00 |
wmv2: Use emu edge mode when the edge is too small
Fixes out of array read
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 76e6b1eba1feb5fc9d2ee70962914faff0228db2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/76e6b1eba1feb5fc9d2ee70962914faff0228db2 | 2013-03-28 21:50:53+01:00 |
lavfi/avcodec: fix API version checks
Signed-off-by: Michael Niedermayer <[email protected]>
| ed69c69a016eecfff9f9da86cb1055037130ecaf | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ed69c69a016eecfff9f9da86cb1055037130ecaf | 2013-03-13 22:18:02+01:00 |
vp8: WebP decoding support
VP8L, padding and bounds checks by Pascal Massimino
Reviewed-by: Pascal Massimino <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 076c1c956c55887ca63a797baf0143f56dd30879 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/076c1c956c55887ca63a797baf0143f56dd30879 | 2013-03-22 14:57:56+01:00 |
mss2dsp/upsample_plane: fix 0x0 handling
Fixes invalid memcpy and out of array accesses
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 7bab631f7df55b361368296f125b95a1814bc18c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7bab631f7df55b361368296f125b95a1814bc18c | 2013-03-06 01:38:26+01:00 |
mp3dec: Fix VBR bit rate parsing
When parsing the Xing/Info tag, don't set the bit rate if it's an Info tag.
When parsing the stream, don't override the bit rate if it's already set,
otherwise calculate the mean bit rate from parsed frames. This way, the bit
rate will be set correctly both for CBR and VBR streams.
CC:[email protected]
Signed-off-by: Anton Khirnov <[email protected]>
| eae0879d961b78717dd2a0899809ad22819ae9e3 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/eae0879d961b78717dd2a0899809ad22819ae9e3 | 2013-03-08 07:32:11+01:00 |
roqvideodec: fix a potential infinite loop in roqvideo_decode_frame().
When there is just 1 byte remanining in the buffer, nothing will be read
and the loop will continue forever. Check that there are at least 8
bytes, which are always read at the beginning.
CC:[email protected]
| 3e2f200237af977b9253b0aff121eee27bcedb44 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3e2f200237af977b9253b0aff121eee27bcedb44 | 2013-03-08 08:11:35+01:00 |
Revert "lavf/concatdec: define "ffcat" and "ffconcat" extensions"
This reverts commit 6cc12353a88dfb21c4c5a38e6c83280483b0ec88.
Conflicts:
libavformat/version.h
Allowing to automatically select the concat demuxer raises
security concerns, as it allows a possibly hostile file to
access any file on the system. Guessing the format based on
the file name extension does not allow to enable the safe
mode designed to avoid it.
| 3ab25e45744c738275992214e1f6f3c24deaa5a2 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/3ab25e45744c738275992214e1f6f3c24deaa5a2 | 2013-03-05 14:10:10+01:00 |
Handle an invalid extra mpeg2 picture header following a frame-encoded picture.
Signed-off-by: Michael Niedermayer <[email protected]>
| 4a6bd346373b63d13c95cc2303346b0e971f0358 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/4a6bd346373b63d13c95cc2303346b0e971f0358 | 2013-03-01 16:04:31+01:00 |
flicvideo: avoid an infinite loop in byte run compression
When byte_run is 0, pixel_countdown is not touched and the loop will run
forever.
CC:[email protected]
| ddfe1246d98f70cdce368a2176196ba26ed7bf2d | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ddfe1246d98f70cdce368a2176196ba26ed7bf2d | 2013-02-23 09:22:30+01:00 |
ffplay: if audio or video clock is invalid return NAN
This helps us not to make bad decision (frame dropping, audio compensation)
right after seeking when we do not know yet the recent audio or video clock.
Signed-off-by: Marton Balint <[email protected]>
| 26c208cf0ff59efd7786528884a64d35fc42e9bf | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/26c208cf0ff59efd7786528884a64d35fc42e9bf | 2013-02-27 21:34:12+01:00 |
sanm: add forgotten check for decoded_size in old_codec37()
Fixes out of array accesses
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 365270aec5c2b9284230abc702b11168818f14cf | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/365270aec5c2b9284230abc702b11168818f14cf | 2013-02-12 01:15:57+01:00 |
tiff: dont leave geotag_count in an invalid state on errors.
Fixes out of array reads
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 0e3dacb11eacf6a944691bb4a12f4dd56b6d7ce6 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0e3dacb11eacf6a944691bb4a12f4dd56b6d7ce6 | 2013-02-10 20:24:53+01:00 |
sws: dont write out of array on bigendian
Fixes Ticket2229
Signed-off-by: Michael Niedermayer <[email protected]>
| 4e2c63685e031e28d2296cff76473b963ee62ba1 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/4e2c63685e031e28d2296cff76473b963ee62ba1 | 2013-02-07 16:22:51+01:00 |
proresdsp: Fix checkheaders
It's been broken since commit ac89875
Signed-off-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| d1511c02f49e2a7faddb727e9b19da8ec6189703 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d1511c02f49e2a7faddb727e9b19da8ec6189703 | 2013-02-03 13:08:36+01:00 |
h264: Only apply error concealment if theres a frame
Without any correctly decoded slices, there can be no frame.
Fixes out of array reads
Found-by: Rafaël Carré
Signed-off-by: Michael Niedermayer <[email protected]>
| 60af6c3138dc501a647bc69b374d5d33d5d86ab5 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/60af6c3138dc501a647bc69b374d5d33d5d86ab5 | 2013-01-20 15:03:13+01:00 |
lavfi/showwaves: fix check on showwaves->outpicref
outpicref is not always in synch with showwaves->outpicref, which is
changed as a side effect of the call to functions.
Fix regression introduced in 5f634480d1c4ed7711a15d1be07e49177cf351c1,
+10l to me.
| 5b10c5e7e4d79750974026f39940164d10b891cb | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5b10c5e7e4d79750974026f39940164d10b891cb | 2013-01-22 20:34:29+01:00 |
rtpenc: Start the sequence numbers from a random offset
Expose the current sequence number via an AVOption - this can
be used both for setting the initial sequence number, or for
querying the current number.
Signed-off-by: Martin Storsjö <[email protected]>
| ab587f39b2201238594384ad58a4224233fb315b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ab587f39b2201238594384ad58a4224233fb315b | 2013-01-22 00:25:38+02:00 |
latmenc: Check for LOAS sync word
Write the packet unaltered if found.
Fixes ticket #1917
Signed-off-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| b454c64e0311d813fef9c22cf34f83c2ce77ab23 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/b454c64e0311d813fef9c22cf34f83c2ce77ab23 | 2013-01-17 04:55:14+01:00 |
Fix "knwon" typo and add a check in tools/patcheck
Signed-off-by: Paul B Mahol <[email protected]>
| d885cc41e526284a1534e8c689175fe6ffba60e0 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/d885cc41e526284a1534e8c689175fe6ffba60e0 | 2013-01-04 19:24:37+00:00 |
mpeg12: print error for invalid skip cases
Signed-off-by: Michael Niedermayer <[email protected]>
| 343900a14777315fe31002334141a9d9616c6022 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/343900a14777315fe31002334141a9d9616c6022 | 2012-12-31 20:55:02+01:00 |
oggdec: check memory allocation
| ba064ebe48376e199f353ef0b335ed8a39c638c5 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ba064ebe48376e199f353ef0b335ed8a39c638c5 | 2012-12-23 12:19:15+01:00 |
cmdutils: implement debug/fdebug log level update differently.
The old implementation is no longer possibly due to limitations
of the new command line parser.
Signed-off-by: Michael Niedermayer <[email protected]>
| ba4bcb191aa8b5fa66131544bf9ebf1f17ff7d9a | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/ba4bcb191aa8b5fa66131544bf9ebf1f17ff7d9a | 2012-12-20 02:38:18+01:00 |
ttadec: fix last frame handling when seeking
Using a frame count, as is done currently, does not work at all with
seeking. Instead, when the number of samples in the final frame has
been decoded, we check if only the 32-bit CRC is remaining. If so, we
assume that it is the final frame.
There is no longer a need to keep total_frames in TTAContext.
| 5778299c7ed3f82c624589bd35c82f597a8e0b64 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5778299c7ed3f82c624589bd35c82f597a8e0b64 | 2012-12-22 14:45:35-05:00 |
nutenc: avoid negative timestamps
Fixes Ticket1468
Signed-off-by: Michael Niedermayer <[email protected]>
| 5c4e2e875563576c67499120a254c63897fcb73f | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5c4e2e875563576c67499120a254c63897fcb73f | 2012-09-26 15:56:06+02:00 |
dshow: handle events in graph
Handling DirectShow events prevents infinite loops when there is an error in
the graph, such as a device being disconnected. This makes it possible for
dshow to return an error to the caller and run the cleanup code.
Based on patch by Don Moir <[email protected]>.
| 190f6135b48a97dadd7586f154640bec6468df1b | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/190f6135b48a97dadd7586f154640bec6468df1b | 2012-12-17 03:44:12-02:00 |
swfdec: check lens validity
Signed-off-by: Michael Niedermayer <[email protected]>
| c73685398dee3290dd9f67013f1cd310b7f9fb33 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/c73685398dee3290dd9f67013f1cd310b7f9fb33 | 2012-12-10 17:25:44+01:00 |
ra288: Check block align.
Fixes OOM
Fixes Ticket1893
Signed-off-by: Michael Niedermayer <[email protected]>
| 5c392bac9a11b3a2db9c0ec082695cbb2bfad430 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/5c392bac9a11b3a2db9c0ec082695cbb2bfad430 | 2012-11-24 16:38:22+01:00 |
lavfi: EBU R.128 irregular time
Correct the time interval between logged data rows to the expected
value of 100 milliseconds by naming a new loop counter variable
to be distinct from loop counters for inner loops that
inadvertently change the outer loop operation.
This suggested patch is 1 of 3 for Ticket #2144 "libavfilter ebur128
loudness inaccuracy, irregular time interval, LFE interference".
This suggested patch supersedes the contribution of January 15, 2013
in the thread “[PATCH] lavfi: EBU R.128 irreg time, ch weights, skip
LFE” which combined multiple fixes in one patch.
Reviewed-by: Clément Bœsch <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
| 24c47f00fead6ea9512e7b4f63a54068dd5efeb9 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/24c47f00fead6ea9512e7b4f63a54068dd5efeb9 | 2013-01-19 03:13:24+01:00 |
tm2: check for invalid vlcs, fix out of array read
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 31fce399425b986557ab94a2dd8305b289710f0e | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/31fce399425b986557ab94a2dd8305b289710f0e | 2012-11-17 02:09:56+01:00 |
vc1dec: do not allow field_mode to change after the first header
Fixes out of array accesses.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 7845f8d282a98d5e01aaeddfa9af698697d8874d | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/7845f8d282a98d5e01aaeddfa9af698697d8874d | 2012-11-16 04:58:46+01:00 |
h264: Check gray scale CBP, fix out of array accesses.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 8a03a60b4af46c001d5686b9303f48f6c4ebdf6c | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/8a03a60b4af46c001d5686b9303f48f6c4ebdf6c | 2012-11-18 23:02:46+01:00 |
xan: check size_segment before reading, fixes out of array read.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <[email protected]>
| 0e239b22dbbe6808ac08ca72825f734076d4dc81 | ffmpeg | devign | 0 | https://github.com/ffmpeg/ffmpeg | https://github.com/ffmpeg/ffmpeg/commit/0e239b22dbbe6808ac08ca72825f734076d4dc81 | 2012-11-12 20:50:13+01:00 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.