From bf61ef2316b6b6eac815fe5ada98d2ed41086164 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Thu, 9 Feb 2012 21:19:16 +0100 Subject: rv34: use uint16_t for RV34DecContext.deblock_coefs It is used as bitfield with 16 entries. --- libavcodec/rv34.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/rv34.h') diff --git a/libavcodec/rv34.h b/libavcodec/rv34.h index d86b009705..76232145c5 100644 --- a/libavcodec/rv34.h +++ b/libavcodec/rv34.h @@ -110,7 +110,7 @@ typedef struct RV34DecContext{ uint16_t *cbp_luma; ///< CBP values for luma subblocks uint8_t *cbp_chroma; ///< CBP values for chroma subblocks - int *deblock_coefs; ///< deblock coefficients for each macroblock + uint16_t *deblock_coefs; ///< deblock coefficients for each macroblock /** 8x8 block available flags (for MV prediction) */ DECLARE_ALIGNED(8, uint32_t, avail_cache)[3*4]; -- cgit v1.2.3