comparison rv34.h @ 8224:6771b3544991 libavcodec

Invoke future RV30/40 loop filter for already decoded rows instead of the whole frame at once.
author kostya
date Sat, 29 Nov 2008 06:22:31 +0000
parents 2d01559f824c
children 91a340f25c8c
comparison
equal deleted inserted replaced
8223:d2a146706bc5 8224:6771b3544991
113 DECLARE_ALIGNED_8(uint32_t, avail_cache[3*4]); 113 DECLARE_ALIGNED_8(uint32_t, avail_cache[3*4]);
114 114
115 int (*parse_slice_header)(struct RV34DecContext *r, GetBitContext *gb, SliceInfo *si); 115 int (*parse_slice_header)(struct RV34DecContext *r, GetBitContext *gb, SliceInfo *si);
116 int (*decode_mb_info)(struct RV34DecContext *r); 116 int (*decode_mb_info)(struct RV34DecContext *r);
117 int (*decode_intra_types)(struct RV34DecContext *r, GetBitContext *gb, int8_t *dst); 117 int (*decode_intra_types)(struct RV34DecContext *r, GetBitContext *gb, int8_t *dst);
118 void (*loop_filter)(struct RV34DecContext *r); 118 void (*loop_filter)(struct RV34DecContext *r, int row);
119 }RV34DecContext; 119 }RV34DecContext;
120 120
121 /** 121 /**
122 * common decoding functions 122 * common decoding functions
123 */ 123 */