summaryrefslogtreecommitdiff
path: root/libavcodec/rv34data.h
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2008-12-23 18:27:06 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2008-12-23 18:27:06 +0000
commitffedb5c19a2a0f57d686c40b01395befe9f38e67 (patch)
treeebdec94ee75c0f0477b6cc85fed377dbe55d1ceb /libavcodec/rv34data.h
parent2d76bf391ac7aed0d02c93658fecb0ab2bc4e915 (diff)
352l: correct calculating number of bits for storing macroblock offset in RV3/4
Originally committed as revision 16293 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv34data.h')
-rw-r--r--libavcodec/rv34data.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv34data.h b/libavcodec/rv34data.h
index e4862a3ba0..95e5572df7 100644
--- a/libavcodec/rv34data.h
+++ b/libavcodec/rv34data.h
@@ -138,7 +138,7 @@ static const uint8_t rv34_dquant_tab[2][32]={
* maximum number of macroblocks for each of the possible slice offset sizes
* @todo This is the same as ff_mba_max, maybe use it instead.
*/
-static const uint16_t rv34_mb_max_sizes[6] = { 0x2F, 0x68, 0x18B, 0x62F, 0x18BF, 0x23FF };
+static const uint16_t rv34_mb_max_sizes[6] = { 0x2F, 0x62, 0x18B, 0x62F, 0x18BF, 0x23FF };
/**
* bits needed to code the slice offset for the given size
* @todo This is the same as ff_mba_length, maybe use it instead.