diff options
author | Janne Grunau <janne-libav@jannau.net> | 2012-02-09 21:19:16 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-02-14 14:42:55 +0100 |
commit | bf61ef2316b6b6eac815fe5ada98d2ed41086164 (patch) | |
tree | c28b2f8f689ae04c749a29d7be09e173aa725d30 | |
parent | c3b57d6e76cd3df87652639405505b7de5746ca8 (diff) | |
download | ffmpeg-bf61ef2316b6b6eac815fe5ada98d2ed41086164.tar.gz |
rv34: use uint16_t for RV34DecContext.deblock_coefs
It is used as bitfield with 16 entries.
-rw-r--r-- | libavcodec/rv34.h | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |