[FFmpeg-cvslog] r21112 - trunk/libavcodec/h263data.h
michael
subversion
Sat Jan 9 19:12:06 CET 2010
Author: michael
Date: Sat Jan 9 19:12:06 2010
New Revision: 21112
Log:
Make inter_level/run global again, msmpeg4 uses them.
... I did test but it wasnt recompiled ...
Modified:
trunk/libavcodec/h263data.h
Modified: trunk/libavcodec/h263data.h
==============================================================================
--- trunk/libavcodec/h263data.h Sat Jan 9 18:22:37 2010 (r21111)
+++ trunk/libavcodec/h263data.h Sat Jan 9 19:12:06 2010 (r21112)
@@ -127,7 +127,7 @@ const uint16_t inter_vlc[103][2] = {
{ 0x5e, 12 },{ 0x5f, 12 },{ 0x3, 7 },
};
-static const int8_t inter_level[102] = {
+const int8_t inter_level[102] = {
1, 2, 3, 4, 5, 6, 7, 8,
9, 10, 11, 12, 1, 2, 3, 4,
5, 6, 1, 2, 3, 4, 1, 2,
@@ -143,7 +143,7 @@ static const int8_t inter_level[102] = {
1, 1, 1, 1, 1, 1,
};
-static const int8_t inter_run[102] = {
+const int8_t inter_run[102] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 1, 1, 1, 1,
1, 1, 2, 2, 2, 2, 3, 3,
More information about the ffmpeg-cvslog
mailing list