| Commit message (Expand) | Author | Age | Files | Lines |
* | Use LOCAL_ALIGNED macro for local arrays | Måns Rullgård | 2010-02-17 | 1 | -1/+1 |
* | Move CODEC_FLAG_GRAY check to outer loop | David Conrad | 2010-02-13 | 1 | -2/+3 |
* | Move branch based on custom mode outside the loop | David Conrad | 2010-02-13 | 1 | -5/+5 |
* | Directly check whether a fragment is coded for 4MV mode instead of iterating | David Conrad | 2010-02-13 | 1 | -5/+2 |
* | Eliminate fragment -> macroblock mapping array | David Conrad | 2010-02-13 | 1 | -48/+13 |
* | Eliminate macroblock -> fragment mapping array | David Conrad | 2010-02-13 | 1 | -50/+33 |
* | Eliminate superblock <-> macroblock mapping array | David Conrad | 2010-02-13 | 1 | -74/+19 |
* | Don't pre-calculate first_pixel | David Conrad | 2010-02-12 | 1 | -75/+26 |
* | Implement CODEC_CAP_DRAW_HORIZ_BAND for VP3 decoder | David Conrad | 2010-02-12 | 1 | -3/+39 |
* | Cosmetics: reindent | David Conrad | 2010-02-12 | 1 | -48/+48 |
* | Do loop filter per-row rather than per-frame | David Conrad | 2010-02-12 | 1 | -7/+12 |
* | Move apply_loop_filter above render_slice, it'll be used by the latter soon | David Conrad | 2010-02-12 | 1 | -64/+64 |
* | Export Theora colorspace info if present | David Conrad | 2010-02-12 | 1 | -2/+12 |
* | Theora 3.4 doesn't exist; these fields were misunderstandings of the spec | David Conrad | 2010-02-12 | 1 | -14/+2 |
* | Remove unused code that's moved elsewhere | David Conrad | 2010-02-12 | 1 | -54/+0 |
* | Move array specifiers outside DECLARE_ALIGNED() invocations | Måns Rullgård | 2010-01-22 | 1 | -3/+3 |
* | Cosmetic: indent after last change. | Mike Melanson | 2009-12-19 | 1 | -2/+2 |
* | Optimize unpack_vectors() by not shuffling around redundant vectors. | Mike Melanson | 2009-12-19 | 1 | -15/+7 |
* | Cosmetics: Fix indentation after r20751. | Carl Eugen Hoyos | 2009-12-06 | 1 | -28/+28 |
* | Simplified deblocking checks. | Jason Garrett-Glaser | 2009-12-06 | 1 | -6/+9 |
* | Faster checks in reverse_dc_prediction. | Jason Garrett-Glaser | 2009-12-06 | 1 | -7/+7 |
* | Check transform==15 first, since it's more common than 13. | Jason Garrett-Glaser | 2009-12-06 | 1 | -1/+1 |
* | Revert r20747: It mixed functional and cosmetical changes. | Carl Eugen Hoyos | 2009-12-06 | 1 | -44/+41 |
* | Various VP3 optimizations. | Jason Garrett-Glaser | 2009-12-06 | 1 | -41/+44 |
* | Small refactoring: Instead of 4 loops for decoding AC coefficients based | Mike Melanson | 2009-12-02 | 1 | -26/+21 |
* | Use a list to track which fragments coded in this frame still have | Mike Melanson | 2009-12-02 | 1 | -21/+70 |
* | Make sure that all memory allocations succeed. | Mike Melanson | 2009-09-24 | 1 | -0/+12 |
* | Fix >= vs > check of coded_fragment_list_index. | Google Chrome | 2009-09-23 | 1 | -1/+1 |
* | Fix init_get_bits() buffer size. | Google Chrome | 2009-09-23 | 1 | -1/+1 |
* | Another micro-optimization for unpack_vlcs(): Eliminate a possible | Mike Melanson | 2009-09-23 | 1 | -4/+3 |
* | Perform the DC prediction reversal immediately after decoding all of | Mike Melanson | 2009-09-22 | 1 | -8/+16 |
* | Modify unpack_vlcs() so that there are fewer dereferences through the | Mike Melanson | 2009-09-21 | 1 | -9/+15 |
* | compatible_frame array can be static const, too. | Reimar Döffinger | 2009-09-06 | 1 | -1/+1 |
* | Make vp3 arrays static const where possible. | Reimar Döffinger | 2009-09-05 | 1 | -5/+5 |
* | Remove useless #include <unistd.h> from many files | Måns Rullgård | 2009-07-22 | 1 | -1/+0 |
* | Remove useless ret variable added in last revision again. | Reimar Döffinger | 2009-07-06 | 1 | -3/+1 |
* | 100l, theora_decode_init must pass on errors from vp3_decode_init | Reimar Döffinger | 2009-07-06 | 1 | -2/+3 |
* | Make decode_init fail if the huffman tables are invalid and thus init_vlc fails. | Reimar Döffinger | 2009-07-06 | 1 | -10/+19 |
* | Ensure that the filter limit values do not exceed the maximum allowed value o... | Reimar Döffinger | 2009-07-05 | 1 | -1/+6 |
* | Extend init_loop_filter to work for filter limit values up to 127 instead | Reimar Döffinger | 2009-07-05 | 1 | -2/+9 |
* | vp3 and theora decoders use get_buffer, set CODEC_CAP_DR1 | Baptiste Coudurier | 2009-06-05 | 1 | -2/+2 |
* | Support block-level quantization in Theora | David Conrad | 2009-05-29 | 1 | -27/+81 |
* | Move ALIGN macro to libavutil/common.h and use it in various places | David Conrad | 2009-05-22 | 1 | -2/+2 |
* | Use skip_bits_long() for large skips | David Conrad | 2009-05-14 | 1 | -1/+1 |
* | Add a chroma_sample_location field to define positioning of chroma samples | David Conrad | 2009-05-11 | 1 | -0/+1 |
* | Remove dead assignments found by CSA | Benjamin Larsson | 2009-05-02 | 1 | -2/+0 |
* | Rename bitstream.h to get_bits.h. | Stefano Sabatini | 2009-04-13 | 1 | -1/+1 |
* | Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an | Thilo Borgmann | 2009-04-07 | 1 | -1/+3 |
* | Add missing av_cold in static init/close functions. | Daniel Verkamp | 2009-02-22 | 1 | -1/+1 |
* | VP3: Do not ignore error from read_huffman_tree(). | Alex Converse | 2009-02-09 | 1 | -5/+10 |