| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge h->slice_table[left_xy[0/1] ] checks, 4 cpu cycles speedup | Michael Niedermayer | 2010-02-27 | 1 | -2/+1 |
* | Split *_type setting up, 4 cpu cycles faster. | Michael Niedermayer | 2010-02-27 | 1 | -5/+12 |
* | Only load the topleft mv/ref when the topright is unavailable. | Michael Niedermayer | 2010-02-26 | 1 | -10/+11 |
* | Remove some useless operations from the code setting left_cbp. | Michael Niedermayer | 2010-02-26 | 1 | -3/+3 |
* | Simplify code to set cbp_* | Michael Niedermayer | 2010-02-26 | 1 | -11/+3 |
* | Move init of right side of ref_cache from fill_caches() to init_the_darn_deco... | Michael Niedermayer | 2010-02-26 | 1 | -3/+0 |
* | Remove 3 mv_cache zeroing instructions that zeroed the right side. | Michael Niedermayer | 2010-02-26 | 1 | -3/+0 |
* | Remove useless check of the 2 left MBs of a pair being in the same slice. | Michael Niedermayer | 2010-02-26 | 1 | -2/+2 |
* | Remove unneeded line of code from the neighbor setting code in h264. | Michael Niedermayer | 2010-02-26 | 1 | -1/+0 |
* | Get rid of mb2b8_xy and b8_stride, change arrays organized based on b8_stride to | Michael Niedermayer | 2010-02-25 | 1 | -24/+20 |
* | Store data in direct_table interleaved. | Michael Niedermayer | 2010-02-25 | 1 | -9/+9 |
* | Simplify intra4x4_pred_mode_cache init. | Michael Niedermayer | 2010-02-25 | 1 | -14/+2 |
* | Reorder intra4x4_pred_mode so that we can read/write 4 values at once. | Michael Niedermayer | 2010-02-25 | 1 | -7/+3 |
* | Store intra4x4_pred_mode per row only. | Michael Niedermayer | 2010-02-25 | 1 | -7/+9 |
* | unroll tiny and trivial loop. Same speed but clearer. | Michael Niedermayer | 2010-02-25 | 1 | -3/+3 |
* | Cut the size of mvd_table by yet another factor of 2. | Michael Niedermayer | 2010-02-25 | 1 | -12/+14 |
* | Keep mvd_table values of only 2 mb rows. | Michael Niedermayer | 2010-02-25 | 1 | -4/+7 |
* | Change mvd_cache & mvd_table to 8bit, this is overall a bit faster | Michael Niedermayer | 2010-02-24 | 1 | -22/+29 |
* | Replace /2 by faster >>1 as the mvd values are now all positive. | Michael Niedermayer | 2010-02-24 | 1 | -1/+1 |
* | Remove unused variable. Seems i forgot to commit this. | Michael Niedermayer | 2010-02-24 | 1 | -1/+0 |
* | Remove unused variable, fixes warnings of the type: | Diego Biurrun | 2010-02-21 | 1 | -1/+0 |
* | H264: use alias-safe macros | Måns Rullgård | 2010-02-18 | 1 | -55/+56 |
* | Move predict_field_decoding_flag() from h264.h to .c as its only used there a... | Michael Niedermayer | 2010-02-17 | 1 | -11/+0 |
* | Move check for and call of predict_field_decoding_flag() from the mb code to | Michael Niedermayer | 2010-02-17 | 1 | -1/+1 |
* | Split setting neighboring MBs from fill_decode_caches() | Michael Niedermayer | 2010-02-15 | 1 | -20/+51 |
* | Store sub_mb_type in direct_cache/direct_table. | Michael Niedermayer | 2010-02-14 | 1 | -10/+10 |
* | Remove slice_table checks from decode_cabac_mb_cbp_luma() and set left/top_cb... | Michael Niedermayer | 2010-02-14 | 1 | -4/+4 |
* | Revert r21814 | Michael Niedermayer | 2010-02-14 | 1 | -3/+3 |
* | Direct temporal skiped MBs dont need fill_decode_caches() at all so dont call it | Michael Niedermayer | 2010-02-13 | 1 | -1/+1 |
* | h264: Remove unused variables. | Alexander Strange | 2010-02-13 | 1 | -1/+0 |
* | h264: Fix pointer warnings by removing redundant [0] | Alexander Strange | 2010-02-13 | 1 | -3/+3 |
* | Fix integer overflow warnings in h264.h | Alexander Strange | 2010-02-13 | 1 | -2/+2 |
* | Merge (IS_SKIP(mb_type) || IS_DIRECT(mb_type) | Michael Niedermayer | 2010-02-13 | 1 | -1/+1 |
* | Skiped MBs dont need the cbp stuff so skip initing that. | Michael Niedermayer | 2010-02-13 | 1 | -0/+2 |
* | Also skip direct/mvd_cache init for skiped blocks. | Michael Niedermayer | 2010-02-13 | 1 | -1/+1 |
* | Move more code under if(!IS_DIRECT(mb_type)). | Michael Niedermayer | 2010-02-13 | 1 | -2/+3 |
* | Skip some more code that isnt needed for direct MBs. | Michael Niedermayer | 2010-02-13 | 1 | -1/+1 |
* | Move setting MB_TYPE_L0L1 for direct MBs up, this is simpler. | Michael Niedermayer | 2010-02-13 | 1 | -2/+2 |
* | Dont calculate any surrounding MVs for temporal MBs | Michael Niedermayer | 2010-02-13 | 1 | -4/+3 |
* | Remove an apparently unneeded && !FRAME_MBAFF. | Michael Niedermayer | 2010-02-08 | 1 | -1/+1 |
* | Ooops, 10l forgot to commit h264.h. | Michael Niedermayer | 2010-02-07 | 1 | -0/+2 |
* | Fix svq3_* function declarations. | Rafaël Carré | 2010-01-27 | 1 | -0/+3 |
* | Simplify left_xy init | Michael Niedermayer | 2010-01-27 | 1 | -4/+2 |
* | Split fill_caches() between loopfilter & decode, the 2 no longer where common | Michael Niedermayer | 2010-01-26 | 1 | -173/+213 |
* | use left_xy[1] in mbaff QP loop filter check, this improves the amount that can | Michael Niedermayer | 2010-01-26 | 1 | -1/+1 |
* | Optimize mv/ref cache init for left MB. | Michael Niedermayer | 2010-01-26 | 1 | -8/+30 |
* | Simplify left_xy content for the loop filter, this also makes it closer to | Michael Niedermayer | 2010-01-26 | 1 | -0/+10 |
* | Set top & left types for deblock in fill_caches(). | Michael Niedermayer | 2010-01-26 | 1 | -4/+13 |
* | cosmetic | Michael Niedermayer | 2010-01-26 | 1 | -1/+1 |
* | Fix qp_thres loop filter check for MBAFF. | Michael Niedermayer | 2010-01-26 | 1 | -2/+5 |