diff mpeg4data.h @ 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 d1fe22d92a65
line wrap: on
line diff
--- a/mpeg4data.h	Fri Jan 08 16:37:32 2010 +0000
+++ b/mpeg4data.h	Fri Jan 08 17:28:43 2010 +0000
@@ -32,13 +32,13 @@
 #include "mpegvideo.h"
 
 /* dc encoding for mpeg4 */
-const uint8_t DCtab_lum[13][2] =
+const uint8_t ff_mpeg4_DCtab_lum[13][2] =
 {
     {3,3}, {3,2}, {2,2}, {2,3}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7},
     {1,8}, {1,9}, {1,10}, {1,11},
 };
 
-const uint8_t DCtab_chrom[13][2] =
+const uint8_t ff_mpeg4_DCtab_chrom[13][2] =
 {
     {3,2}, {2,2}, {1,2}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7}, {1,8},
     {1,9}, {1,10}, {1,11}, {1,12},