summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
Commit message (Expand)AuthorAge
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
* Move static function fill_filter_caches() from h264.h to h264.c.Diego Biurrun2010-04-13
* Fix implicit weight for b frames in mbaff.Michael Niedermayer2010-03-30
* Replace @returns by @return.Benoit Fouet2010-03-30
* Move H264 dsputil functions into their own structMåns Rullgård2010-03-16
* H264: fix signed overflow in constant multiplicationMåns Rullgård2010-03-15
* Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård2010-03-06
* Port Optimizations about *_type init from decode to filter code.Michael Niedermayer2010-03-04
* Optimize *_type init, 1.5 cpu cycles faster.Michael Niedermayer2010-03-04
* Reorder indexes in weight tables.Michael Niedermayer2010-03-03
* Move all context fields that are not used in the mb and block layersMichael Niedermayer2010-03-03
* remove unused left_border field from context.Michael Niedermayer2010-03-03
* Note about luma/chroma_weight tables and their datatype.Michael Niedermayer2010-03-03
* move svq3 specific fields to the end of the contextMichael Niedermayer2010-03-03
* Merge weight & offset tables, 15 cpu cycles faster.Michael Niedermayer2010-03-03
* Another 3 useless zeroing instructions.Michael Niedermayer2010-03-03
* Load the whole left side of mv&ref only when needed.Michael Niedermayer2010-03-03
* 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
* 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
* 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
* Remove unneeded line of code from the neighbor setting code in h264.Michael Niedermayer2010-02-26
* Get rid of mb2b8_xy and b8_stride, change arrays organized based on b8_stride toMichael 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
* Change mvd_cache & mvd_table to 8bit, this is overall a bit fasterMichael Niedermayer2010-02-24
* Replace /2 by faster >>1 as the mvd values are now all positive.Michael Niedermayer2010-02-24
* Remove unused variable. Seems i forgot to commit this.Michael Niedermayer2010-02-24
* Remove unused variable, fixes warnings of the type:Diego Biurrun2010-02-21
* H264: use alias-safe macrosMåns Rullgård2010-02-18
* Move predict_field_decoding_flag() from h264.h to .c as its only used there a...Michael Niedermayer2010-02-17
* Move check for and call of predict_field_decoding_flag() from the mb code toMichael Niedermayer2010-02-17
* Split setting neighboring MBs from fill_decode_caches()Michael Niedermayer2010-02-15
* 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
* Revert r21814Michael Niedermayer2010-02-14
* Direct temporal skiped MBs dont need fill_decode_caches() at all so dont call itMichael Niedermayer2010-02-13
* h264: Remove unused variables.Alexander Strange2010-02-13
* h264: Fix pointer warnings by removing redundant [0]Alexander Strange2010-02-13
* Fix integer overflow warnings in h264.hAlexander Strange2010-02-13
* Merge (IS_SKIP(mb_type) || IS_DIRECT(mb_type)Michael Niedermayer2010-02-13