diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-22 02:26:52 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-27 15:44:38 +0200 |
commit | 65beba7889982468c8c4e2add66ff0d3a790aaa8 (patch) | |
tree | 0c991e27cc2fd16100ce2515cd724bd26184ac4a /libavcodec/speedhqdec.c | |
parent | a12abf59a9255eef50324245f079a6687c7b4a98 (diff) | |
download | ffmpeg-65beba7889982468c8c4e2add66ff0d3a790aaa8.tar.gz |
avcodec/speedhqdec: Use ff_rl_speedhq.table_(run|level) directly
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/speedhqdec.c')
-rw-r--r-- | libavcodec/speedhqdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/speedhqdec.c b/libavcodec/speedhqdec.c index 1ed8cfb9ff..ac233b3645 100644 --- a/libavcodec/speedhqdec.c +++ b/libavcodec/speedhqdec.c @@ -566,8 +566,8 @@ static av_cold void speedhq_static_init(void) ff_mpeg12_vlc_dc_chroma_code, 2, 2, INIT_VLC_OUTPUT_LE, 514); - ff_init_2d_vlc_rl(ff_speedhq_vlc_table, speedhq_rl_vlc, ff_rl_speedhq.table_run, - ff_rl_speedhq.table_level, ff_rl_speedhq.n, + ff_init_2d_vlc_rl(ff_speedhq_vlc_table, speedhq_rl_vlc, ff_speedhq_run, + ff_speedhq_level, SPEEDHQ_RL_NB_ELEMS, FF_ARRAY_ELEMS(speedhq_rl_vlc), INIT_VLC_LE); compute_alpha_vlcs(); |