]> git.sesse.net Git - ffmpeg/commit
avcodec/ituh263dec: Don't initialize unused parts of RLTable
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Wed, 9 Dec 2020 17:09:00 +0000 (18:09 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Mon, 25 Jan 2021 13:52:52 +0000 (14:52 +0100)
commit1ea13f949a55ab3cb08144bccd06af1e40fef3d3
tree9fdf0897f961db85f9cac44704b1c9f4ffcb57e2
parent18e89b964cd226785ca647e521ab09e16026fd26
avcodec/ituh263dec: Don't initialize unused parts of RLTable

The RLTable ff_rl_intra_aic is only used by ituh263dec and ituh263enc;
the former only uses the RLTable's VLC, the latter only index_run,
max_level and max_run. Yet ituh263dec also initializes the latter.
This commit stops doing so.

Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/ituh263dec.c