summaryrefslogtreecommitdiff
path: root/libavcodec/svq3.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-30 21:51:46 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-03-30 21:51:46 +0200
commit96df29c318ff64cb6ac706c11cbf932d96962fd7 (patch)
tree93f55662daeafac27b8ccaaddfaf0686a122e43f /libavcodec/svq3.c
parent280beebd399b2d2c9bf58438c2aa2a22a0a53282 (diff)
svq3: Fix pointer type mismatch warning.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r--libavcodec/svq3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c
index 2e9fad04ca..3110db8042 100644
--- a/libavcodec/svq3.c
+++ b/libavcodec/svq3.c
@@ -660,7 +660,7 @@ static int svq3_decode_mb(SVQ3Context *svq3, unsigned int mb_type)
if (IS_INTRA16x16(mb_type)) {
AV_ZERO128(h->mb_luma_dc[0]+0);
AV_ZERO128(h->mb_luma_dc[0]+8);
- if (svq3_decode_block(&s->gb, h->mb_luma_dc, 0, 1)){
+ if (svq3_decode_block(&s->gb, *h->mb_luma_dc, 0, 1)){
av_log(h->s.avctx, AV_LOG_ERROR, "error while decoding intra luma dc\n");
return -1;
}