diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-04 02:03:08 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-07 00:07:45 +0200 |
commit | 116e2a9ee2c9eb7eaa99af9a066bcc37825721c7 (patch) | |
tree | a500cd3eb97da241e1c0d29d63c3db54bb766923 /libavcodec/dvdata.h | |
parent | 297e91ed2b3b51ec3bfa63a4c955941ba68a2419 (diff) | |
download | ffmpeg-116e2a9ee2c9eb7eaa99af9a066bcc37825721c7.tar.gz |
avcodec/dv_tablegen, dvdata: Remove ff_dv_vlc_bits
The codes can be easily calculated, so the table is unnecessary.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/dvdata.h')
-rw-r--r-- | libavcodec/dvdata.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/dvdata.h b/libavcodec/dvdata.h index e0ed043c47..ae104096ad 100644 --- a/libavcodec/dvdata.h +++ b/libavcodec/dvdata.h @@ -28,7 +28,6 @@ extern const uint8_t ff_dv_quant_offset[4]; #define NB_DV_VLC 409 -extern const uint16_t ff_dv_vlc_bits[NB_DV_VLC]; extern const uint8_t ff_dv_vlc_len[NB_DV_VLC]; extern const uint8_t ff_dv_vlc_run[NB_DV_VLC]; extern const uint8_t ff_dv_vlc_level[NB_DV_VLC]; |