diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-12-29 18:24:40 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-06 06:13:54 +0200 |
commit | 6d484671ecb612c32cbda0fab65f961743aff5f8 (patch) | |
tree | cd5b3460687baeeaee27218b289453efa387f1ee /libavcodec/dv.h | |
parent | fbb9e0dbc8a685917e25837d01f4d159e84152d7 (diff) | |
download | ffmpeg-6d484671ecb612c32cbda0fab65f961743aff5f8.tar.gz |
avcodec/dv: Don't initialize RL VLC for encoder
Said RL VLC is only used by the decoder, ergo don't initialize it for
the encoder and move the whole code and the RL VLC table itself to
dvdec.c.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/dv.h')
-rw-r--r-- | libavcodec/dv.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/dv.h b/libavcodec/dv.h index 0205d72347..19290aa382 100644 --- a/libavcodec/dv.h +++ b/libavcodec/dv.h @@ -96,10 +96,6 @@ enum dv_pack_type { */ #define DV_MAX_BPM 8 -#define TEX_VLC_BITS 10 - -extern RL_VLC_ELEM ff_dv_rl_vlc[1664]; - int ff_dv_init_dynamic_tables(DVVideoContext *s, const AVDVProfile *d); int ff_dvvideo_init(AVCodecContext *avctx); |