summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Collapse)AuthorAge
...
* amrwb: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* amrnb: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* als: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* alac: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* adxenc: alloc/free coded_frame instead of keeping it in the ADXContextJustin Ruggles2013-02-12
|
* adx: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* adpcm: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* ac3: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* aac: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* 8svx: decode directly to the user-provided AVFrameJustin Ruggles2013-02-12
|
* x86: mpeg4qpel: Make movsxifnidn do the right thingDaniel Kang2013-02-11
| | | | | | | Fixes an instruction that does nothing by changing the source to dword. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* h264: Copy h264chroma dsp context to slice thread copiesMartin Storsjö2013-02-11
| | | | | | | This fixes slice threading which seems to have been broken since 79dad2a93. Signed-off-by: Martin Storsjö <martin@martin.st>
* avcodec/rectangle: Remove nonsense assertDiego Biurrun2013-02-11
|
* libfdk-aacenc: Actually check for upper bounds of cutoffDerek Buitenhuis2013-02-11
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* sparc: dsputil_vis: Fix silly variable name search and replace typoDiego Biurrun2013-02-10
|
* mss4, ra288: Remove unused DSPContext local codec context membersDiego Biurrun2013-02-09
|
* dsputil: Move fdct function declarations to dct.hDiego Biurrun2013-02-09
|
* dsputil: Move LOCAL_ALIGNED macros to libavutilDiego Biurrun2013-02-08
|
* dsputil: Move WRAPPER8_16_SQ macro to the only place it is usedDiego Biurrun2013-02-08
|
* dsputil: Move rnd_avg inline functions to a separate headerDiego Biurrun2013-02-08
|
* dsputil: Remove commented-out, unused function declarationsDiego Biurrun2013-02-08
|
* dsputil: Move ff_shrink* function declarations to separate headerDiego Biurrun2013-02-07
|
* dsputil: Move ff_svq3 function declarations to a separate headerDiego Biurrun2013-02-07
|
* dsputil: Move ff_h264_idct function declarations to a separate headerDiego Biurrun2013-02-07
|
* dsputil: Move copy_block functions to a separate headerDiego Biurrun2013-02-07
|
* dsputil: Drop unused functions copy_block{2|4|16}Diego Biurrun2013-02-07
|
* indeo3: replace use of copy_block4 with put_pixelsMans Rullgard2013-02-07
| | | | | | The destination is sufficiently aligned for put_pixels here. Signed-off-by: Mans Rullgard <mans@mansr.com>
* mjpegdec: use put_pixels instead of copy_block8Mans Rullgard2013-02-07
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* dsputil: Move get_penalty_factor() to the only place it is used.Diego Biurrun2013-02-07
|
* dsputil: Move ff_block_permute to mpegvideo_encDiego Biurrun2013-02-07
|
* dsputil: x86: Fix compile errorDaniel Kang2013-02-07
| | | | | | Accidentally prefixed ff_ with cextern. Signed-off-by: Martin Storsjö <martin@martin.st>
* dsputil: x86: Convert h263 loop filter to yasmDaniel Kang2013-02-06
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* mpegvideo: remove an unused function parameterAnton Khirnov2013-02-06
|
* rv10: improve buffer size check.Anton Khirnov2013-02-06
| | | | | Check slice count and input buffer size before constructing a possibly invalid pointer, not after.
* error_resilience: remove a useless if() and FIXMEAnton Khirnov2013-02-06
| | | | pp_time is never set for h264
* h264: remove silly macrosAnton Khirnov2013-02-06
| | | | | They serve no useful purpose and wreak all kind of havoc when h264.h is included elsewhere.
* h263: remove an unused parameter from ff_h263_decode_init_vlcAnton Khirnov2013-02-06
|
* flac: add channel layout masks for streams with 7 or 8 channels.Tim Walker2013-02-06
| | | | | | | They were added to the latest FLAC specification: https://git.xiph.org/?p=flac-website.git;a=commit;h=65c199a2 Signed-off-by: Anton Khirnov <anton@khirnov.net>
* flac: don't check the number of channels before setting the channel layout.Tim Walker2013-02-06
| | | | | | This is unnecessary, as ff_flac_set_channel_layout can handle any number of channels. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* h264chroma: x86: Fix building with yasm disabledMartin Storsjö2013-02-06
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rv34: Drop now unnecessary dsputil dependenciesDiego Biurrun2013-02-06
|
* dsputil: Separate h264chromaDiego Biurrun2013-02-06
|
* mpegvideo: initialize dummy reference frames.Anton Khirnov2013-02-06
| | | | | | | Do not rely on get_buffer initializing them. Changes yadif tests (off by one in one border pixel), because yadif reads from those uninitialized lines.
* nuv: do not rely on get_buffer() initializing the frame.Anton Khirnov2013-02-06
|
* yop: initialize palette to 0Anton Khirnov2013-02-06
| | | | | | | | | | The FATE sample contains some pixels with value 0, but the palette stored in the file contains only values from 16 up. Because the default and cmdutils get_buffer() initialize the data to 0x80, they appear as gray dots. After this commit they change to black dots, which is probably still incorrect but less visible and doesn't rely on get_buffer() initializing the data.
* yop: check for input overreads.Anton Khirnov2013-02-06
| | | | CC:libav-stable@libav.org
* yop: check that extradata is large enough.Anton Khirnov2013-02-06
| | | | CC:libav-stable@libav.org
* qtrle: fix the topmost line for 1bitKostya Shishkov2013-02-06
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> CC:libav-stable@libav.org
* xxan: properly handle odd heights.Kostya Shishkov2013-02-06
| | | | | | | Duplicate the last one or two chroma lines. Signed-off-by: Anton Khirnov <anton@khirnov.net> CC:libav-stable@libav.org
* fraps: fix off-by one bug for version 1.Anton Khirnov2013-02-06
| | | | CC:libav-stable@libav.org