[FFmpeg-cvslog] rv34: use uint16_t for RV34DecContext.deblock_coefs
Janne Grunau
git at videolan.org
Wed Feb 15 02:14:05 CET 2012
ffmpeg | branch: master | Janne Grunau <janne-libav at jannau.net> | Thu Feb 9 21:19:16 2012 +0100| [bf61ef2316b6b6eac815fe5ada98d2ed41086164] | committer: Janne Grunau
rv34: use uint16_t for RV34DecContext.deblock_coefs
It is used as bitfield with 16 entries.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bf61ef2316b6b6eac815fe5ada98d2ed41086164
---
libavcodec/rv34.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/rv34.h b/libavcodec/rv34.h
index d86b009..7623214 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];
More information about the ffmpeg-cvslog
mailing list