summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 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
* aasc: fix output for msrle compression.Anton Khirnov2013-02-06
| | | | | | The bottom line was invalid before. CC:libav-stable@libav.org
* msrledec: check bounds before constructing a possibly invalid pointer,Anton Khirnov2013-02-06
| | | | CC:libav-stable@libav.org
* cmdutils: remove ansi from the list of broken codecs.Anton Khirnov2013-02-06
| | | | | It's not relying on get_buffer() initializing the frame since 99e36ddd3ee57c38e6ca9e240ba518848487f849.
* cdgraphics: do not rely on get_buffer() initializing the frame.Anton Khirnov2013-02-06
| | | | | Setting it to zero (instead of 128, as the default get_buffer() does) also produces more correctly-looking output.
* svq1: replace struct svq1_frame_size with an array.Anton Khirnov2013-02-06
| | | | It is used as an array in svq1enc, so this is more correct.
* vf_yadif: silence a warning.Anton Khirnov2013-02-06
| | | | | | | clang says: libavfilter/vf_yadif.c:192:28: warning: incompatible pointer types assigning to 'void (*)(uint8_t *, uint8_t *, uint8_t *, uint8_t *, int, int, int, int, int)' from 'void (uint16_t *, uint16_t *, uint16_t *, uint16_t *, int, int, int, int, int)'
* asf: K&R formatting cosmeticsDiego Biurrun2013-02-06
|
* vc1dec: use codec_id instead of codec_tag for VC1IMAGEVladimir Pantelic2013-02-06
| | | | | | | the rest of the code is using codec_id everywhere already Signed-off-by: Vladimir Pantelic <vladoman@gmail.com> Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* sh4: drop unused functionsLuca Barbato2013-02-05
| | | | {avg,put}_pixels4_c are not used.
* sh4: Fix silly type vs. variable name search and replace typoDiego Biurrun2013-02-05
|
* configure: Group all hwaccels together in a separate variableDiego Biurrun2013-02-05
|
* Add av_cold attributes to arch-specific init functionsDiego Biurrun2013-02-05
|
* Use ptrdiff_t instead of int for {avg, put}_pixels line_size parameter.Diego Biurrun2013-02-05
| | | | | This avoids SIMD-optimized functions having to sign-extend their line size argument manually to be able to do pointer arithmetic.
* avfilter: x86: consistent filenames for filter optimizationsDiego Biurrun2013-02-04
|
* mpegvideo: simplify REBASE_PICTUREAnton Khirnov2013-02-04
| | | | | | | | | | | Always evaluate to NULL when the source Picture is not located in the MpegEncContext.picture array. That will only happen for next/last_picture_ptr when updating the thread context during h264 frame threaded decoding, where they will point to elements of ref_list. Since ref_list is not copied during updating the context and is invalid until it is constructed for the current slice, there is no point in doing anything complicated with next/last_picture_ptr, as they will get updated when the ref_list is filled.
* vf_hqdn3d: x86: Add proper arch optimization initializationDiego Biurrun2013-02-01
|
* Use proper "" quotes for local header #includesDiego Biurrun2013-02-01
|
* ppc: fmtconvert: Drop two unused variables.Diego Biurrun2013-02-01
|
* bink demuxer: set framerate.Anton Khirnov2013-02-01
|