]> git.sesse.net Git - ffmpeg/history - libavcodec/h264.c
Optimize pred_pskip_motion()
[ffmpeg] / libavcodec / h264.c
2008-12-24 Michael NiedermayerOptimize pred_pskip_motion()
2008-12-23 Michael NiedermayerIndent
2008-12-23 Michael NiedermayerIntegrate get_te0_golomb() calls into the code, this...
2008-12-23 Michael NiedermayerUse get_ue_golomb_31() where possible, almost all are...
2008-12-23 Michael Niedermayerindent
2008-12-23 Michael NiedermayerUse the new VLC table for the first non trailing coeff...
2008-12-23 Michael NiedermayerOptimize esc removal code.
2008-12-23 Michael NiedermayerIndent
2008-12-23 Michael Niedermayerunified CAVLC level decoding LUT.
2008-12-23 Michael Niedermayer100l, I broke H.264 again, forgot one hunk.
2008-12-23 Michael NiedermayerOptimize 0 0 0-3 search, 45% faster on pentium dual.
2008-12-22 Michael NiedermayerSimplify decode_cabac_mb_ref() a little bit, 2 cpu...
2008-12-22 Michael NiedermayerIndent
2008-12-22 Michael Niedermayerinline decode_cabac_mb_type for I & P frames, 9 cycles...
2008-12-22 Michael NiedermayerNegate 2 more variables, 1 cpu cycle faster on pentium...
2008-12-22 Michael NiedermayerSimplify if/else, no speed change
2008-12-22 Michael NiedermayerNegate a few variables, this simplifies the code and...
2008-12-22 Michael NiedermayerSimplify ifs(), 8 cpu cycles faster on pentium dual
2008-12-22 Michael NiedermayerSimplify if(), 3 cpu cycles faster in pentium dual.
2008-12-22 Diego BiurrunRename libavcodec/i386/ --> libavcodec/x86/.
2008-12-22 Diego BiurrunRemove a bunch of unused variables.
2008-12-21 Michael NiedermayerRemove useless code.
2008-12-21 Michael NiedermayerOnly execute clear_blocks() when needed.
2008-12-20 Michael NiedermayerOptimize get_dct8x8_allowed().
2008-12-19 Jason Garrett-GlaserH.264 loopfilter speed tweaks
2008-12-19 Michael NiedermayerFix decoding with the plain C idcts of
2008-12-19 Michael NiedermayerReplace /2 by >>1 in decode_cabac_mb_dqp()
2008-12-19 Michael NiedermayerSimplify ctx update in decode_cabac_mb_dqp().
2008-12-19 Michael NiedermayerSimplify ctx calculation in decode_cabac_mb_dqp()
2008-12-19 Alexander StrangeClear FF_INPUT_BUFFER_PADDING_SIZE bytes at the end...
2008-12-19 Jason Garrett-GlaserMove filter_luma_intra into dsputil for later addition...
2008-12-19 Jason Garrett-GlaserSimplify chroma AC in CABAC residual decoding.
2008-12-19 Michael NiedermayerOptimize ctx calculation in decode_cabac_mb_mvd(),...
2008-12-18 Michael NiedermayerRemove unacceptable NULL pointer hack from mc code.
2008-12-18 Michael NiedermayerCheck ref values in CABAC H.264 for validity.
2008-12-18 Michael NiedermayerMove idct_(dc)add closer to where it is needed.
2008-12-18 Michael Niedermayerindent
2008-12-18 Michael NiedermayerReorder ifs in chroma hl_decode_mb to avoid a duplicate...
2008-12-18 Michael Niedermayers/h->cbp_table[mb_xy]/h->cbp/
2008-12-18 Michael NiedermayerFaster CAVLC decoding of trailing_ones. Based on a...
2008-12-18 Jason Garrett-GlaserReplace i by trailing_ones, part of a patch by dark...
2008-12-18 Michael NiedermayerRemove if() surrounding decode_cabac_mb_type() that...
2008-12-18 Michael NiedermayerRemove unreachable else clause, found by dark shikari.
2008-12-18 Michael NiedermayerRemove useless IS_8x8DCT check i forgot, spotted by...
2008-12-18 Michael NiedermayerDo not calculate idct_dc_add/idct_add when the variable...
2008-12-18 Michael NiedermayerRemove redundant nnz variable.
2008-12-18 Michael Niedermayerindent
2008-12-18 Michael NiedermayerUse the new idct functions (except chroma as it was...
2008-12-18 Michael NiedermayerSkip non intra luma code when there is no coded luma.
2008-12-18 Michael NiedermayerSkip chroma handling when there is no coded chroma.
2008-12-17 Michael NiedermayerReplace != 0 || check by |
2008-12-17 Michael NiedermayerSplit filter_mb_dir() out of filter_mb().
2008-12-16 Michael NiedermayerFix indention, also do a little vertical alignment...
2008-12-16 Michael NiedermayerFactorize 3 multiplications out, code becomes 3 cpu...
2008-12-16 Michael NiedermayerMove ENABLE_SMALL back to the per MB check, as otherwis...
2008-12-16 Michael NiedermayerDo not recalculate constant part of is_complex for...
2008-12-16 Michael NiedermayerSupport the new lossless mode.
2008-12-15 Michael NiedermayerEnable filter_mb_fast if CODEC_FLAG2_FAST is set.
2008-12-14 Anders GrönbergAdd a few const qualifiers in appropriate places.
2008-12-05 Michael NiedermayerCheck that cpb_count is within the allowed range.
2008-12-01 Michael NiedermayerGet rid of now unneeded pps/sps correctness code as...
2008-12-01 Michael NiedermayerAllocate parameter sets sanely instead of using alloc_p...
2008-11-30 Michael NiedermayerFix segfault due to deallocated entries in delayed_pic...
2008-11-26 Diego BiurrunMove encoder-specific quantize_c and related tables...
2008-11-24 Diego BiurrunUse golomb_to_pict_type instead of its duplicate, slice...
2008-11-13 Carl Eugen HoyosFix H.264 decoding.
2008-11-12 Roman ShaposhnikMaking it easier to send arbitrary structures as work...
2008-11-04 Andreas Ömanh264: Implement decoding of picture timing SEI message.
2008-10-28 Michael NiedermayerReplace literally hardcoded max slice number by named...
2008-10-21 Aurelien Jacobsuses FF_ARRAY_ELEMS() where appropriate
2008-10-04 Diego PettenòMark ff_div6 and ff_rem6 static in h264.c. Patch by...
2008-10-02 Carl Eugen HoyosRename copy_picture to ff_copy_picture.
2008-09-26 Diego BiurrunRemove unused variable.
2008-09-25 Michael NiedermayerAvoid out of picture accesses when CODEC_FLAG_EMU_EDGE...
2008-09-25 Michael NiedermayerDo not free sps & pps on width/height changes.
2008-09-25 Michael NiedermayerInitialize next/last_picture* as the generic code does...
2008-09-25 Michael NiedermayerPrint which slices are IDR not just the slice type.
2008-09-25 Michael NiedermayerFix CAVLC+8x8+MBAFF loop filter.
2008-09-24 Michael NiedermayerField -> MBAFF direct mode can use data from fields...
2008-09-22 Michael NiedermayerA few empty lines for readability.
2008-09-22 Michael NiedermayerAnother try to fix temporal direct mode references.
2008-09-22 Michael NiedermayerFix ref_shift so that it is correct for more/all? MBAFF...
2008-09-21 Michael Niedermayerindent
2008-09-21 Michael NiedermayerCorrect comment in the direct mode code.
2008-09-21 Michael NiedermayerSimplify initialization of a few direct mode related...
2008-09-21 Michael NiedermayerMake MBAFF temporal direct mode closer to the spec.
2008-09-21 Michael NiedermayerMove direct_dist_scale_factor() and direct_ref_list_ini...
2008-09-21 Michael NiedermayerSet poc for field references in MBAFF.
2008-09-19 Michael NiedermayerRemove fixme that is based on the assumption of !direct...
2008-09-19 Michael NiedermayerRemove check and error message for "MBAFF + !direct_8x8...
2008-09-18 Michael NiedermayerMake pps/sps scaling_matrix initialization closer to...
2008-09-18 Michael NiedermayerEnsure that extradata is not parsed twice.
2008-09-11 Jason Garrett-GlaserFix incorrect printing of brainfart cropping error...
2008-09-08 Michael NiedermayerRename error_resilience to error_recognition.
2008-09-04 Michael NiedermayerFix artifacts of MPEG4-720I-DN-SV8K.trp caused by lack...
2008-09-02 Michael NiedermayerTry to support invalid h264 that does not mark IDR...
2008-08-13 Diego BiurrunRemove unused variable.
2008-08-11 Michael NiedermayerThe deblock filter does not need all the intra availabi...
2008-08-11 Michael NiedermayerSimplify constrained_intra_pred code in fill_caches().
2008-08-11 Michael NiedermayerSupport MBAFF + constrained intra prediction.
next