summaryrefslogtreecommitdiff
path: root/libavcodec/h261dec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-12-09 12:54:12 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-01-25 14:52:05 +0100
commited913fcb5963eff0e7edf2719d6e4ec025ddab42 (patch)
treefa570ad409890b884f44755f71ce4a71ff518425 /libavcodec/h261dec.c
parent44bb776f130440fd845fa28723f5bd10e874e92a (diff)
avcodec/h261dec: Don't initialize unused part of RLTable
The H.261 decoder only uses an RLTable's VLC table, yet it also initializes its index_run, max_level and max_run. This commit stops doing so; it will also simplify making this decoder init-threadsafe, as the H.261 decoder and encoder now initialize disjoint parts of their common RLTable. Reviewed-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/h261dec.c')
-rw-r--r--libavcodec/h261dec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c
index 2dc2fb30f2..6b680a862d 100644
--- a/libavcodec/h261dec.c
+++ b/libavcodec/h261dec.c
@@ -81,7 +81,6 @@ static av_cold int h261_decode_init(AVCodecContext *avctx)
s->low_delay = 1;
avctx->pix_fmt = AV_PIX_FMT_YUV420P;
- ff_h261_common_init();
h261_decode_init_vlc(h);
h->gob_start_code_skipped = 0;