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/vc1dec.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/vc1dec.c')
-rw-r--r-- | libavcodec/vc1dec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/vc1dec.c b/libavcodec/vc1dec.c index c83bb4fb77..f7f6a9f121 100644 --- a/libavcodec/vc1dec.c +++ b/libavcodec/vc1dec.c @@ -5629,7 +5629,6 @@ static av_cold int vc1_decode_init(AVCodecContext *avctx) ff_blockdsp_init(&s->bdsp, avctx); ff_h264chroma_init(&v->h264chroma, 8); ff_qpeldsp_init(&s->qdsp); - ff_vc1dsp_init(&v->vc1dsp); if (avctx->codec_id == AV_CODEC_ID_WMV3 || avctx->codec_id == AV_CODEC_ID_WMV3IMAGE) { int count = 0; |