summaryrefslogtreecommitdiff
path: root/libavcodec/vp3.c
Commit message (Collapse)AuthorAge
* compatible_frame array can be static const, too.Reimar Döffinger2009-09-06
| | | | Originally committed as revision 19779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make vp3 arrays static const where possible.Reimar Döffinger2009-09-05
| | | | Originally committed as revision 19771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless #include <unistd.h> from many filesMåns Rullgård2009-07-22
| | | | Originally committed as revision 19499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless ret variable added in last revision again.Reimar Döffinger2009-07-06
| | | | Originally committed as revision 19357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, theora_decode_init must pass on errors from vp3_decode_initReimar Döffinger2009-07-06
| | | | Originally committed as revision 19356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make decode_init fail if the huffman tables are invalid and thus init_vlc fails.Reimar Döffinger2009-07-06
| | | | | | | Otherwise this will crash during decoding because the vlc tables are NULL. Partially fixes ogv/smclock.ogv.1.101.ogv from issue 1240. Originally committed as revision 19355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that the filter limit values do not exceed the maximum allowed value ↵Reimar Döffinger2009-07-05
| | | | | | of 127. Originally committed as revision 19351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend init_loop_filter to work for filter limit values up to 127 insteadReimar Döffinger2009-07-05
| | | | | | of only up to 64. 127 is the maximum value allowed by the theora specification. Originally committed as revision 19350 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vp3 and theora decoders use get_buffer, set CODEC_CAP_DR1Baptiste Coudurier2009-06-05
| | | | Originally committed as revision 19107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support block-level quantization in TheoraDavid Conrad2009-05-29
| | | | Originally committed as revision 18986 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ALIGN macro to libavutil/common.h and use it in various placesDavid Conrad2009-05-22
| | | | Originally committed as revision 18898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use skip_bits_long() for large skipsDavid Conrad2009-05-14
| | | | | | This fixes ogg/theora on ARM (more generally the A32 bitstream reader) Originally committed as revision 18819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a chroma_sample_location field to define positioning of chroma samplesDavid Conrad2009-05-11
| | | | Originally committed as revision 18795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove dead assignments found by CSABenjamin Larsson2009-05-02
| | | | Originally committed as revision 18731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
| | | | Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-07
| | | | | | | | | | | AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing av_cold in static init/close functions.Daniel Verkamp2009-02-22
| | | | | | Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP3: Do not ignore error from read_huffman_tree().Alex Converse2009-02-09
| | | | Originally committed as revision 17090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VP3: Prevent stack corruption from an unset custom coding method.Alex Converse2009-02-03
| | | | Originally committed as revision 16978 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clear_block mmxLoren Merritt2008-12-10
| | | | Originally committed as revision 16045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MMX VP3 Loop FilterDavid Conrad2008-10-17
| | | | Originally committed as revision 15630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variablesDavid Conrad2008-10-12
| | | | Originally committed as revision 15602 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move VP3 loop filter to DSPContextDavid Conrad2008-10-04
| | | | Originally committed as revision 15551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindentDavid Conrad2008-10-01
| | | | Originally committed as revision 15505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unneeded elseDavid Conrad2008-10-01
| | | | Originally committed as revision 15504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Unneeded bracesDavid Conrad2008-10-01
| | | | Originally committed as revision 15503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return if unpacking motion vectors for a keyframeDavid Conrad2008-10-01
| | | | Originally committed as revision 15502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indentationDavid Conrad2008-10-01
| | | | Originally committed as revision 15501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Visible width/height fields were added in Theora 3.2David Conrad2008-10-01
| | | | Originally committed as revision 15500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* filter_limit_values only needs 7 bits, make its tables smallerDavid Conrad2008-10-01
| | | | Originally committed as revision 15499 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: indentationDavid Conrad2008-09-30
| | | | Originally committed as revision 15492 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge (vp3|theora)_calculate_pixel_addressesDavid Conrad2008-09-30
| | | | Originally committed as revision 15491 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Missed hunks of last commitDavid Conrad2008-09-30
| | | | Originally committed as revision 15490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused vp3 debugging infoDavid Conrad2008-09-30
| | | | Originally committed as revision 15489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Downgrade severity of leftover bits in header packets, and don't check for ↵David Conrad2008-09-30
| | | | | | the comment header Originally committed as revision 15469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use skip_frame for keyframe-only decoding rather than #ifdefDavid Conrad2008-09-29
| | | | Originally committed as revision 15463 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take idct permutation into account when initializing dequantization matricesDavid Conrad2008-09-17
| | | | Originally committed as revision 15344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theoradec: cosmetics: indentationAurelien Jacobs2008-09-03
| | | | Originally committed as revision 15167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theoradec: skip decoding of uncoded MV in 4MV codeAurelien Jacobs2008-09-03
| | | | | | | | Thusnelda, the new experimental Theora encoder is using this Theora feature that was previously not exploited. fixes issue579 Originally committed as revision 15166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* theoradec: small 4MV code reorganization to ease future improvementsAurelien Jacobs2008-09-03
| | | | | | no functional changes Originally committed as revision 15165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make ModeAlphabet read-only and use a custom mode alphabetStefan Gehrer2008-06-25
| | | | | | only locally in unpack_modes() Originally committed as revision 13964 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the START_TIMER/STOP_TIMER from vp3.c, they clutter the output andReimar Döffinger2008-06-09
| | | | | | might cost CPU. Originally committed as revision 13730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Almost-cosmetics: split out coeff_count from all_fragments struct intoReimar Döffinger2008-06-09
| | | | | | | | | a separate array. For the OGG version at http://www.bigbuckbunny.org/index.php/download/ this results in about 50% speedup of unpack_vlcs, resulting in ca. 20% faster overall speed. Originally committed as revision 13729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consistency cosmetics: indices --> indexesDiego Biurrun2008-05-26
| | | | Originally committed as revision 13444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add complete multimedia Wiki URL, patch by Sisir Koppaka.Sisir Koppaka2008-05-04
| | | | Originally committed as revision 13055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to many AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk