- Sep 10, 2018
-
-
Paul B Mahol authored
Remove now unused step variable.
-
- Jan 31, 2017
-
-
Alexandra Hájková authored
-
Diego Biurrun authored
-
- Jul 27, 2015
-
-
Vittorio Giovara authored
Express bitfields more simply. Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
- Dec 31, 2014
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes Ticket1221 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Oct 03, 2013
-
-
Diego Biurrun authored
-
- Aug 21, 2013
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- Mar 13, 2013
-
-
Diego Biurrun authored
-
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.
-
- Mar 08, 2013
-
-
Anton Khirnov authored
-
- Feb 28, 2013
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Feb 24, 2013
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Feb 23, 2013
-
-
Anton Khirnov authored
CC:libav-stable@libav.org
-
- Jan 30, 2013
-
-
Piotr Bandurski authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Jan 14, 2013
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
- Jan 04, 2013
-
-
Michael Niedermayer authored
Fixes Ticket1222 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Dec 04, 2012
-
-
Anton Khirnov authored
It's got_frame, not data size
-
Anton Khirnov authored
It will be useful in the upcoming transition to refcounted AVFrames.
-
- Oct 08, 2012
-
-
Anton Khirnov authored
-
- Aug 07, 2012
-
-
Anton Khirnov authored
-
- Jul 31, 2012
-
-
Nicolas George authored
The return value was the number of bytes left, it is supposed to be the number of bytes used.
-
Nicolas George authored
Commit 2bf09826 introduced an overflow check in loco_decode_plane, but the error code is never taken into account, leading to completely idiotic return values.
-
- Apr 16, 2012
-
-
Michael Niedermayer authored
Found-by:
Clément Bœsch <ubitux@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Carl Eugen Hoyos authored
Fixes a part of ticket #1222.
-
- Apr 06, 2012
-
-
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>
-
- Mar 01, 2012
-
-
Diego Biurrun authored
-
- Nov 24, 2011
-
-
Michael Niedermayer authored
Fixes null pointer dereference / http://www.google-melange.com/gci/task/view/google/gci2011/7120335 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Jul 29, 2011
-
-
Anton Khirnov authored
It's more readable and less prone to breakage.
-
- May 07, 2011
-
-
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.
-
- Apr 22, 2011
-
-
Diego Biurrun authored
-
- Mar 19, 2011
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Jan 28, 2011
-
-
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)
-
- Jan 26, 2011
-
-
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>
-
- Apr 20, 2010
-
-
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
-
- Mar 30, 2010
-
-
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
-
- Oct 16, 2009
-
-
Carl Eugen Hoyos authored
Originally committed as revision 20252 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Oct 14, 2009
-
-
Kostya Shishkov authored
Originally committed as revision 20231 to svn://svn.ffmpeg.org/ffmpeg/trunk
-