diff options
author | Maxim Poliakovski <max_pole@gmx.de> | 2010-05-26 13:25:16 +0000 |
---|---|---|
committer | Maxim Poliakovski <max_pole@gmx.de> | 2010-05-26 13:25:16 +0000 |
commit | 220f2bd9c595c7934753694854d4a778358d5c4d (patch) | |
tree | 6218914df31beafa59d300680db6423f0ab50c4f /libavcodec/ivi_common.h | |
parent | 93ebfeea90be8cc270226ac4d282efffed7ca0c7 (diff) | |
download | ffmpeg-220f2bd9c595c7934753694854d4a778358d5c4d.tar.gz |
move indeo5 scan patterns into ivi_common.c
so those can be shared by indeo4.
Originally committed as revision 23335 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ivi_common.h')
-rw-r--r-- | libavcodec/ivi_common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/ivi_common.h b/libavcodec/ivi_common.h index 64793e479e..a96b4b9a36 100644 --- a/libavcodec/ivi_common.h +++ b/libavcodec/ivi_common.h @@ -68,6 +68,14 @@ extern VLC ff_ivi_blk_vlc_tabs[8]; ///< static block Huffman tables /** + * Common scan patterns (defined in ivi_common.c) + */ +extern const uint8_t ivi_vertical_scan_8x8[64]; +extern const uint8_t ivi_horizontal_scan_8x8[64]; +extern const uint8_t ivi_direct_scan_4x4[16]; + + +/** * run-value (RLE) table descriptor */ typedef struct { |