diff options
author | Ben Avison <bavison@riscosopen.org> | 2014-07-21 14:53:08 +0100 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2014-08-04 22:22:54 +0200 |
commit | adf8227cf4e7b4fccb2ad88e1e09b6dc00dd00ed (patch) | |
tree | 4d42e1740f55099c18465d032c9d9239b253713d /libavcodec/vc1.c | |
parent | db7f1c7c5a1d37e7f4da64a79a97bea1c4b6e9f8 (diff) | |
download | ffmpeg-adf8227cf4e7b4fccb2ad88e1e09b6dc00dd00ed.tar.gz |
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: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 1978b085a5..cef0fe6eb8 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -1688,5 +1688,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; } |