summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-03 20:23:12 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-03 20:23:12 +0200
commit56cc178485263684ac26e8dc70af6894214459c9 (patch)
tree30439c87fc731997af02ec770d82808f09aabc74 /libavcodec
parent00948ff876eeaa73299528891318bf27cb4a1178 (diff)
avcodec/h263dec: fix "incompatible pointer type" warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h263dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 270c2c4038..523fca9e7f 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -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;
}