aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/rv10.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-05-29 21:07:34 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-05-30 00:24:01 +0200
commitadba9c63525b8971fc6ccda47e643dca05c3ee9d (patch)
tree7f4521c4ceaf684a4cdc4f8b57db30a4364c35e0 /libavcodec/rv10.c
parentfd38a15adf7f4e20f25d89f162e4a8fbbd8ec92e (diff)
downloadandroid_external_ffmpeg-adba9c63525b8971fc6ccda47e643dca05c3ee9d.tar.gz
android_external_ffmpeg-adba9c63525b8971fc6ccda47e643dca05c3ee9d.tar.bz2
android_external_ffmpeg-adba9c63525b8971fc6ccda47e643dca05c3ee9d.zip
Fix various unused variable warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r--libavcodec/rv10.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index cbecfa8a87..2ce7ea00b6 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -235,7 +235,7 @@ int rv_decode_dc(MpegEncContext *s, int n)
/* read RV 1.0 compatible frame header */
static int rv10_decode_picture_header(MpegEncContext *s)
{
- int mb_count, pb_frame, marker, unk, mb_xy;
+ int mb_count, pb_frame, marker, unk av_unused, mb_xy;
marker = get_bits1(&s->gb);