Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | prores: move data shared between decoder and encoder to common file | Kostya Shishkov | 2012-02-15 | 4 | -62/+120 |
| | |||||
* | prores: fix multithreaded decoding case when slice quantisers are not the same | Kostya Shishkov | 2012-02-15 | 1 | -11/+12 |
| | | | | | | Since quantisation matrices are stored in context, decoding slices with different quantisers in parallel leads to unpredictable content of aforementioned matrices and wrong output picture thereof. | ||||
* | CDXL demuxer and decoder | Paul B Mahol | 2012-02-14 | 5 | -1/+282 |
| | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | rv30: check block type validity | Janne Grunau | 2012-02-14 | 1 | -1/+1 |
| | | | | | Prevents crashes with the fuzzed samples from bugs 88, 89 and 125 after "golomb: avoid infinite loop on all-zero input". | ||||
* | ttadec: CRC checking | Paul B Mahol | 2012-02-14 | 1 | -0/+33 |
| | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com> | ||||
* | rv34: handle size changes during frame multithreading | Janne Grunau | 2012-02-14 | 1 | -64/+82 |
| | | | | | Factors all context dynamic memory handling to its own functions. Fixes bug 220. | ||||
* | rv40: prevent undefined signed overflow in rv40_loop_filter() | Janne Grunau | 2012-02-14 | 1 | -2/+3 |
| | |||||
* | rv34: use AVERROR return values in ff_rv34_decode_frame() | Janne Grunau | 2012-02-14 | 1 | -4/+8 |
| | | | | Also adds an error message. | ||||
* | rv34: use uint16_t for RV34DecContext.deblock_coefs | Janne Grunau | 2012-02-14 | 1 | -1/+1 |
| | | | | It is used as bitfield with 16 entries. | ||||
* | Drop unnecessary av_uninit attributes from some variable declarations. | Diego Biurrun | 2012-02-13 | 6 | -10/+8 |
| | | | | Recent versions of gcc (4.4+) no longer give false positive warnings. | ||||
* | Move PS2 MMI code below the mips subdirectory, where it belongs. | Diego Biurrun | 2012-02-13 | 8 | -10/+10 |
| | | | | | Also give a more suitable name to the MMI-optimized IDCT; it is not PS2-specific, as the name currently suggests. | ||||
* | mips: Move MMI function declarations to a header. | Diego Biurrun | 2012-02-13 | 2 | -4/+8 |
| | | | | This fixes compilation with -Werror=missing-prototypes. | ||||
* | cljr: implement encode2. | Anton Khirnov | 2012-02-12 | 1 | -7/+15 |
| | |||||
* | cljr: set the properties of the coded_frame, not input frame. | Anton Khirnov | 2012-02-12 | 1 | -2/+2 |
| | |||||
* | dnxhdenc: switch to encode2. | Anton Khirnov | 2012-02-12 | 1 | -7/+12 |
| | |||||
* | bmpenc: switch to encode2(). | Anton Khirnov | 2012-02-12 | 1 | -11/+16 |
| | |||||
* | sunrast: Return AVERROR values instead of -1. | Aneesh Dogra | 2012-02-11 | 1 | -8/+9 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | sunrast: Add support for gray8 decoding. | Aneesh Dogra | 2012-02-11 | 1 | -6/+2 |
| | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | alacenc: use AVCodec.encode2() | Justin Ruggles | 2012-02-11 | 1 | -13/+17 |
| | |||||
* | alacenc: cosmetics: indentation | Justin Ruggles | 2012-02-11 | 1 | -27/+27 |
| | |||||
* | alacenc: consolidate bitstream writing into a single function. | Justin Ruggles | 2012-02-11 | 1 | -38/+33 |
| | | | | Simplifies use of verbatim mode. | ||||
* | alacenc: only encode frame size in header for a final smaller frame | Justin Ruggles | 2012-02-11 | 1 | -3/+10 |
| | | | | | Otherwise it is not needed because it matches the frame size as encoded in the extradata. | ||||
* | alacenc: store current frame size in AlacEncodeContext. | Justin Ruggles | 2012-02-11 | 1 | -13/+16 |
| | | | | This avoids an indirection and will simplify implementation of encode2() | ||||
* | alacenc: return AVERROR codes in alac_encode_frame() | Justin Ruggles | 2012-02-11 | 1 | -2/+2 |
| | |||||
* | alacenc: calculate a new max frame size for the final small frame | Justin Ruggles | 2012-02-11 | 1 | -4/+17 |
| | | | | | Gives a better estimate of buffer requirements and a better decision of whether or not to use verbatim mode. | ||||
* | alacenc: pretty-printing and other cosmetics | Justin Ruggles | 2012-02-11 | 1 | -71/+64 |
| | |||||
* | alacenc: fix error handling and potential memleaks in alac_encode_init() | Justin Ruggles | 2012-02-11 | 1 | -19/+38 |
| | |||||
* | alacenc: do not set coded_frame->key_frame | Justin Ruggles | 2012-02-11 | 1 | -1/+0 |
| | | | | It is already set in avcodec_alloc_frame() | ||||
* | alacenc: do not set bits_per_coded_sample | Justin Ruggles | 2012-02-11 | 1 | -5/+4 |
| | | | | encoded ALAC does not have a fixed number of bits per sample | ||||
* | alacenc: remove unneeded frame_size check in alac_encode_frame() | Justin Ruggles | 2012-02-11 | 1 | -5/+0 |
| | |||||
* | tta: error out if samplerate is zero. | Ronald S. Bultje | 2012-02-11 | 1 | -0/+3 |
| | | | | | | | Prevents a division by zero later on. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org | ||||
* | ttadec: fix invalid free when an error occurs while decoding 24-bit tta | Justin Ruggles | 2012-02-10 | 1 | -6/+17 |
| | |||||
* | wavpack: add needed braces for 2 statements inside an if block | Justin Ruggles | 2012-02-10 | 1 | -1/+2 |
| | |||||
* | v210enc: remove redundant check for pix_fmt | Paul B Mahol | 2012-02-10 | 1 | -5/+0 |
| | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com> | ||||
* | wavpack: allow user to disable CRC checking | Paul B Mahol | 2012-02-10 | 1 | -16/+21 |
| | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com> | ||||
* | v210enc: Use Bytestream2 functions | Aneesh Dogra | 2012-02-10 | 1 | -10/+11 |
| | | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com> | ||||
* | Check AVCodec.pix_fmts in avcodec_open2() | Paul B Mahol | 2012-02-10 | 1 | -0/+10 |
| | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com> | ||||
* | svq3: Prevent illegal reads while parsing extradata. | Alex Converse | 2012-02-10 | 1 | -5/+14 |
| | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind | ||||
* | remove ParseContext1 | Rafaël Carré | 2012-02-10 | 2 | -22/+0 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | vc1: use ff_parse_close | Rafaël Carré | 2012-02-10 | 1 | -1/+1 |
| | | | | | | It works as long as ParseContext is the first member of the private struct Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | mpegvideo parser: move specific fields into private context | Rafaël Carré | 2012-02-10 | 1 | -4/+12 |
| | | | | | | This obviates using ParseContext1, which is slated for removal. Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | mpeg4video parser: move specific fields into private context | Rafaël Carré | 2012-02-10 | 1 | -9/+11 |
| | | | | | | This obviates using ParseContext1, which is slated for removal. Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | cavs parser: fix parser context type | Rafaël Carré | 2012-02-10 | 1 | -2/+2 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | 4xm, timefilter: K&R formatting cosmetics | Yordan Makariev | 2012-02-10 | 1 | -423/+475 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | h264: disallow constrained intra prediction modes for luma. | Ronald S. Bultje | 2012-02-09 | 5 | -9/+9 |
| | | | | | | | | | | | Conversion of the luma intra prediction mode to one of the constrained ("alzheimer") ones can happen by crafting special bitstreams, causing a crash because we'll call a NULL function pointer for 16x16 block intra prediction, since constrained intra prediction functions are only implemented for chroma (8x8 blocks). Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org | ||||
* | dv: Move tables from dvdata.h to dvdata.c | Alex Converse | 2012-02-09 | 2 | -39/+38 |
| | |||||
* | dv: Move a table used only by the demuxer out of a shared header. | Alex Converse | 2012-02-09 | 1 | -4/+0 |
| | |||||
* | dv: Move functions used only by the encoder out of a shared header. | Alex Converse | 2012-02-09 | 2 | -35/+35 |
| | |||||
* | dv: Split dvdata.h into dvdata.h and dvquant.h | Alex Converse | 2012-02-09 | 3 | -125/+158 |
| | |||||
* | avcodec: set avpkt->size to 0 if encode2() did not output a packet | Justin Ruggles | 2012-02-09 | 1 | -0/+2 |
| |