mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
Remove unused variables
This commit is contained in:
@ -85,7 +85,6 @@ static int sol_channels(int magic, int type)
|
||||
static int sol_read_header(AVFormatContext *s,
|
||||
AVFormatParameters *ap)
|
||||
{
|
||||
int size;
|
||||
unsigned int magic,tag;
|
||||
AVIOContext *pb = s->pb;
|
||||
unsigned int id, channels, rate, type;
|
||||
@ -99,7 +98,7 @@ static int sol_read_header(AVFormatContext *s,
|
||||
return -1;
|
||||
rate = avio_rl16(pb);
|
||||
type = avio_r8(pb);
|
||||
size = avio_rl32(pb);
|
||||
avio_skip(pb, 4); /* size */
|
||||
if (magic != 0x0B8D)
|
||||
avio_r8(pb); /* newer SOLs contain padding byte */
|
||||
|
||||
|
Reference in New Issue
Block a user