summaryrefslogtreecommitdiff
path: root/libavcodec
Commit message (Expand)AuthorAge
* Include internal.h and imgconvert.h, they contain the prototypes for theCarl Eugen Hoyos2010-02-28
* Include msrledec.h: It contains the prototype for ff_msrle_decode().Carl Eugen Hoyos2010-02-28
* Include atrac.h: It contains the prototypes for atrac_generate_tables()Carl Eugen Hoyos2010-02-28
* Include mpegaudiodecheader.h: It contains the prototype forCarl Eugen Hoyos2010-02-28
* Remove declaration of unused variables.Carl Eugen Hoyos2010-02-28
* Include h263_parser.h: It contains the prototype forCarl Eugen Hoyos2010-02-28
* Include mpeg4video.h: Needed for declaration of ff_mpeg4_decode_picture_header.Carl Eugen Hoyos2010-02-28
* Fix avcodec_align_dimensions to return values suitably aligned for FLV decodingReimar Döffinger2010-02-27
* Strides in Indeo 5 reconstruction filter should be signed,Jindřich Makovička2010-02-27
* Encapsulate VLC information needed for decoding blocks and macroblocks inKostya Shishkov2010-02-27
* Make it clear that ff_ivi_init_static_vlc() does not need argumentsKostya Shishkov2010-02-27
* Merge h->slice_table[left_xy[0/1] ] checks, 4 cpu cycles speedupMichael Niedermayer2010-02-27
* Split *_type setting up, 4 cpu cycles faster.Michael Niedermayer2010-02-27
* Optimize (amvd>2)+(amvd>32), about 1 cpu cycles faster.Zhou Zongyi2010-02-26
* Fixed a segfault in the DCA decoder with corrupted streams.Laurent Aimar2010-02-26
* Do not read beyond end of input in EA-TGV. This should avoid FATE test #362Vitor Sessak2010-02-26
* Only load the topleft mv/ref when the topright is unavailable.Michael Niedermayer2010-02-26
* Remove some useless operations from the code setting left_cbp.Michael Niedermayer2010-02-26
* Simplify code to set cbp_*Michael Niedermayer2010-02-26
* Fix typos in ref_index documentation.Benoit Fouet2010-02-26
* Move init of right side of ref_cache from fill_caches() to init_the_darn_deco...Michael Niedermayer2010-02-26
* Remove 3 mv_cache zeroing instructions that zeroed the right side.Michael Niedermayer2010-02-26
* Remove useless check of the 2 left MBs of a pair being in the same slice.Michael Niedermayer2010-02-26
* Clarify ref_index.Michael Niedermayer2010-02-26
* Remove unneeded line of code from the neighbor setting code in h264.Michael Niedermayer2010-02-26
* Simplify code in mv_pred.Michael Niedermayer2010-02-26
* Get rid of mb2b8_xy and b8_stride, change arrays organized based on b8_stride toMichael Niedermayer2010-02-25
* svq3 now in working condition, at least vissually, ill let fate tell usMichael Niedermayer2010-02-25
* fix compilation, sorry ive not checked cvslog for a while :(((Michael Niedermayer2010-02-25
* Dont allocate direct_table 8 times too large.Michael Niedermayer2010-02-25
* Store data in direct_table interleaved.Michael Niedermayer2010-02-25
* Simplify intra4x4_pred_mode_cache init.Michael Niedermayer2010-02-25
* Reorder intra4x4_pred_mode so that we can read/write 4 values at once.Michael Niedermayer2010-02-25
* Store intra4x4_pred_mode per row only.Michael Niedermayer2010-02-25
* unroll tiny and trivial loop. Same speed but clearer.Michael Niedermayer2010-02-25
* Cut the size of mvd_table by yet another factor of 2.Michael Niedermayer2010-02-25
* Keep mvd_table values of only 2 mb rows.Michael Niedermayer2010-02-25
* aac: Keep decode_band_types() from eating all padding at the end of a buffer.Alex Converse2010-02-24
* 3rd and hopefully last 100l fix.Michael Niedermayer2010-02-24
* Fix doxy and assert().Michael Niedermayer2010-02-24
* Try to fix 100l compilation failure on some systems.Michael Niedermayer2010-02-24
* Change mvd_cache & mvd_table to 8bit, this is overall a bit fasterMichael Niedermayer2010-02-24
* Extend fill_rectangle() support for 16bitMichael Niedermayer2010-02-24
* Calculate mvd without abs()Michael Niedermayer2010-02-24
* switch back to (amvd>2)+(amvd>32), its 5 cpu cycles faster now.Michael Niedermayer2010-02-24
* Factorize common code from the top of decode_cabac_mb_mvd()Michael Niedermayer2010-02-24
* Replace mvd>2 + mvd>32 by MIN((mvd+28)*17>>9, 2)Michael Niedermayer2010-02-24
* Replace ad-hoc fill rectangle by fill_rectangle().Michael Niedermayer2010-02-24
* ff_msmpeg4_decode_init() calls ff_h263_decode_init() which callsKostya Shishkov2010-02-24
* it is not necessary to display the decoder name, as av_log() automatically pr...Peter Ross2010-02-24