comparison 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
comparison
equal deleted inserted replaced
10815:2b0c54f9f9c2 10816:9abebeca7d1b
30 30
31 #include <stdint.h> 31 #include <stdint.h>
32 #include "mpegvideo.h" 32 #include "mpegvideo.h"
33 33
34 /* dc encoding for mpeg4 */ 34 /* dc encoding for mpeg4 */
35 const uint8_t DCtab_lum[13][2] = 35 const uint8_t ff_mpeg4_DCtab_lum[13][2] =
36 { 36 {
37 {3,3}, {3,2}, {2,2}, {2,3}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7}, 37 {3,3}, {3,2}, {2,2}, {2,3}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7},
38 {1,8}, {1,9}, {1,10}, {1,11}, 38 {1,8}, {1,9}, {1,10}, {1,11},
39 }; 39 };
40 40
41 const uint8_t DCtab_chrom[13][2] = 41 const uint8_t ff_mpeg4_DCtab_chrom[13][2] =
42 { 42 {
43 {3,2}, {2,2}, {1,2}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7}, {1,8}, 43 {3,2}, {2,2}, {1,2}, {1,3}, {1,4}, {1,5}, {1,6}, {1,7}, {1,8},
44 {1,9}, {1,10}, {1,11}, {1,12}, 44 {1,9}, {1,10}, {1,11}, {1,12},
45 }; 45 };
46 46