aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/h264.c
Commit message (Expand)AuthorAgeFilesLines
* Reorder indexes in weight tables.Michael Niedermayer2010-03-031-21/+21
* cosmetic addition of {}Michael Niedermayer2010-03-031-2/+2
* Merge weight & offset tables, 15 cpu cycles faster.Michael Niedermayer2010-03-031-21/+21
* Simplify implicit_weight table init.Michael Niedermayer2010-03-031-6/+4
* Fix a bunch of bugs ive introduced recently that broke threaded decoding.Michael Niedermayer2010-03-021-12/+13
* revert r22112 which broke playback of cathedral-beta2-400extra-crop-avc.mp4Aurelien Jacobs2010-03-011-3/+1
* Process picture aspect ratio changes in H.264.Janusz Krzysztofik2010-02-281-1/+3
* Move init of right side of ref_cache from fill_caches() to init_the_darn_deco...Michael Niedermayer2010-02-261-0/+4
* Get rid of mb2b8_xy and b8_stride, change arrays organized based on b8_stride toMichael Niedermayer2010-02-251-6/+0
* Dont allocate direct_table 8 times too large.Michael Niedermayer2010-02-251-1/+1
* Reorder intra4x4_pred_mode so that we can read/write 4 values at once.Michael Niedermayer2010-02-251-7/+4
* Store intra4x4_pred_mode per row only.Michael Niedermayer2010-02-251-9/+9
* Cut the size of mvd_table by yet another factor of 2.Michael Niedermayer2010-02-251-3/+3
* Keep mvd_table values of only 2 mb rows.Michael Niedermayer2010-02-251-0/+4
* Change mvd_cache & mvd_table to 8bit, this is overall a bit fasterMichael Niedermayer2010-02-241-2/+2
* Try to set has_b_frames in codec init if we know everything alraedy.Michael Niedermayer2010-02-231-0/+4
* Move extradata reading code into codec init instead of doing itMichael Niedermayer2010-02-231-55/+45
* Remove unused variable mb_xy.avcoder2010-02-211-1/+0
* H264: use alias-safe macrosMåns Rullgård2010-02-181-2/+2
* Simplify deblock_left/top condition for deblocking_filter=2Michael Niedermayer2010-02-181-3/+2
* Move predict_field_decoding_flag() from h264.h to .c as its only used there a...Michael Niedermayer2010-02-171-0/+11
* Move check for and call of predict_field_decoding_flag() from the mb code toMichael Niedermayer2010-02-171-0/+4
* Merge decode_cabac_mb_dqp() with surronding code.Michael Niedermayer2010-02-141-0/+2
* Drop if(0) code.Michael Niedermayer2010-02-141-12/+0
* h264: Remove unused variables.Alexander Strange2010-02-131-3/+1
* Dont drop B frames without last_picture.Michael Niedermayer2010-02-121-5/+0
* Try to support truncated h264 frames mixed with mpeg pes headers in mkv.Michael Niedermayer2010-02-121-0/+11
* Set x264_build so that checks are simpler.Michael Niedermayer2010-02-081-1/+2
* Fix large timebases.Michael Niedermayer2010-02-041-3/+3
* Export H264 profile and level in AVCodecContext.Rafaël Carré2010-01-281-0/+6
* Fix svq3_* function declarations.Rafaël Carré2010-01-271-7/+4
* 100l typo fix, mixed up +-1 forcing the loop filter skip to never skip.Michael Niedermayer2010-01-261-1/+1
* 100l, correct wrong H.264+adaptive MBAFF decodingAlexander Strange2010-01-251-2/+5
* H.264: Use 64-/128-bit write-combining macros for copiesAlexander Strange2010-01-251-22/+22
* Remove is_complex from loop_filter() its useless there in its current form.Michael Niedermayer2010-01-241-5/+3
* Added a missing const to ff_h264_get_slice_type().Laurent Aimar2010-01-241-1/+1
* Remove all uses of slice_type* from the loop filter, also remove itsMichael Niedermayer2010-01-241-6/+0
* Move +52 from the loop filter to the alpha/beta offsets in the context.Michael Niedermayer2010-01-231-6/+11
* Cosmetic, get rid of &x[0]Michael Niedermayer2010-01-181-1/+1
* Fix compilation with -O0.Michael Niedermayer2010-01-181-3/+0
* Fix 10l segfault with threads.Michael Niedermayer2010-01-181-0/+1
* Perform reference remapping at fill_cache() time instead of in theMichael Niedermayer2010-01-181-2/+21
* Move the qp check to skip the loop filter up.Michael Niedermayer2010-01-181-1/+2
* Split fill_caches() between filter and decoder.Michael Niedermayer2010-01-171-2/+2
* Rearchitecturing the stiched up goose part 1Michael Niedermayer2010-01-171-56/+85
* Consider slice_beta_offet in qp_thresh.Michael Niedermayer2010-01-161-1/+1
* Avoid wasting 4 cpu cycles per MB in redundantly calculating qp_thresh.Michael Niedermayer2010-01-161-0/+1
* remove unused variableMichael Niedermayer2010-01-131-2/+0
* Split cabac decoding code out of h264.c.Michael Niedermayer2010-01-131-1098/+4
* Split cavlc out of h264.c.Michael Niedermayer2010-01-131-1436/+3