summaryrefslogtreecommitdiff
path: root/libavcodec/vc1.c
diff options
context:
space:
mode:
authorBen Avison <bavison@riscosopen.org>2014-04-16 01:51:32 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-04-25 02:36:11 +0200
commit9d8ecdd8ca6d248e7439e8fdf255e39eda14e0f2 (patch)
treee35abe072bfeb91f77ac48c51eb3bd69d9773aed /libavcodec/vc1.c
parent270cede3f3772117454a14b620803d731036942d (diff)
vc-1: Add platform-specific start code search routine to VC1DSPContext.
Initialise VC1DSPContext for parser as well as for decoder. Note, the VC-1 code doesn't actually use the function pointer yet. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r--libavcodec/vc1.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index adf4ca50c5..89fa7ffdff 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -1706,5 +1706,7 @@ av_cold int ff_vc1_init_common(VC1Context *v)
v->pq = -1;
v->mvrange = 0; /* 7.1.1.18, p80 */
+ ff_vc1dsp_init(&v->vc1dsp);
+
return 0;
}