- 09 Feb, 2020 1 commit
-
-
Michael Niedermayer authored
Fixes: signed integer overflow: -2147479324 + -32568 cannot be represented in type 'int' Fixes: 20103/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_GREMLIN_DPCM_fuzzer-5667667579240448 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 11 Jun, 2017 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 04 May, 2016 1 commit
-
-
Vittorio Giovara authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 26 Oct, 2015 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 27 Jul, 2015 1 commit
-
-
Vittorio Giovara authored
Express bitfields more simply. Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
- 24 Aug, 2014 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 03 Oct, 2013 1 commit
-
-
Diego Biurrun authored
-
- 13 Mar, 2013 1 commit
-
-
Clément Bœsch authored
Coccinelle profile used: @@ expression r, ctx, f, loglevel, str, flags; @@ -if ((r = ff_get_buffer(ctx, f, flags)) < 0) { - av_log(ctx, loglevel, str); - return r; -} +if ((r = ff_get_buffer(ctx, f, flags)) < 0) + return r; @@ expression r, ctx, f, loglevel, str; @@ -if ((r = ff_reget_buffer(ctx, f)) < 0) { - av_log(ctx, loglevel, str); - return r; -} +if ((r = ff_reget_buffer(ctx, f)) < 0) + return r; @@ expression r, ctx, f, loglevel, str, flags; @@ -if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) { - av_log(ctx, loglevel, str); - return r; -} +if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) + return r; ...along with some manual patches for the remaining ones.
-
- 08 Mar, 2013 1 commit
-
-
Anton Khirnov authored
-
- 12 Feb, 2013 1 commit
-
-
Justin Ruggles authored
-
- 04 Dec, 2012 1 commit
-
-
Anton Khirnov authored
It will be useful in the upcoming transition to refcounted AVFrames.
-
- 05 Nov, 2012 1 commit
-
-
Piotr Bandurski authored
-
- 01 Nov, 2012 1 commit
-
-
Justin Ruggles authored
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 25 Mar, 2012 1 commit
-
-
Ronald S. Bultje authored
-
- 17 Feb, 2012 1 commit
-
-
Alex Converse authored
Fixes: CVE-2011-3951 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
-
- 26 Jan, 2012 1 commit
-
-
Michael Niedermayer authored
Fixes: CVE-2011-3951 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 08 Jan, 2012 1 commit
-
-
Laurentiu Ion authored
Fixes bug: #152 Signed-off-by:
Ronald S. Bultje <rsbultje@gmail.com>
-
- 16 Dec, 2011 1 commit
-
-
Michael Niedermayer authored
Bug found by: Oana Stratulat Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 02 Dec, 2011 1 commit
-
-
Justin Ruggles authored
Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders.
-
- 11 Nov, 2011 2 commits
-
-
Justin Ruggles authored
-
Justin Ruggles authored
It is already checked in avcodec_decode_audio3()
-
- 30 Sep, 2011 13 commits
-
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
Uses 'buf' directly instead of a separate iterator variable 'in'.
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
Uses the native sample format for the codec instead of left-shifting all samples by 8.
-
Justin Ruggles authored
-
Justin Ruggles authored
-
Justin Ruggles authored
Make the code easier to read.
-
- 24 Sep, 2011 1 commit
-
-
Diego Biurrun authored
-
- 19 Mar, 2011 1 commit
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 11 Feb, 2011 1 commit
-
-
Mans Rullgard authored
This avoids double semicolons after macro expansion. Signed-off-by:
Mans Rullgard <mans@mansr.com> (cherry picked from commit 44adbebe)
-
- 10 Feb, 2011 1 commit
-
-
Mans Rullgard authored
This avoids double semicolons after macro expansion. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- 28 Jan, 2011 1 commit
-
-
Diego Elio Pettenò authored
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by:
Mans Rullgard <mans@mansr.com> (cherry picked from commit d36beb3f)
-