summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg4data.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-03-07 13:27:15 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-03-07 13:27:15 +0000
commit73c8e5144af3f90ccb21fa1d058ae02b3394aab0 (patch)
treec1e5f6cbbcf985a6e697091ba9503cc83d9d1065 /libavcodec/mpeg4data.h
parentcc9ba006eca2222fb1bc3cdde40a6a9d8f36ef75 (diff)
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
Originally committed as revision 318 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg4data.h')
-rw-r--r--libavcodec/mpeg4data.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/mpeg4data.h b/libavcodec/mpeg4data.h
index e9cb30d6a5..4eed756545 100644
--- a/libavcodec/mpeg4data.h
+++ b/libavcodec/mpeg4data.h
@@ -93,3 +93,9 @@ static RLTable rl_intra = {
intra_run,
intra_level,
};
+
+static const UINT16 sprite_trajectory_tab[15][2] = {
+ {0x00, 2}, {0x02, 3}, {0x03, 3}, {0x04, 3}, {0x05, 3}, {0x06, 3},
+ {0x0E, 4}, {0x1E, 5}, {0x3E, 6}, {0x7E, 7}, {0xFE, 8},
+ {0x1FE, 9},{0x3FE, 10},{0x7FE, 11},{0xFFE, 12},
+};