diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-03-07 13:27:15 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-03-07 13:27:15 +0000 |
commit | 73c8e5144af3f90ccb21fa1d058ae02b3394aab0 (patch) | |
tree | c1e5f6cbbcf985a6e697091ba9503cc83d9d1065 /libavcodec/mpeg4data.h | |
parent | cc9ba006eca2222fb1bc3cdde40a6a9d8f36ef75 (diff) | |
download | ffmpeg-73c8e5144af3f90ccb21fa1d058ae02b3394aab0.tar.gz |
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.h | 6 |
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}, +}; |