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
2011-02-02h264: Add Intra and Constrained Baseline profiles to avctx.profileJanne Grunau
2011-01-26Make ff_h264_decode_rbsp_trailing static to h264.cDiego Elio Pettenò
2011-01-21Revert 2a1f431d38ea9c05abb215d70c7dc09cdb6888ab, it broke H264 lossless.Ronald S. Bultje
2011-01-15H.264/SVQ3: make chroma DC work the same way as luma DCJason Garrett-Glaser
2011-01-15H.264: switch to x264-style tracking of luma/chroma DC NNZJason Garrett-Glaser
2011-01-15H.264: split luma dc idct out and implement MMX/SSE2 versionsJason Garrett-Glaser
2010-07-06Add av_unused to decode_mb_skip declaration to fix the following warning:Eli Friedman
2010-07-05Factorize ff_generate_sliding_window_mmcos() out.Michael Niedermayer
2010-06-30Fix grammar errors in documentationMåns Rullgård
2010-05-29Cleanup prev commit, flag variable should start with 0Howard Chu
2010-05-28Parse avctx->extradata if available.Howard Chu
2010-05-26Factorize ff_h264_decode_extradata().Howard Chu
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
2010-04-14Move static function fill_filter_caches() from h264.h to h264.c.Diego Biurrun
2010-03-31Fix implicit weight for b frames in mbaff.Michael Niedermayer
2010-03-30Replace @returns by @return.Benoit Fouet
2010-03-16Move H264 dsputil functions into their own structMåns Rullgård
2010-03-16H264: fix signed overflow in constant multiplicationMåns Rullgård
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