Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2010-03-06Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård
2010-03-04Port Optimizations about *_type init from decode to filter code.Michael Niedermayer
2010-03-04Optimize *_type init, 1.5 cpu cycles faster.Michael Niedermayer
2010-03-04Reorder indexes in weight tables.Michael Niedermayer
2010-03-03Move all context fields that are not used in the mb and block layersMichael Niedermayer
2010-03-03remove unused left_border field from context.Michael Niedermayer
2010-03-03Note about luma/chroma_weight tables and their datatype.Michael Niedermayer
2010-03-03move svq3 specific fields to the end of the contextMichael Niedermayer
2010-03-03Merge weight & offset tables, 15 cpu cycles faster.Michael Niedermayer
2010-03-03Another 3 useless zeroing instructions.Michael Niedermayer
2010-03-03Load the whole left side of mv&ref only when needed.Michael Niedermayer
2010-02-27Merge h->slice_table[left_xy[0/1] ] checks, 4 cpu cycles speedupMichael Niedermayer
2010-02-27Split *_type setting up, 4 cpu cycles faster.Michael Niedermayer
2010-02-26Only load the topleft mv/ref when the topright is unavailable.Michael Niedermayer
2010-02-26Remove some useless operations from the code setting left_cbp.Michael Niedermayer
2010-02-26Simplify code to set cbp_*Michael Niedermayer
2010-02-26Move init of right side of ref_cache from fill_caches() to init_the_darn_deco...Michael Niedermayer
2010-02-26Remove 3 mv_cache zeroing instructions that zeroed the right side.Michael Niedermayer
2010-02-26Remove useless check of the 2 left MBs of a pair being in the same slice.Michael Niedermayer
2010-02-26Remove unneeded line of code from the neighbor setting code in h264.Michael Niedermayer
2010-02-26Get rid of mb2b8_xy and b8_stride, change arrays organized based on b8_stride toMichael Niedermayer
2010-02-25Store data in direct_table interleaved.Michael Niedermayer
2010-02-25Simplify intra4x4_pred_mode_cache init.Michael Niedermayer
2010-02-25Reorder intra4x4_pred_mode so that we can read/write 4 values at once.Michael Niedermayer
2010-02-25Store intra4x4_pred_mode per row only.Michael Niedermayer
2010-02-25unroll tiny and trivial loop. Same speed but clearer.Michael Niedermayer
2010-02-25Cut the size of mvd_table by yet another factor of 2.Michael Niedermayer
2010-02-25Keep mvd_table values of only 2 mb rows.Michael Niedermayer
2010-02-24Change mvd_cache & mvd_table to 8bit, this is overall a bit fasterMichael Niedermayer
2010-02-24Replace /2 by faster >>1 as the mvd values are now all positive.Michael Niedermayer
2010-02-24Remove unused variable. Seems i forgot to commit this.Michael Niedermayer
2010-02-21Remove unused variable, fixes warnings of the type:Diego Biurrun
2010-02-18H264: use alias-safe macrosMåns Rullgård
2010-02-17Move predict_field_decoding_flag() from h264.h to .c as its only used there a...Michael Niedermayer
2010-02-17Move check for and call of predict_field_decoding_flag() from the mb code toMichael Niedermayer
2010-02-16Split setting neighboring MBs from fill_decode_caches()Michael Niedermayer
2010-02-14Store sub_mb_type in direct_cache/direct_table.Michael Niedermayer
2010-02-14Remove slice_table checks from decode_cabac_mb_cbp_luma() and set left/top_cb...Michael Niedermayer
2010-02-14Revert r21814Michael Niedermayer
2010-02-14Direct temporal skiped MBs dont need fill_decode_caches() at all so dont call itMichael Niedermayer
2010-02-14h264: Remove unused variables.Alexander Strange
2010-02-14h264: Fix pointer warnings by removing redundant [0]Alexander Strange
2010-02-13Fix integer overflow warnings in h264.hAlexander Strange
2010-02-13Merge (IS_SKIP(mb_type) || IS_DIRECT(mb_type)Michael Niedermayer
2010-02-13Skiped MBs dont need the cbp stuff so skip initing that.Michael Niedermayer
2010-02-13Also skip direct/mvd_cache init for skiped blocks.Michael Niedermayer
2010-02-13Move more code under if(!IS_DIRECT(mb_type)).Michael Niedermayer
2010-02-13Skip some more code that isnt needed for direct MBs.Michael Niedermayer
2010-02-13Move setting MB_TYPE_L0L1 for direct MBs up, this is simpler.Michael Niedermayer
2010-02-13Dont calculate any surrounding MVs for temporal MBsMichael Niedermayer