Tue, 06 Jul 2010 07:40:35 +0000 |
diego |
Add av_unused to decode_mb_skip declaration to fix the following warning:
libavcodec
|
Mon, 05 Jul 2010 12:42:19 +0000 |
michael |
Factorize ff_generate_sliding_window_mmcos() out.
libavcodec
|
Wed, 30 Jun 2010 15:38:06 +0000 |
mru |
Fix grammar errors in documentation
libavcodec
|
Fri, 28 May 2010 20:14:14 +0000 |
hyc |
Cleanup prev commit, flag variable should start with 0
libavcodec
|
Fri, 28 May 2010 18:50:39 +0000 |
hyc |
Parse avctx->extradata if available.
libavcodec
|
Wed, 26 May 2010 19:00:59 +0000 |
cehoyos |
Factorize ff_h264_decode_extradata().
libavcodec
|
Tue, 20 Apr 2010 14:45:34 +0000 |
diego |
Remove explicit filename from Doxygen @file commands.
libavcodec
|
Tue, 13 Apr 2010 22:15:49 +0000 |
diego |
Move static function fill_filter_caches() from h264.h to h264.c.
libavcodec
|
Tue, 30 Mar 2010 21:05:11 +0000 |
michael |
Fix implicit weight for b frames in mbaff.
libavcodec
|
Tue, 30 Mar 2010 15:50:57 +0000 |
benoit |
Replace @returns by @return.
libavcodec
|
Tue, 16 Mar 2010 01:17:00 +0000 |
mru |
Move H264 dsputil functions into their own struct
libavcodec
|
Mon, 15 Mar 2010 23:00:53 +0000 |
mru |
H264: fix signed overflow in constant multiplication
libavcodec
|
Sat, 06 Mar 2010 14:24:59 +0000 |
mru |
Remove DECLARE_ALIGNED_{8,16} macros
libavcodec
|
Thu, 04 Mar 2010 02:00:05 +0000 |
michael |
Port Optimizations about *_type init from decode to filter code.
libavcodec
|
Thu, 04 Mar 2010 01:03:15 +0000 |
michael |
Optimize *_type init, 1.5 cpu cycles faster.
libavcodec
|
Wed, 03 Mar 2010 21:10:08 +0000 |
michael |
Reorder indexes in weight tables.
libavcodec
|
Wed, 03 Mar 2010 20:36:56 +0000 |
michael |
Move all context fields that are not used in the mb and block layers
libavcodec
|
Wed, 03 Mar 2010 19:44:27 +0000 |
michael |
remove unused left_border field from context.
libavcodec
|
Wed, 03 Mar 2010 19:31:58 +0000 |
michael |
Note about luma/chroma_weight tables and their datatype.
libavcodec
|
Wed, 03 Mar 2010 16:47:40 +0000 |
michael |
move svq3 specific fields to the end of the context
libavcodec
|
Wed, 03 Mar 2010 14:41:43 +0000 |
michael |
Merge weight & offset tables, 15 cpu cycles faster.
libavcodec
|
Wed, 03 Mar 2010 02:20:48 +0000 |
michael |
Another 3 useless zeroing instructions.
libavcodec
|
Wed, 03 Mar 2010 01:38:27 +0000 |
michael |
Load the whole left side of mv&ref only when needed.
libavcodec
|
Sat, 27 Feb 2010 04:09:48 +0000 |
michael |
Merge h->slice_table[left_xy[0/1] ] checks, 4 cpu cycles speedup
libavcodec
|
Sat, 27 Feb 2010 03:46:16 +0000 |
michael |
Split *_type setting up, 4 cpu cycles faster.
libavcodec
|
Fri, 26 Feb 2010 15:26:11 +0000 |
michael |
Only load the topleft mv/ref when the topright is unavailable.
libavcodec
|
Fri, 26 Feb 2010 15:03:00 +0000 |
michael |
Remove some useless operations from the code setting left_cbp.
libavcodec
|
Fri, 26 Feb 2010 09:13:40 +0000 |
michael |
Simplify code to set cbp_*
libavcodec
|
Fri, 26 Feb 2010 03:27:52 +0000 |
michael |
Move init of right side of ref_cache from fill_caches() to init_the_darn_decoder().
libavcodec
|
Fri, 26 Feb 2010 02:54:03 +0000 |
michael |
Remove 3 mv_cache zeroing instructions that zeroed the right side.
libavcodec
|
Fri, 26 Feb 2010 01:38:12 +0000 |
michael |
Remove useless check of the 2 left MBs of a pair being in the same slice.
libavcodec
|
Fri, 26 Feb 2010 00:10:35 +0000 |
michael |
Remove unneeded line of code from the neighbor setting code in h264.
libavcodec
|
Thu, 25 Feb 2010 23:44:42 +0000 |
michael |
Get rid of mb2b8_xy and b8_stride, change arrays organized based on b8_stride to
libavcodec
|
Thu, 25 Feb 2010 15:27:55 +0000 |
michael |
Store data in direct_table interleaved.
libavcodec
|
Thu, 25 Feb 2010 14:54:31 +0000 |
michael |
Simplify intra4x4_pred_mode_cache init.
libavcodec
|
Thu, 25 Feb 2010 14:26:12 +0000 |
michael |
Reorder intra4x4_pred_mode so that we can read/write 4 values at once.
libavcodec
|
Thu, 25 Feb 2010 14:02:39 +0000 |
michael |
Store intra4x4_pred_mode per row only.
libavcodec
|
Thu, 25 Feb 2010 12:51:32 +0000 |
michael |
unroll tiny and trivial loop. Same speed but clearer.
libavcodec
|
Thu, 25 Feb 2010 04:11:33 +0000 |
michael |
Cut the size of mvd_table by yet another factor of 2.
libavcodec
|
Thu, 25 Feb 2010 02:42:25 +0000 |
michael |
Keep mvd_table values of only 2 mb rows.
libavcodec
|
Wed, 24 Feb 2010 20:43:06 +0000 |
michael |
Change mvd_cache & mvd_table to 8bit, this is overall a bit faster
libavcodec
|
Wed, 24 Feb 2010 01:57:31 +0000 |
michael |
Replace /2 by faster >>1 as the mvd values are now all positive.
libavcodec
|
Wed, 24 Feb 2010 01:56:27 +0000 |
michael |
Remove unused variable. Seems i forgot to commit this.
libavcodec
|
Sun, 21 Feb 2010 15:29:17 +0000 |
diego |
Remove unused variable, fixes warnings of the type:
libavcodec
|
Thu, 18 Feb 2010 16:24:31 +0000 |
mru |
H264: use alias-safe macros
libavcodec
|
Wed, 17 Feb 2010 02:25:05 +0000 |
michael |
Move predict_field_decoding_flag() from h264.h to .c as its only used there and belongs
libavcodec
|
Wed, 17 Feb 2010 02:14:02 +0000 |
michael |
Move check for and call of predict_field_decoding_flag() from the mb code to
libavcodec
|
Mon, 15 Feb 2010 22:07:02 +0000 |
michael |
Split setting neighboring MBs from fill_decode_caches()
libavcodec
|
Sun, 14 Feb 2010 14:41:27 +0000 |
michael |
Store sub_mb_type in direct_cache/direct_table.
libavcodec
|
Sun, 14 Feb 2010 02:08:48 +0000 |
michael |
Remove slice_table checks from decode_cabac_mb_cbp_luma() and set left/top_cbp so
libavcodec
|
Sun, 14 Feb 2010 02:04:41 +0000 |
michael |
Revert r21814
libavcodec
|
Sat, 13 Feb 2010 22:53:44 +0000 |
michael |
Direct temporal skiped MBs dont need fill_decode_caches() at all so dont call it
libavcodec
|
Sat, 13 Feb 2010 21:09:38 +0000 |
astrange |
h264: Remove unused variables.
libavcodec
|
Sat, 13 Feb 2010 21:08:17 +0000 |
astrange |
h264: Fix pointer warnings by removing redundant [0]
libavcodec
|
Sat, 13 Feb 2010 20:57:13 +0000 |
astrange |
Fix integer overflow warnings in h264.h
libavcodec
|
Sat, 13 Feb 2010 20:13:54 +0000 |
michael |
Merge (IS_SKIP(mb_type) || IS_DIRECT(mb_type)
libavcodec
|
Sat, 13 Feb 2010 20:13:10 +0000 |
michael |
Skiped MBs dont need the cbp stuff so skip initing that.
libavcodec
|
Sat, 13 Feb 2010 19:39:18 +0000 |
michael |
Also skip direct/mvd_cache init for skiped blocks.
libavcodec
|
Sat, 13 Feb 2010 19:00:51 +0000 |
michael |
Move more code under if(!IS_DIRECT(mb_type)).
libavcodec
|
Sat, 13 Feb 2010 18:23:46 +0000 |
michael |
Skip some more code that isnt needed for direct MBs.
libavcodec
|
Sat, 13 Feb 2010 15:57:49 +0000 |
michael |
Move setting MB_TYPE_L0L1 for direct MBs up, this is simpler.
libavcodec
|
Sat, 13 Feb 2010 15:30:27 +0000 |
michael |
Dont calculate any surrounding MVs for temporal MBs
libavcodec
|
Mon, 08 Feb 2010 04:24:50 +0000 |
michael |
Remove an apparently unneeded && !FRAME_MBAFF.
libavcodec
|
Sun, 07 Feb 2010 23:15:53 +0000 |
michael |
Ooops, 10l forgot to commit h264.h.
libavcodec
|
Wed, 27 Jan 2010 22:22:01 +0000 |
cehoyos |
Fix svq3_* function declarations.
libavcodec
|
Wed, 27 Jan 2010 00:15:55 +0000 |
michael |
Simplify left_xy init
libavcodec
|
Tue, 26 Jan 2010 23:54:11 +0000 |
michael |
Split fill_caches() between loopfilter & decode, the 2 no longer where common
libavcodec
|
Tue, 26 Jan 2010 20:28:58 +0000 |
michael |
use left_xy[1] in mbaff QP loop filter check, this improves the amount that can
libavcodec
|
Tue, 26 Jan 2010 20:25:14 +0000 |
michael |
Optimize mv/ref cache init for left MB.
libavcodec
|
Tue, 26 Jan 2010 14:55:19 +0000 |
michael |
Simplify left_xy content for the loop filter, this also makes it closer to
libavcodec
|
Tue, 26 Jan 2010 13:38:18 +0000 |
michael |
Set top & left types for deblock in fill_caches().
libavcodec
|
Tue, 26 Jan 2010 13:28:55 +0000 |
michael |
cosmetic
libavcodec
|
Tue, 26 Jan 2010 13:27:22 +0000 |
michael |
Fix qp_thres loop filter check for MBAFF.
libavcodec
|
Tue, 26 Jan 2010 10:35:36 +0000 |
michael |
Optimize mb neighbor initialization for MBAFF in fill_caches().
libavcodec
|
Mon, 25 Jan 2010 00:30:44 +0000 |
astrange |
H.264: Use 64-/128-bit write-combining macros for copies
libavcodec
|
Sun, 24 Jan 2010 16:37:12 +0000 |
fenrir |
Added a missing const to ff_h264_get_slice_type().
libavcodec
|
Sun, 24 Jan 2010 13:43:26 +0000 |
michael |
Prefer cbp over cbp_table.
libavcodec
|
Sat, 23 Jan 2010 22:11:46 +0000 |
michael |
Remove unneeded reset of non_zero_count_cache for deblock.
libavcodec
|
Sat, 23 Jan 2010 21:57:36 +0000 |
michael |
Remove useless things from the deblock side of fill_caches().
libavcodec
|
Sat, 23 Jan 2010 21:45:12 +0000 |
michael |
make mv_cache init 64bit where possible.
libavcodec
|
Fri, 22 Jan 2010 03:25:11 +0000 |
mru |
Move array specifiers outside DECLARE_ALIGNED() invocations
libavcodec
|
Tue, 19 Jan 2010 03:14:45 +0000 |
michael |
Dont waste time initializing stuff for deblocking intra mbs, none of
libavcodec
|
Mon, 18 Jan 2010 23:34:37 +0000 |
michael |
Fix accumulated indention errors.
libavcodec
|
Mon, 18 Jan 2010 23:31:14 +0000 |
michael |
Optimize top non_zero_count_cache init.
libavcodec
|
Mon, 18 Jan 2010 23:30:21 +0000 |
michael |
Dont init chroma elements of non_zero_count_cache for deblock.
libavcodec
|
Mon, 18 Jan 2010 23:27:53 +0000 |
michael |
Remove unneeded for_deblock check, this code was alraedy under for_deblock.
libavcodec
|
Mon, 18 Jan 2010 16:11:13 +0000 |
michael |
Set h->cbp for ff_h264_filter_mb_fast().
libavcodec
|
Mon, 18 Jan 2010 13:09:53 +0000 |
michael |
Move CAVLC 8x8 DCT special case from ff_h264_filter_mb() to fill_caches
libavcodec
|
Mon, 18 Jan 2010 05:15:31 +0000 |
michael |
Perform reference remapping at fill_cache() time instead of in the
libavcodec
|
Mon, 18 Jan 2010 00:34:28 +0000 |
michael |
Make qp check for loop filter skiping also work with MBAFF.
libavcodec
|
Mon, 18 Jan 2010 00:21:58 +0000 |
michael |
Comment about a cornercase we ignore currently
libavcodec
|
Mon, 18 Jan 2010 00:20:44 +0000 |
michael |
Move the qp check to skip the loop filter up.
libavcodec
|
Sun, 17 Jan 2010 23:44:23 +0000 |
michael |
Reorganize how values are stored in h->non_zero_count.
libavcodec
|
Sun, 17 Jan 2010 22:05:36 +0000 |
michael |
Disable a few things in fill_filter_caches() that arent needed.
libavcodec
|
Sun, 17 Jan 2010 21:43:08 +0000 |
michael |
Split fill_caches() between filter and decoder.
libavcodec
|
Sun, 17 Jan 2010 20:35:55 +0000 |
michael |
Rearchitecturing the stiched up goose part 1
libavcodec
|
Sat, 16 Jan 2010 11:55:35 +0000 |
michael |
Avoid wasting 4 cpu cycles per MB in redundantly calculating qp_thresh.
libavcodec
|
Sat, 16 Jan 2010 05:41:33 +0000 |
michael |
Replace cabac checks in inline functions from h264.h with constants.
libavcodec
|
Fri, 15 Jan 2010 03:42:56 +0000 |
michael |
Add forgotten include of h264_mvpred.h to h264.h.
libavcodec
|
Wed, 13 Jan 2010 02:35:36 +0000 |
michael |
Split cabac decoding code out of h264.c.
libavcodec
|
Wed, 13 Jan 2010 01:59:19 +0000 |
michael |
Split cavlc out of h264.c.
libavcodec
|
Tue, 12 Jan 2010 21:36:26 +0000 |
michael |
Split motion vector prediction off h264.c/h.
libavcodec
|
Tue, 12 Jan 2010 21:17:26 +0000 |
michael |
Move check_intra4x4_pred_mode() back from h264.h to h264.c, the function is just
libavcodec
|
Tue, 12 Jan 2010 20:59:00 +0000 |
michael |
Split all the reference picture handling off h264.c.
libavcodec
|
Tue, 12 Jan 2010 19:33:45 +0000 |
michael |
Split (picture|seq) parameter set decoding out of h264.c.
libavcodec
|
Tue, 12 Jan 2010 18:54:40 +0000 |
michael |
Split SEI code off h264.c.
libavcodec
|
Tue, 12 Jan 2010 14:32:58 +0000 |
michael |
Split direct mode (macro)block decoding off h264.c.
libavcodec
|
Tue, 12 Jan 2010 06:01:55 +0000 |
michael |
Split h264 loop filter off h264.c.
libavcodec
|
Tue, 12 Jan 2010 05:30:31 +0000 |
michael |
Get rid of #include "svq3.c"
libavcodec
|
Mon, 11 Jan 2010 00:31:39 +0000 |
conrad |
Export fullrange flag and color information for h.264
libavcodec
|
Sat, 09 Jan 2010 16:20:41 +0000 |
ramiro |
Export get_slice_type() as ff_h264_get_slice_type().
libavcodec
|
Tue, 09 Jun 2009 21:16:40 +0000 |
cehoyos |
Add field prev_interlaced_frame to H264Context to be able to flag soft telecine
libavcodec
|
Fri, 10 Apr 2009 11:31:55 +0000 |
reimar |
Add forgotten void return type to ff_h264_free_context
libavcodec
|
Fri, 10 Apr 2009 07:01:55 +0000 |
reimar |
Add a ff_h264_free_context function and call it from the H.264 parser.
libavcodec
|
Wed, 04 Mar 2009 19:37:19 +0000 |
schreter |
Add support for ct_type to correctly detect interlaced flag
libavcodec
|
Sat, 28 Feb 2009 08:38:33 +0000 |
stefang |
sub_mb_type[] needs to be 8-byte aligned because it is referenced
libavcodec
|
Sat, 21 Feb 2009 19:54:14 +0000 |
cehoyos |
Make the following H264 functions available to the parser:
libavcodec
|
Wed, 18 Feb 2009 23:33:30 +0000 |
cehoyos |
Parse buffering period (H.264, D.1.1).
libavcodec
|
Wed, 18 Feb 2009 23:25:59 +0000 |
cehoyos |
Store CPB count in the context.
libavcodec
|
Wed, 18 Feb 2009 00:38:10 +0000 |
cehoyos |
Parse cbp_removal_delay in SEI picture structure.
libavcodec
|