comparison ivi_common.h @ 11772:4a178e0051d6 libavcodec

moves indeo5 scan patterns into ivi_common.c so those can be shared by indeo4.
author maxim
date Wed, 26 May 2010 13:25:16 +0000
parents 55294f889a01
children 31dae9841fe1
comparison
equal deleted inserted replaced
11771:3c0dffc64d86 11772:4a178e0051d6
63 IVI_BLK_HUFF = 1 /// Huffman table is used for coding blocks 63 IVI_BLK_HUFF = 1 /// Huffman table is used for coding blocks
64 }; 64 };
65 65
66 extern VLC ff_ivi_mb_vlc_tabs [8]; ///< static macroblock Huffman tables 66 extern VLC ff_ivi_mb_vlc_tabs [8]; ///< static macroblock Huffman tables
67 extern VLC ff_ivi_blk_vlc_tabs[8]; ///< static block Huffman tables 67 extern VLC ff_ivi_blk_vlc_tabs[8]; ///< static block Huffman tables
68
69
70 /**
71 * Common scan patterns (defined in ivi_common.c)
72 */
73 extern const uint8_t ivi_vertical_scan_8x8[64];
74 extern const uint8_t ivi_horizontal_scan_8x8[64];
75 extern const uint8_t ivi_direct_scan_4x4[16];
68 76
69 77
70 /** 78 /**
71 * run-value (RLE) table descriptor 79 * run-value (RLE) table descriptor
72 */ 80 */