summaryrefslogtreecommitdiff
path: root/libavcodec/rv40.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-04-07 18:07:54 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-04-12 18:29:10 +0200
commit4e65a41a5cfdcafb0c9d26b7e531daa3a1b5fde2 (patch)
tree88b21eaa86b4c579a385966892cdf1fa6464f4e9 /libavcodec/rv40.c
parent7e241a1b73bcca768f48ff1851e9e9f3f0752000 (diff)
avcodec/rv34: Move dsp init code to rv30/rv40
It avoids both runtime and compile-time checks. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/rv40.c')
-rw-r--r--libavcodec/rv40.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/rv40.c b/libavcodec/rv40.c
index e0903226b9..8532a872d9 100644
--- a/libavcodec/rv40.c
+++ b/libavcodec/rv40.c
@@ -567,6 +567,7 @@ static av_cold int rv40_decode_init(AVCodecContext *avctx)
r->loop_filter = rv40_loop_filter;
r->luma_dc_quant_i = rv40_luma_dc_quant[0];
r->luma_dc_quant_p = rv40_luma_dc_quant[1];
+ ff_rv40dsp_init(&r->rdsp);
return 0;
}