- Feb 09, 2017
-
-
Derek Buitenhuis authored
Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by:
Luca Barbato <lu_zero@gentoo.org>
-
- Feb 07, 2017
-
-
Derek Buitenhuis authored
Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- May 04, 2016
-
-
Vittorio Giovara authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- Oct 21, 2015
-
-
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>
-
- Jul 27, 2015
-
-
Vittorio Giovara authored
Express bitfields more simply. Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
- May 05, 2015
-
-
Andreas Cadhalpun authored
CC: libav-stable@libav.org Signed-off-by:
Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- Apr 16, 2015
-
-
Andreas Cadhalpun authored
Signed-off-by:
Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Aug 24, 2014
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- Oct 03, 2013
-
-
Diego Biurrun authored
-
- Jul 28, 2013
-
-
Luca Barbato authored
Prevent some overreads. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
-
- Mar 18, 2013
-
-
Michael Niedermayer authored
Fixes Ticket2365 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Mar 13, 2013
-
-
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 25, 2013
-
-
Diego Biurrun authored
-
- Feb 06, 2013
-
-
Anton Khirnov authored
The bottom line was invalid before. CC:libav-stable@libav.org
-
- Jan 28, 2013
-
-
Piotr Bandurski authored
-
- Jan 06, 2013
-
-
Anton Khirnov authored
-
- Dec 23, 2012
-
-
Anton Khirnov authored
-
- Dec 04, 2012
-
-
Anton Khirnov authored
It's got_frame, not data size
-
- Nov 14, 2012
-
-
Michael Niedermayer authored
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Oct 08, 2012
-
-
Anton Khirnov authored
-
- Aug 09, 2012
-
-
Paul B Mahol authored
Closes #1319. Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
Paul B Mahol authored
Closes #1619. Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- Aug 07, 2012
-
-
Anton Khirnov authored
-
- May 20, 2012
-
-
Piotr Bandurski authored
sample: http://www.datafilehost.com/download-b881f3f6.html Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- May 16, 2012
-
-
Piotr Bandurski authored
fixes ticket #1310 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- May 08, 2012
-
-
Michael Niedermayer authored
Fixes Ticket1232 Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Apr 11, 2012
-
-
Ronald Bultje authored
Signed-off-by:
Justin Ruggles <justin.ruggles@gmail.com>
-
- 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>
-
- Dec 13, 2011
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- Nov 05, 2011
-
-
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>
-
- 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.
-
- 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
-
- Apr 24, 2009
-
-
Kostya Shishkov authored
Originally committed as revision 18680 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Apr 07, 2009
-
-
Thilo Borgmann authored
AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
-