summaryrefslogtreecommitdiff
path: root/libavcodec/ivi_common.h
diff options
context:
space:
mode:
authorMaxim Poliakovski <max_pole@gmx.de>2010-06-08 09:20:12 +0000
committerMaxim Poliakovski <max_pole@gmx.de>2010-06-08 09:20:12 +0000
commit0933f55829f63485ae967a08c8f7b2c2a77ee1af (patch)
treed12eb419dd7d72f71e74995647647990f2dff0fe /libavcodec/ivi_common.h
parent00ce2cbed55d2bfb67ed7c2abb734f452a7b9267 (diff)
downloadffmpeg-0933f55829f63485ae967a08c8f7b2c2a77ee1af.tar.gz
Prepare Indeo4 (step 1): upscale indeo5 base tables by 2 and convert those into uint16_t.
Originally committed as revision 23523 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ivi_common.h')
-rw-r--r--libavcodec/ivi_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ivi_common.h b/libavcodec/ivi_common.h
index bb2d4ed2ed..2028ec9e0c 100644
--- a/libavcodec/ivi_common.h
+++ b/libavcodec/ivi_common.h
@@ -158,8 +158,8 @@ typedef struct {
int32_t checksum; ///< for debug purposes
int checksum_present;
int bufsize; ///< band buffer size in bytes
- const uint8_t *intra_base; ///< quantization matrix for intra blocks
- const uint8_t *inter_base; ///< quantization matrix for inter blocks
+ const uint16_t *intra_base; ///< quantization matrix for intra blocks
+ const uint16_t *inter_base; ///< quantization matrix for inter blocks
const uint8_t *intra_scale; ///< quantization coefficient for intra blocks
const uint8_t *inter_scale; ///< quantization coefficient for inter blocks
} IVIBandDesc;