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/dv.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/dv.h')
-rw-r--r-- | libavcodec/dv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dv.h b/libavcodec/dv.h index 8a54cfeff4..e68d7b02d5 100644 --- a/libavcodec/dv.h +++ b/libavcodec/dv.h @@ -95,6 +95,7 @@ enum dv_pack_type { extern RL_VLC_ELEM ff_dv_rl_vlc[1184]; int ff_dv_init_dynamic_tables(DVVideoContext *s, const AVDVProfile *d); + int ff_dvvideo_init(AVCodecContext *avctx); static inline int dv_work_pool_size(const AVDVProfile *d) |