- 30 Oct, 2016 1 commit
-
-
Michael Niedermayer authored
Fixes out of array read Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 04 May, 2016 1 commit
-
-
Vittorio Giovara authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 21 Oct, 2015 1 commit
-
-
Vittorio Giovara authored
Callers always use a frame and cast it to AVPicture, change ff_msrle_decode() to accept an AVFrame directly instead. Signed-off-by:
Vittorio Giovara <vittorio.giovara@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>
-
- 06 Apr, 2014 1 commit
-
-
Michael Niedermayer authored
The check is possibly redundant, but better to check for errors that dont occur than to skip the check and crash Fixes CID1197060 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 11 Mar, 2014 1 commit
-
-
Carl Eugen Hoyos authored
This reverts commit 691dec62. The commit did not fix ticket #3215, it was fixed one commit earlier. The revert may break other use-cases but they should be fixed differently, the offending commit introduced too many problems. Fixes ticket #3377. Fixes ticket #3378.
-
- 16 Feb, 2014 1 commit
-
-
Michael Niedermayer authored
Fixes out of array access Fixes: 14a74a0a2dc67ede543f0e35d834fbbe-asan_heap-oob_49572c_556_cov_215466444_44_001_engine_room.mov Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 24 Dec, 2013 1 commit
-
-
Carl Eugen Hoyos authored
This reverts 0de2157f / r12272. Fixes ticket #3215. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 16 Nov, 2013 1 commit
-
-
Anton Khirnov authored
-
- 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 2 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- 25 Feb, 2013 1 commit
-
-
Diego Biurrun authored
-
- 14 Jan, 2013 1 commit
-
-
Anton Khirnov authored
-
- 04 Jan, 2013 1 commit
-
-
Michael Niedermayer authored
Fixes second file in Ticket1273 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 04 Dec, 2012 1 commit
-
-
Anton Khirnov authored
It's got_frame, not data size
-
- 14 Oct, 2012 1 commit
-
-
Michael Niedermayer authored
missed these in my previous search and replace Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 08 Oct, 2012 1 commit
-
-
Anton Khirnov authored
-
- 11 Aug, 2012 1 commit
-
-
Michael Niedermayer authored
Fixes Ticket1630 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 07 Aug, 2012 1 commit
-
-
Anton Khirnov authored
-
- 06 Aug, 2012 1 commit
-
-
Michael Niedermayer authored
Fixes Ticket1273 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 11 Apr, 2012 1 commit
-
-
Ronald Bultje authored
Signed-off-by:
Justin Ruggles <justin.ruggles@gmail.com>
-
- 06 Apr, 2012 1 commit
-
-
Martin Storsjö authored
Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- 11 Jan, 2012 1 commit
-
-
Diego Biurrun authored
-
- 05 Nov, 2011 1 commit
-
-
Reimar Döffinger authored
I am not sure these new values are correct, not am I sure the semantics are a good idea since we do not seem to make any use of them but they caused a lot of confusion, but this seems to make things closer to matching the documentation. Signed-off-by:
Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 17 Aug, 2011 1 commit
-
-
Reimar Döffinger authored
Fixes trac issue #338. Signed-off-by:
Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-
- 29 Jul, 2011 1 commit
-
-
Anton Khirnov authored
It's more readable and less prone to breakage.
-
- 15 May, 2011 1 commit
-
-
Carl Eugen Hoyos authored
-
- 12 May, 2011 1 commit
-
-
ami_stuff authored
Fix trac issue #188 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 07 May, 2011 1 commit
-
-
Stefano Sabatini authored
This is required specifically for setting frame->format to -1, otherwise it will be set to 0 = PIX_FMT_YUV420P and code reading the format from the output decoded frame will get misled. In particular fix regressions occurring with the pending vsrc_buffer patch.
-
- 15 Apr, 2011 1 commit
-
-
Kostya Shishkov authored
Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- 19 Mar, 2011 1 commit
-
-
Mans Rullgard authored
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)
-
- 26 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>
-
- 20 Apr, 2010 1 commit
-
-
Diego Biurrun authored
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 30 Mar, 2010 1 commit
-
-
Stefano Sabatini authored
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 22 Jul, 2009 1 commit
-
-
Måns Rullgård authored
Originally committed as revision 19499 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 27 May, 2009 1 commit
-
-
Baptiste Coudurier authored
Originally committed as revision 18970 to svn://svn.ffmpeg.org/ffmpeg/trunk
-