diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-10-25 11:19:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-26 19:21:59 +0100 |
commit | 05da586fef865274d44da57f841068b5f17c812c (patch) | |
tree | 29feeeda4157d8d64c7840c156d2c5a7c2410ab8 /libavcodec/dvdata.h | |
parent | 6fe02d25ee6816e44de8d8b23b6905d307e1ed28 (diff) | |
download | ffmpeg-05da586fef865274d44da57f841068b5f17c812c.tar.gz |
dv: move inverse weight tables to decoder
The encoder has its own tables and does not access the idct_factor
member of the DVVideoContext structure.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dvdata.h')
-rw-r--r-- | libavcodec/dvdata.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/dvdata.h b/libavcodec/dvdata.h index 3c4da447e9..e0ed043c47 100644 --- a/libavcodec/dvdata.h +++ b/libavcodec/dvdata.h @@ -26,13 +26,6 @@ extern const uint8_t ff_dv_zigzag248_direct[64]; extern const uint8_t ff_dv_quant_shifts[22][4]; extern const uint8_t ff_dv_quant_offset[4]; -extern const uint16_t ff_dv_iweight_88[64]; -extern const uint16_t ff_dv_iweight_248[64]; -extern const uint16_t ff_dv_iweight_1080_y[64]; -extern const uint16_t ff_dv_iweight_1080_c[64]; -extern const uint16_t ff_dv_iweight_720_y[64]; -extern const uint16_t ff_dv_iweight_720_c[64]; - #define NB_DV_VLC 409 extern const uint16_t ff_dv_vlc_bits[NB_DV_VLC]; |