diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-03-06 18:59:03 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-03-07 09:36:04 +0100 |
commit | 3c715383ea7012ac69507e6b9189c98675c77461 (patch) | |
tree | 18a2fae995b859ae6008ff95b24bc42ccfb6ae92 /libavcodec/vc1data.h | |
parent | 1e9d55e45ef238bce914e2207fc88a15e051ded1 (diff) | |
download | ffmpeg-3c715383ea7012ac69507e6b9189c98675c77461.tar.gz |
vc1: Move init code shared between decoder and parser to common code file.
This fixes standalone compilation of the VC-1 parser.
Diffstat (limited to 'libavcodec/vc1data.h')
-rw-r--r-- | libavcodec/vc1data.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/vc1data.h b/libavcodec/vc1data.h index 63ec6d7c1b..1d2a4fd554 100644 --- a/libavcodec/vc1data.h +++ b/libavcodec/vc1data.h @@ -200,4 +200,9 @@ extern const int32_t ff_vc1_dqscale[63]; extern const uint16_t ff_vc1_field_mvpred_scales[2][7][4]; /* B Interlaced field picture backward MV predictor scaling values for first field (Table 115) */ extern const uint16_t ff_vc1_b_field_mvpred_scales[7][4]; + +#define AC_MODES 8 + +extern const int ff_vc1_ac_sizes[AC_MODES]; + #endif /* AVCODEC_VC1DATA_H */ |