comparison rv34.h @ 11369:98970e51365a libavcodec

Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead.
author mru
date Sat, 06 Mar 2010 14:24:59 +0000
parents 34a65026fa06
children 7dd2a45249a9
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
109 uint16_t *cbp_luma; ///< CBP values for luma subblocks 109 uint16_t *cbp_luma; ///< CBP values for luma subblocks
110 uint8_t *cbp_chroma; ///< CBP values for chroma subblocks 110 uint8_t *cbp_chroma; ///< CBP values for chroma subblocks
111 int *deblock_coefs; ///< deblock coefficients for each macroblock 111 int *deblock_coefs; ///< deblock coefficients for each macroblock
112 112
113 /** 8x8 block available flags (for MV prediction) */ 113 /** 8x8 block available flags (for MV prediction) */
114 DECLARE_ALIGNED_8(uint32_t, avail_cache)[3*4]; 114 DECLARE_ALIGNED(8, uint32_t, avail_cache)[3*4];
115 115
116 int (*parse_slice_header)(struct RV34DecContext *r, GetBitContext *gb, SliceInfo *si); 116 int (*parse_slice_header)(struct RV34DecContext *r, GetBitContext *gb, SliceInfo *si);
117 int (*decode_mb_info)(struct RV34DecContext *r); 117 int (*decode_mb_info)(struct RV34DecContext *r);
118 int (*decode_intra_types)(struct RV34DecContext *r, GetBitContext *gb, int8_t *dst); 118 int (*decode_intra_types)(struct RV34DecContext *r, GetBitContext *gb, int8_t *dst);
119 void (*loop_filter)(struct RV34DecContext *r, int row); 119 void (*loop_filter)(struct RV34DecContext *r, int row);