diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-05-06 11:40:42 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-05-06 11:40:42 +0000 |
commit | 660e83f815316cb85560e36830e4d7903ebfae09 (patch) | |
tree | 9c4afde3fd738b528de340f8504d9b71ca49fe5d /libavcodec/vc1data.h | |
parent | 986a865fc07f24aa773c85bb244e265c0964a065 (diff) | |
download | ffmpeg-660e83f815316cb85560e36830e4d7903ebfae09.tar.gz |
Add prefix to some variables for consistency
Originally committed as revision 8916 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1data.h')
-rw-r--r-- | libavcodec/vc1data.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/vc1data.h b/libavcodec/vc1data.h index 09298f6d03..f54b2e0cbb 100644 --- a/libavcodec/vc1data.h +++ b/libavcodec/vc1data.h @@ -29,16 +29,16 @@ #define VC1DATA_H /** Table for conversion between TTBLK and TTMB */ -extern const int ttblk_to_tt[3][8]; +extern const int vc1_ttblk_to_tt[3][8]; -extern const int ttfrm_to_tt[4]; +extern const int vc1_ttfrm_to_tt[4]; /** MV P mode - the 5th element is only used for mode 1 */ -extern const uint8_t mv_pmode_table[2][5]; -extern const uint8_t mv_pmode_table2[2][4]; +extern const uint8_t vc1_mv_pmode_table[2][5]; +extern const uint8_t vc1_mv_pmode_table2[2][4]; -extern const int fps_nr[5], fps_dr[2]; -extern const uint8_t pquant_table[3][32]; +extern const int vc1_fps_nr[5], vc1_fps_dr[2]; +extern const uint8_t vc1_pquant_table[3][32]; /** @name VC-1 VLC tables and defines * @todo TODO move this into the context |