| Commit message (Expand) | Author | Age | Files | Lines |
* | Only #include svq3.c if the SVQ3 decoder is enabled. | Diego Biurrun | 2009-01-07 | 1 | -0/+2 |
* | Disable SVQ3 checks if SVQ3 support is not compiled in. | Diego Biurrun | 2009-01-07 | 1 | -1/+2 |
* | 50l: Reenable error resilience for H264 (Patch by Dark Shikari). | Jason Garrett-Glaser | 2009-01-05 | 1 | -1/+1 |
* | Cosmetics: Fix indentation. | Carl Eugen Hoyos | 2009-01-05 | 1 | -1/+1 |
* | Add VDPAU hardware accelerated decoding for H264 which can be used by | NVIDIA Corporation | 2009-01-04 | 1 | -2/+32 |
* | export refs | Michael Niedermayer | 2008-12-24 | 1 | -0/+2 |
* | Optimize pred_pskip_motion() | Michael Niedermayer | 2008-12-24 | 1 | -2/+2 |
* | Indent | Michael Niedermayer | 2008-12-23 | 1 | -19/+19 |
* | Integrate get_te0_golomb() calls into the code, this allows some checks | Michael Niedermayer | 2008-12-23 | 1 | -4/+29 |
* | Use get_ue_golomb_31() where possible, almost all are just in headers | Michael Niedermayer | 2008-12-23 | 1 | -15/+15 |
* | indent | Michael Niedermayer | 2008-12-23 | 1 | -21/+21 |
* | Use the new VLC table for the first non trailing coeff too. | Michael Niedermayer | 2008-12-23 | 1 | -5/+18 |
* | Optimize esc removal code. | Michael Niedermayer | 2008-12-23 | 1 | -4/+11 |
* | Indent | Michael Niedermayer | 2008-12-23 | 1 | -8/+8 |
* | unified CAVLC level decoding LUT. | Michael Niedermayer | 2008-12-23 | 1 | -4/+45 |
* | 100l, I broke H.264 again, forgot one hunk. | Michael Niedermayer | 2008-12-23 | 1 | -0/+1 |
* | Optimize 0 0 0-3 search, 45% faster on pentium dual. | Michael Niedermayer | 2008-12-23 | 1 | -0/+17 |
* | Simplify decode_cabac_mb_ref() a little bit, 2 cpu cycles faster on | Michael Niedermayer | 2008-12-22 | 1 | -4/+1 |
* | Indent | Michael Niedermayer | 2008-12-22 | 1 | -7/+7 |
* | inline decode_cabac_mb_type for I & P frames, 9 cycles faster on pentium dual. | Michael Niedermayer | 2008-12-22 | 1 | -22/+13 |
* | Negate 2 more variables, 1 cpu cycle faster on pentium dual. | Michael Niedermayer | 2008-12-22 | 1 | -5/+5 |
* | Simplify if/else, no speed change | Michael Niedermayer | 2008-12-22 | 1 | -5/+1 |
* | Negate a few variables, this simplifies the code and makes it 5 cycles faster | Michael Niedermayer | 2008-12-22 | 1 | -15/+15 |
* | Simplify ifs(), 8 cpu cycles faster on pentium dual | Michael Niedermayer | 2008-12-22 | 1 | -12/+4 |
* | Simplify if(), 3 cpu cycles faster in pentium dual. | Michael Niedermayer | 2008-12-22 | 1 | -4/+2 |
* | Rename libavcodec/i386/ --> libavcodec/x86/. | Diego Biurrun | 2008-12-22 | 1 | -1/+1 |
* | Remove a bunch of unused variables. | Diego Biurrun | 2008-12-22 | 1 | -5/+0 |
* | Remove useless code. | Michael Niedermayer | 2008-12-21 | 1 | -4/+2 |
* | Only execute clear_blocks() when needed. | Michael Niedermayer | 2008-12-21 | 1 | -4/+3 |
* | Optimize get_dct8x8_allowed(). | Michael Niedermayer | 2008-12-20 | 1 | -7/+4 |
* | H.264 loopfilter speed tweaks | Jason Garrett-Glaser | 2008-12-19 | 1 | -10/+18 |
* | Fix decoding with the plain C idcts of | Michael Niedermayer | 2008-12-19 | 1 | -0/+2 |
* | Replace /2 by >>1 in decode_cabac_mb_dqp() | Michael Niedermayer | 2008-12-19 | 1 | -2/+2 |
* | Simplify ctx update in decode_cabac_mb_dqp(). | Michael Niedermayer | 2008-12-19 | 1 | -4/+1 |
* | Simplify ctx calculation in decode_cabac_mb_dqp() | Michael Niedermayer | 2008-12-19 | 1 | -4/+1 |
* | Clear FF_INPUT_BUFFER_PADDING_SIZE bytes at the end of NALs in rbsp_buffer. | Alexander Strange | 2008-12-19 | 1 | -1/+3 |
* | Move filter_luma_intra into dsputil for later addition of asm. | Jason Garrett-Glaser | 2008-12-19 | 1 | -91/+2 |
* | Simplify chroma AC in CABAC residual decoding. | Jason Garrett-Glaser | 2008-12-19 | 1 | -19/+8 |
* | Optimize ctx calculation in decode_cabac_mb_mvd(), code by dark shikari. | Michael Niedermayer | 2008-12-19 | 1 | -8/+2 |
* | Remove unacceptable NULL pointer hack from mc code. | Michael Niedermayer | 2008-12-18 | 1 | -3/+0 |
* | Check ref values in CABAC H.264 for validity. | Michael Niedermayer | 2008-12-18 | 1 | -7/+34 |
* | Move idct_(dc)add closer to where it is needed. | Michael Niedermayer | 2008-12-18 | 1 | -3/+3 |
* | indent | Michael Niedermayer | 2008-12-18 | 1 | -36/+36 |
* | Reorder ifs in chroma hl_decode_mb to avoid a duplicate transform_bypass | Michael Niedermayer | 2008-12-18 | 1 | -7/+11 |
* | s/h->cbp_table[mb_xy]/h->cbp/ | Michael Niedermayer | 2008-12-18 | 1 | -4/+4 |
* | Faster CAVLC decoding of trailing_ones. Based on a patch by dark shikari. | Michael Niedermayer | 2008-12-18 | 1 | -3/+5 |
* | Replace i by trailing_ones, part of a patch by dark shikari. | Jason Garrett-Glaser | 2008-12-18 | 1 | -4/+3 |
* | Remove if() surrounding decode_cabac_mb_type() that can never be true. | Michael Niedermayer | 2008-12-18 | 1 | -4/+2 |
* | Remove unreachable else clause, found by dark shikari. | Michael Niedermayer | 2008-12-18 | 1 | -4/+2 |
* | Remove useless IS_8x8DCT check i forgot, spotted by dark shikari. | Michael Niedermayer | 2008-12-18 | 1 | -1/+1 |