diff msmpeg4.c @ 10816:9abebeca7d1b libavcodec

Rename DCtab_*, its a global variable and it helps understanding if mpeg4 is in its name.
author michael
date Fri, 08 Jan 2010 17:28:43 +0000
parents 4605bd2fdb7f
children 514dc1c87b2e
line wrap: on
line diff
--- a/msmpeg4.c	Fri Jan 08 16:37:32 2010 +0000
+++ b/msmpeg4.c	Fri Jan 08 17:28:43 2010 +0000
@@ -98,8 +98,8 @@
                 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 @@
             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) {