summaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Collapse)AuthorAgeFilesLines
* h264chroma: Remove duplicate 9/10 bit functionsRonald S. Bultje2013-02-192-17/+7
| | | | | | | These functions do the same thing in 16 bit space and don't need any depth specific clipping. Signed-off-by: Martin Storsjö <martin@martin.st>
* vp56: Remove clear_blocks call, and clear alpha plane U/V DC onlyRonald S. Bultje2013-02-191-2/+5
| | | | | | | | The non-alpha and alpha-Y planes are cleared in the idct_put/add() calls. For the alpha U/V planes, we only care about the DC for entropy context prediction purposes, the rest of the data is unused. Signed-off-by: Martin Storsjö <martin@martin.st>
* x86: dsputil: Fix h263 loop filter link error in some configurationsDaniel Kang2013-02-183-162/+189
| | | | | | | This was caused by unconditionally referencing a conditionally compiled table. Now the code is also compiled conditionally. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* x86: dsputil: int --> ptrdiff_t for ff_put_pixels16_mmxext line_size paramDaniel Kang2013-02-181-1/+1
| | | | | | | This avoids SIMD-optimized functions having to sign-extend their line size argument manually to be able to do pointer arithmetic. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* svq3: unbreak decodingMatti Hamalainen2013-02-181-4/+6
| | | | a7d2861d36756b913e85681b86ed3385274e8ced removed necessary braces.
* build: make audio_frame_queue a stand-alone componentLuca Barbato2013-02-171-14/+11
| | | | | Encoders requiring it have the dependency expressed in the configure.
* build: The libopencore-amrnb encoder depends on audio_frame_queueDiego Biurrun2013-02-171-1/+1
| | | | | CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* libopencore-amrwb: Make AMR-WB ifdeffery more preciseDiego Biurrun2013-02-171-2/+2
| | | | | | | | The library might provide an encoder in the future, so it's better to check for the presence of the decoder rather than just the library. CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* libopencore-amr: Conditionally compile decoder and encoder bitsDiego Biurrun2013-02-171-1/+5
| | | | | CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* libopencore-amrnb: cosmetics: Group all encoder-related code togetherDiego Biurrun2013-02-171-44/+44
| | | | | CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* dsputil: convert remaining op_pixels_funcLuca Barbato2013-02-173-5/+5
| | | | | | Convert to diffptr_t the line_size parameters still int. Remove all the warnings in dsputil.c
* roqvideodec: check dimensions validityMichael Niedermayer2013-02-171-0/+7
| | | | | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 3ae610451170cd5a28b33950006ff0bd23036845) Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit fee26d352a52eb9f7fcd8d9167fb4a5ba015b612) CC: libav-stable@libav.org Signed-off-by: Reinhard Tartler <siretart@tauware.de>
* vqavideo: check chunk sizes before reading chunksMichael Niedermayer2013-02-171-0/+12
| | | | | | | | | | | | | | | Fixes out of array writes Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit ab6c9332bfa1e20127a16392a0b85a4aa4840889) Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 13093f9767b922661132a3c1f4b5ba2c7338b660) CC: libav-stable@libav.org Signed-off-by: Reinhard Tartler <siretart@tauware.de>
* qdm2: check array index before use, fix out of array accessesMichael Niedermayer2013-02-171-0/+5
| | | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit a7ee6281f7ef1c29284e3a4cadfe0f227ffde1ed) CC: libav-stable@libav.org Signed-off-by: Reinhard Tartler <siretart@tauware.de>
* error_resilience: add required headers.Anton Khirnov2013-02-171-0/+5
|
* h264: deMpegEncContextizeAnton Khirnov2013-02-1534-1718/+2162
| | | | | | | | | | | | | | | | | | | | | | | | | | | Most of the changes are just trivial are just trivial replacements of fields from MpegEncContext with equivalent fields in H264Context. Everything in h264* other than h264.c are those trivial changes. The nontrivial parts are: 1) extracting a simplified version of the frame management code from mpegvideo.c. We don't need last/next_picture anymore, since h264 uses its own more complex system already and those were set only to appease the mpegvideo parts. 2) some tables that need to be allocated/freed in appropriate places. 3) hwaccels -- mostly trivial replacements. for dxva, the draw_horiz_band() call is moved from ff_dxva2_common_end_frame() to per-codec end_frame() callbacks, because it's now different for h264 and MpegEncContext-based decoders. 4) svq3 -- it does not use h264 complex reference system, so I just added some very simplistic frame management instead and dropped the use of ff_h264_frame_start(). Because of this I also had to move some initialization code to svq3. Additional fixes for chroma format and bit depth changes by Janne Grunau <janne-libav@jannau.net> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* mpegvideo: split ff_draw_horiz_band().Anton Khirnov2013-02-1512-62/+84
| | | | Split out dependency on MpegEncContext.
* error_resilience: decouple ER from MpegEncContextAnton Khirnov2013-02-1515-335/+431
|
* svq3: remove a pointless if()Anton Khirnov2013-02-151-122/+120
| | | | The H264 context is always uninitialized at this point.
* h264: remove a pointless if()Anton Khirnov2013-02-151-65/+63
| | | | !encoding is always true, we do not have a H.264 encoder
* h264: simplify calls to ff_er_add_slice().Anton Khirnov2013-02-151-10/+8
| | | | partitioned_frame is never set for h264 (as easily seen from git grep).
* get_buffer(): do not initialize the data.Anton Khirnov2013-02-151-1/+0
| | | | | There may be more decoders that rely on this. Those should be found and fixed.
* sparc: dsputil: Simplify high_bit_depth checksDiego Biurrun2013-02-151-5/+2
|
* h264idct: Replace duplicate scan8 table by appropriate #includeDiego Biurrun2013-02-151-19/+1
|
* dsputil: Move STRIDE_ALIGN macro to the only place it is usedDiego Biurrun2013-02-132-6/+7
|
* ws-snd1: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-19/+7
|
* wmavoice: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-13/+8
|
* wmaenc: alloc/free coded_frame instead of keeping it in the WMACodecContextJustin Ruggles2013-02-123-6/+10
|
* wma: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-8/+5
|
* wmapro: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-14/+7
|
* wavpack: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-10/+4
|
* vorbis: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-11/+7
|
* vmdaudio: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-10/+7
|
* twinvq: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-9/+5
|
* tta: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-12/+8
|
* truespeech: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-9/+5
|
* tak: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-11/+8
|
* smackaud: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-17/+6
|
* sipr: decode directly to the user-provided AVFrameJustin Ruggles2013-02-122-10/+6
|
* shorten: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-9/+5
|
* s302m: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-26/+8
|
* ra288: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-9/+5
|
* ra144: decode directly to the user-provided AVFrameJustin Ruggles2013-02-122-9/+5
|
* ralf: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-12/+7
|
* qdm2: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-10/+5
|
* qcelp: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-9/+5
|
* pcm-bluray: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-23/+6
|
* nellymoser: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-9/+5
|
* mpc7/8: decode directly to the user-provided AVFrameJustin Ruggles2013-02-123-17/+10
|
* mpegaudio: decode directly to the user-provided AVFrameJustin Ruggles2013-02-121-20/+20
|
OpenPOWER on IntegriCloud