Commit 56cc1784 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/h263dec: fix "incompatible pointer type" warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 00948ff8
......@@ -569,7 +569,7 @@ retry:
ff_thread_finish_setup(avctx);
if (CONFIG_MPEG4_VDPAU_DECODER && (s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU)) {
ff_vdpau_mpeg4_decode_picture(s, s->gb.buffer, s->gb.buffer_end - s->gb.buffer);
ff_vdpau_mpeg4_decode_picture(avctx->priv_data, s->gb.buffer, s->gb.buffer_end - s->gb.buffer);
goto frame_end;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment