diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-08 17:28:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-08 17:28:43 +0000 |
commit | 05b858b045fb0dc347c695e914b11fbc871150e5 (patch) | |
tree | 95f4c732119a863f1c6511b19bf2aa096644de73 /libavcodec/msmpeg4.c | |
parent | f9664ca026485f59e14a072fcb6e45930ec928ff (diff) | |
download | ffmpeg-05b858b045fb0dc347c695e914b11fbc871150e5.tar.gz |
Rename DCtab_*, its a global variable and it helps understanding if mpeg4
is in its name.
Originally committed as revision 21096 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r-- | libavcodec/msmpeg4.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c index e8d74da333..9687297620 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -98,8 +98,8 @@ static av_cold void init_h263_dc_for_msmpeg4(void) l= level; /* luminance h263 */ - uni_code= DCtab_lum[size][0]; - uni_len = DCtab_lum[size][1]; + uni_code= ff_mpeg4_DCtab_lum[size][0]; + uni_len = ff_mpeg4_DCtab_lum[size][1]; uni_code ^= (1<<uni_len)-1; //M$ does not like compatibility if (size > 0) { @@ -114,8 +114,8 @@ static av_cold void init_h263_dc_for_msmpeg4(void) v2_dc_lum_table[level+256][1]= uni_len; /* chrominance h263 */ - uni_code= DCtab_chrom[size][0]; - uni_len = DCtab_chrom[size][1]; + uni_code= ff_mpeg4_DCtab_chrom[size][0]; + uni_len = ff_mpeg4_DCtab_chrom[size][1]; uni_code ^= (1<<uni_len)-1; //M$ does not like compatibility if (size > 0) { |