Fix various unused variable warnings

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Clément Bœsch
2011-05-29 21:07:34 +02:00
committed by Michael Niedermayer
parent fd38a15adf
commit adba9c6352
31 changed files with 40 additions and 55 deletions

View File

@ -32,7 +32,7 @@ int ff_sauce_read(AVFormatContext *avctx, uint64_t *fsize, int *got_width, int g
{
AVIOContext *pb = avctx->pb;
char buf[36];
int datatype, filetype, t1, t2, nb_comments, flags;
int datatype, filetype, t1, t2, nb_comments, flags av_unused;
uint64_t start_pos = avio_size(pb) - 128;
avio_seek(pb, start_pos, SEEK_SET);