diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-27 01:12:23 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-05-29 06:41:15 -0700 |
commit | 3832a6590156e6abc575bed51cbffa78617ee5fd (patch) | |
tree | 0e97a8639672f47fadb1dbf709ca6cb464fd644c /libavcodec/mpegvideo.h | |
parent | 65d5d5865845f057cc6530a8d0f34db952d9009c (diff) | |
download | ffmpeg-3832a6590156e6abc575bed51cbffa78617ee5fd.tar.gz |
dsputil: Move ff_alternate_*_scan tables to mpegvideo
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 4581ebcb9e..dfd8b28b14 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -85,6 +85,10 @@ enum OutputFormat { #define EXT_START_CODE 0x000001b5 #define USER_START_CODE 0x000001b2 +/* encoding scans */ +extern const uint8_t ff_alternate_horizontal_scan[64]; +extern const uint8_t ff_alternate_vertical_scan[64]; + struct MpegEncContext; /** |