Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | vdpau: remove old-style decoders | Rémi Denis-Courmont | 2013-08-05 | 1 | -7/+0 |
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | Remove commented-out debug #define cruft | Diego Biurrun | 2013-05-16 | 1 | -2/+0 |
| | |||||
* | h263dec: Remove broken and disabled debug cruft | Diego Biurrun | 2013-05-15 | 1 | -8/+0 |
| | |||||
* | hwaccel: fix use with frame based multithreading | Janne Grunau | 2013-03-26 | 1 | -1/+5 |
| | | | | | | | | | | | | Allows use of AVHWAccel based decoders with frame based multithreading. The decoders will be forced into an non-concurrent mode by delaying ff_thread_finish_setup() calls after decoding of the current frame is finished. This wastes memory by unnecessarily using multiple threads and thus copies of the decoder context but allows seamless switching between hardware accelerated and frame threaded software decoding when the hardware decoder does not support the stream. | ||||
* | lavc decoders: work with refcounted frames. | Anton Khirnov | 2013-03-08 | 1 | -4/+8 |
| | |||||
* | Add missing error_resilience includes to files that use ER | Diego Biurrun | 2013-03-07 | 1 | -0/+1 |
| | |||||
* | lavc: Split out ff_hwaccel_pixfmt_list_420[] over individual codecs | Ronald S. Bultje | 2013-03-06 | 1 | -1/+12 |
| | | | | | | | | | Not all hwaccels implement all codecs, so using one single list for multiple such codecs means some codecs will be represented in the list, even though they don't actually handle that codec. Copying specific lists in each codec fixes that. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Remove unnecessary dsputil.h #includes | Diego Biurrun | 2013-02-26 | 1 | -1/+0 |
| | |||||
* | mpegvideo: split ff_draw_horiz_band(). | Anton Khirnov | 2013-02-15 | 1 | -2/+2 |
| | | | | Split out dependency on MpegEncContext. | ||||
* | error_resilience: decouple ER from MpegEncContext | Anton Khirnov | 2013-02-15 | 1 | -10/+10 |
| | |||||
* | h263: remove an unused parameter from ff_h263_decode_init_vlc | Anton Khirnov | 2013-02-06 | 1 | -1/+1 |
| | |||||
* | dsputil: drop non-compliant "fast" qpel mc functions | Mans Rullgard | 2013-01-20 | 1 | -4/+1 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | lavc: support ZenoXVID custom tag | Luca Barbato | 2013-01-17 | 1 | -1/+1 |
| | | | | | Looks like this kind of samples are produced by certain Russian equipment. | ||||
* | cosmetics: Fix dropable --> droppable typo | Diego Biurrun | 2012-12-09 | 1 | -1/+3 |
| | |||||
* | lavc: fix decode_frame() third parameter semantics for video decoders | Anton Khirnov | 2012-12-04 | 1 | -3/+3 |
| | | | | It's got_frame, not data size | ||||
* | Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormat | Anton Khirnov | 2012-10-08 | 1 | -1/+1 |
| | |||||
* | avcodec: Convert some commented-out printf/av_log instances to av_dlog | Diego Biurrun | 2012-10-01 | 1 | -1/+2 |
| | |||||
* | avcodec: Drop silly and/or broken printf debug output | Diego Biurrun | 2012-10-01 | 1 | -2/+0 |
| | |||||
* | mpeg4: support frame parameter changes with frame-mt | Janne Grunau | 2012-09-19 | 1 | -12/+13 |
| | | | | | | | Adds a flag context_reinit to MpegEncContext to relieable keep track of frame parameter changes which require a context reinitialization. This is required for broken inputs which change the frame size but error out before the context can be reinitialized. | ||||
* | MSS2 decoder | Alberto Delmás | 2012-08-31 | 1 | -1/+5 |
| | | | | Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com> | ||||
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -25/+25 |
| | |||||
* | h263: more strictly forbid frame size changes with frame-mt. | Ronald S. Bultje | 2012-05-02 | 1 | -5/+7 |
| | | | | | | | Prevents crashes because the old check was incomplete. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org | ||||
* | Remove lowres video decoding | Mans Rullgard | 2012-04-21 | 1 | -2/+1 |
| | | | | | | | This feature is complex, of questionable utility, and slows down normal decoding. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cosmetics: Align codec declarations | Martin Storsjö | 2012-04-06 | 1 | -5/+6 |
| | | | | | | | 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> | ||||
* | Replace computations of remaining bits with calls to get_bits_left(). | Alex Converse | 2012-03-05 | 1 | -1/+1 |
| | |||||
* | h263dec: Disallow width/height changing with frame threads. | Michael Niedermayer | 2012-03-02 | 1 | -2/+7 |
| | | | | | | | Fixes CVE-2011-3937 Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> | ||||
* | Replace AVFrame pointer type punning by proper struct member assignments. | Diego Biurrun | 2012-03-01 | 1 | -3/+3 |
| | |||||
* | mpegvideo: Add ff_ prefix to nonstatic functions | Martin Storsjö | 2012-02-15 | 1 | -12/+12 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | msmpeg4: Add ff_ prefix to nonstatic symbols | Martin Storsjö | 2012-02-15 | 1 | -2/+2 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | dsputil: Add ff_ prefix to the dsputil*_init* functions | Martin Storsjö | 2012-02-15 | 1 | -1/+1 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | h263: Add ff_ prefix to nonstatic symbols | Martin Storsjö | 2012-02-15 | 1 | -2/+2 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | mpegvideo: remove abort() in ff_find_unused_picture() | Andrey Utkin | 2011-12-14 | 1 | -0/+2 |
| | | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org> | ||||
* | lavc: introduce ER_MB_END and ER_MB_ERROR | Luca Barbato | 2011-12-13 | 1 | -7/+7 |
| | | | | | | Simplify a little error resilience calls Signed-off-by: Luca Barbato <lu_zero@gentoo.org> | ||||
* | error_resilience: use the ER_ namespace | Luca Barbato | 2011-12-13 | 1 | -8/+8 |
| | | | | | | Add the namespace to {AC_,DC_,MV_}{END,ERROR} macros Signed-off-by: Luca Barbato <lu_zero@gentoo.org> | ||||
* | doxygen: misc consistency, spelling and wording fixes | Diego Biurrun | 2011-12-12 | 1 | -1/+1 |
| | |||||
* | lavc: convert error_recognition to err_recognition. | Dustin Brody | 2011-12-12 | 1 | -1/+1 |
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | lavc: replace references to deprecated AVCodecContext.error_recognition to ↵ | Dustin Brody | 2011-10-22 | 1 | -1/+1 |
| | | | | | | use AVCodecContext.err_recognition Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | Windows Media Image decoder (WMVP/WVP2) | Alberto Delmás | 2011-08-23 | 1 | -0/+2 |
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | h263dec: Fix asserts broken by the elimination of FF_COMMON_FRAME. | Alex Converse | 2011-08-03 | 1 | -2/+2 |
| | |||||
* | lavc: use designated initialisers for all codecs. | Anton Khirnov | 2011-07-29 | 1 | -9/+8 |
| | | | | It's more readable and less prone to breakage. | ||||
* | h263dec: Propagate AV_LOG_ERRORs from slice decoding through frame decoding ↵ | Dustin Brody | 2011-07-28 | 1 | -3/+3 |
| | | | | | | with sufficient error recognition Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | Eliminate FF_COMMON_FRAME macro. | Diego Biurrun | 2011-07-11 | 1 | -3/+3 |
| | | | | | FF_COMMON_FRAME holds the contents of the AVFrame structure and is also copied to struct Picture. Replace by an embedded AVFrame structure in struct Picture. | ||||
* | H264/MPEG frame-level multi-threading. | Alexander Strange | 2011-06-02 | 1 | -0/+8 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | Remove h263_msmpeg4 from MpegEncContext. | Alex Converse | 2011-05-25 | 1 | -7/+1 |
| | | | | It was long ago superseded by msmpeg4_version. | ||||
* | Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*. | Stefano Sabatini | 2011-05-02 | 1 | -11/+11 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | Remove some disabled printf debug cruft. | Diego Biurrun | 2011-04-29 | 1 | -8/+0 |
| | |||||
* | lavc: remove FF_API_HURRY_UP cruft | Anton Khirnov | 2011-04-26 | 1 | -8/+0 |
| | |||||
* | lavc: mark hurry_up for removal on next major bump | Anton Khirnov | 2011-04-02 | 1 | -1/+5 |
| | | | | | It has been deprecated for about five years, skip_idct/skip_frame should be used instead. | ||||
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -4/+4 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf. | Diego Elio Pettenò | 2011-01-26 | 1 | -1/+1 |
| | | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> |