summaryrefslogtreecommitdiff
path: root/libavcodec/h264_cabac.c
Commit message (Expand)AuthorAge
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
* Replace @returns by @return.Benoit Fouet2010-03-30
* h264: Use + instead of | in some placesAlexander Strange2010-03-26
* h264: Remove unused function argumentAlexander Strange2010-03-26
* h264: Simplify decode_cabac_residual() specializationAlexander Strange2010-03-26
* Remove some unneeded fill_rectangle() for 16x16 blocks.Michael Niedermayer2010-02-28
* Optimize (amvd>2)+(amvd>32), about 1 cpu cycles faster.Zhou Zongyi2010-02-26
* Change mvd_cache & mvd_table to 8bit, this is overall a bit fasterMichael 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
* get rid of an if() 1 cpu cycle faster.Michael Niedermayer2010-02-19
* Get rid of a local variable, 10 cpu cycles faster.Michael Niedermayer2010-02-19
* Move abs() from decode_cabac_mb_mvd() to the code that writes mvd_cache.Michael Niedermayer2010-02-18
* Speedup decode_cabac_field_decoding_flag() by 9 cpu cycles.Michael Niedermayer2010-02-18
* Move check for and call of predict_field_decoding_flag() from the mb code toMichael Niedermayer2010-02-17
* 2x faster ff_h264_init_cabac_states(), 4k cpu cycles less.Michael Niedermayer2010-02-16
* 2 cpu cycles faster context calculation for decode_cabac_intra_mb_type()Michael Niedermayer2010-02-16
* Drop a few redundant slice_num checks.Michael Niedermayer2010-02-16
* Drop compute_mb_neighbors() and move fill_decode_neighbors() up to take itsMichael Niedermayer2010-02-15
* Split setting neighboring MBs from fill_decode_caches()Michael Niedermayer2010-02-15
* Simplify decode_cabac_mb_intra4x4_pred_mode().Michael Niedermayer2010-02-15
* Merge decode_cabac_mb_type_b() into calling code.Michael Niedermayer2010-02-15
* Merge the single line function decode_cabac_mb_transform_size()Michael Niedermayer2010-02-15
* indentMichael Niedermayer2010-02-14
* Merge decode_cabac_mb_dqp() with surronding code.Michael Niedermayer2010-02-14
* Set sub_mb_type in direct_cache instead of just the direct flag.Michael Niedermayer2010-02-14
* Store sub_mb_type in direct_cache/direct_table.Michael Niedermayer2010-02-14
* Remove slice_table checks from decode_cabac_mb_cbp_luma() and set left/top_cb...Michael Niedermayer2010-02-14
* Optimize decode_cabac_field_decoding_flag().Michael Niedermayer2010-01-25
* Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård2010-01-22
* Cosmetic, get rid of &x[0]Michael Niedermayer2010-01-18
* Split fill_caches() between filter and decoder.Michael Niedermayer2010-01-17
* Rearchitecturing the stiched up goose part 1Michael Niedermayer2010-01-17
* Replace cabac checks in inline functions from h264.h with constants.Michael Niedermayer2010-01-16
* Split cabac decoding code out of h264.c.Michael Niedermayer2010-01-13