summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Expand)AuthorAgeFilesLines
* Dont allocate direct_table 8 times too large.Michael Niedermayer2010-02-251-1/+1
* Store data in direct_table interleaved.Michael Niedermayer2010-02-251-9/+9
* Simplify intra4x4_pred_mode_cache init.Michael Niedermayer2010-02-251-14/+2
* Reorder intra4x4_pred_mode so that we can read/write 4 values at once.Michael Niedermayer2010-02-252-14/+7
* Store intra4x4_pred_mode per row only.Michael Niedermayer2010-02-252-16/+18
* unroll tiny and trivial loop. Same speed but clearer.Michael Niedermayer2010-02-251-3/+3
* Cut the size of mvd_table by yet another factor of 2.Michael Niedermayer2010-02-252-15/+17
* Keep mvd_table values of only 2 mb rows.Michael Niedermayer2010-02-252-4/+11
* aac: Keep decode_band_types() from eating all padding at the end of a buffer.Alex Converse2010-02-241-0/+4
* 3rd and hopefully last 100l fix.Michael Niedermayer2010-02-241-1/+1
* Fix doxy and assert().Michael Niedermayer2010-02-241-2/+2
* Try to fix 100l compilation failure on some systems.Michael Niedermayer2010-02-241-16/+16
* Change mvd_cache & mvd_table to 8bit, this is overall a bit fasterMichael Niedermayer2010-02-243-37/+44
* Extend fill_rectangle() support for 16bitMichael Niedermayer2010-02-241-26/+27
* Calculate mvd without abs()Michael Niedermayer2010-02-241-14/+18
* switch back to (amvd>2)+(amvd>32), its 5 cpu cycles faster now.Michael Niedermayer2010-02-241-1/+1
* Factorize common code from the top of decode_cabac_mb_mvd()Michael Niedermayer2010-02-241-13/+16
* Replace mvd>2 + mvd>32 by MIN((mvd+28)*17>>9, 2)Michael Niedermayer2010-02-241-1/+1
* Replace ad-hoc fill rectangle by fill_rectangle().Michael Niedermayer2010-02-241-4/+2
* ff_msmpeg4_decode_init() calls ff_h263_decode_init() which callsKostya Shishkov2010-02-241-3/+1
* it is not necessary to display the decoder name, as av_log() automatically pr...Peter Ross2010-02-241-1/+1
* Replace /2 by faster >>1 as the mvd values are now all positive.Michael Niedermayer2010-02-241-1/+1
* Remove unused variable. Seems i forgot to commit this.Michael Niedermayer2010-02-241-1/+0
* mlp_parser: Fix memleak.Jai Menon2010-02-231-1/+1
* Cosmetics: break all Makefile lines at 80 columns or lessDaniel Verkamp2010-02-231-22/+43
* Use reported_size to truncate final Bink Audio framePeter Ross2010-02-231-5/+1
* Fix iff demuxer dependenciesDaniel Verkamp2010-02-231-0/+1
* Fix vc1 parser dependenciesDaniel Verkamp2010-02-231-1/+1
* Fix h264 parser dependenciesDaniel Verkamp2010-02-231-0/+1
* Fix mpeg4video parser dependenciesDaniel Verkamp2010-02-231-1/+1
* Fix wmv2 encoder dependenciesDaniel Verkamp2010-02-231-1/+1
* Fix gif encoder dependenciesDaniel Verkamp2010-02-231-1/+1
* Fix snow encoder dependenciesDaniel Verkamp2010-02-231-1/+1
* Fix svq1 encoder dependenciesDaniel Verkamp2010-02-231-1/+1
* 10l trocadero: Indeo 5 decoder did not free custom VLCs for macroblock andKostya Shishkov2010-02-232-0/+5
* Decode alpha plane in Bink videoKostya Shishkov2010-02-231-6/+4
* cosmetics: reindent after last commitKostya Shishkov2010-02-231-157/+157
* Move plane decoding code into separate function in Bink decoderKostya Shishkov2010-02-231-58/+70
* Bink video decoder now can use extradata to detect alpha plane presenceKostya Shishkov2010-02-231-1/+10
* Declare indeo VLC table storage with correct typeMåns Rullgård2010-02-231-1/+1
* Try to set has_b_frames in codec init if we know everything alraedy.Michael Niedermayer2010-02-231-0/+4
* Move extradata reading code into codec init instead of doing itMichael Niedermayer2010-02-231-55/+45
* Make Bink decoder able to skip alpha planeKostya Shishkov2010-02-221-0/+10
* Macroblock and block Huffman code sets are to be used by both Indeo 4 andKostya Shishkov2010-02-223-17/+39
* Make Bink decoder to stop decoding planes after all bits are used.Kostya Shishkov2010-02-221-1/+4
* Correct bundle lengths calculation for small Bink files.Kostya Shishkov2010-02-221-1/+2
* ARM: NEON scalarproduct_int16 and scalarproduct_and_madd_int16Kostya Shishkov2010-02-223-0/+127
* Fix compilation for --enable-version3 --enable-libopencore_amrwb (only).Carl Eugen Hoyos2010-02-221-1/+1
* ARM: add missing preserve8 directivesMåns Rullgård2010-02-222-0/+4
* get/show_bits() can read up to MIN_CACHE_BITS bitsMåns Rullgård2010-02-211-2/+2