Remove unused variables.

This commit is contained in:
Reimar Döffinger 2011-05-07 19:33:21 +02:00
parent 8c3651f4a5
commit 1795364205
1 changed files with 3 additions and 3 deletions

View File

@ -356,7 +356,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
AVIContext *avi = s->priv_data; AVIContext *avi = s->priv_data;
AVIOContext *pb = s->pb; AVIOContext *pb = s->pb;
unsigned int tag, tag1, handler; unsigned int tag, tag1, handler;
int codec_type, stream_index, frame_period, bit_rate; int codec_type, stream_index, frame_period;
unsigned int size; unsigned int size;
int i; int i;
AVStream *st; AVStream *st;
@ -428,7 +428,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
/* AVI header */ /* AVI header */
/* using frame_period is bad idea */ /* using frame_period is bad idea */
frame_period = avio_rl32(pb); frame_period = avio_rl32(pb);
bit_rate = avio_rl32(pb) * 8; avio_rl32(pb); /* max. bytes per second */
avio_rl32(pb); avio_rl32(pb);
avi->non_interleaved |= avio_rl32(pb) & AVIF_MUSTUSEINDEX; avi->non_interleaved |= avio_rl32(pb) & AVIF_MUSTUSEINDEX;
@ -1303,7 +1303,7 @@ static int avi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp
{ {
AVIContext *avi = s->priv_data; AVIContext *avi = s->priv_data;
AVStream *st; AVStream *st;
int i, index, j; int i, index;
int64_t pos, pos_min; int64_t pos, pos_min;
AVIStream *ast; AVIStream *ast;