summaryrefslogtreecommitdiff
path: root/libavcodec/dxva2_mpeg2.c
diff options
context:
space:
mode:
authorjamal <jamrial@gmail.com>2012-07-27 05:23:13 -0300
committerMichael Niedermayer <michaelni@gmx.at>2012-07-28 03:28:46 +0200
commit64c53fa16aeca9cadd48ccf607803d6e4d26cc4d (patch)
tree20fda060080a9f070a0a4533c53dbd3b19e904ed /libavcodec/dxva2_mpeg2.c
parent0fa352623d2322f99221e6e58d48fce9637054ee (diff)
dxva2: Fix some warnings about incompatible pointer type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dxva2_mpeg2.c')
-rw-r--r--libavcodec/dxva2_mpeg2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dxva2_mpeg2.c b/libavcodec/dxva2_mpeg2.c
index e54eff09fb..2e48d28246 100644
--- a/libavcodec/dxva2_mpeg2.c
+++ b/libavcodec/dxva2_mpeg2.c
@@ -160,7 +160,7 @@ static int commit_bitstream_and_slice_buffer(AVCodecContext *avctx,
if (FAILED(IDirectXVideoDecoder_GetBuffer(ctx->decoder,
DXVA2_BitStreamDateBufferType,
- &dxva_data, &dxva_size)))
+ (void **)&dxva_data, &dxva_size)))
return -1;
current = dxva_data;
end = dxva_data + dxva_size;