You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Remove unused variable, fixes the warning:
libavformat/apetag.c:38: warning: unused variable `l' Originally committed as revision 20878 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -35,7 +35,7 @@ static int ape_tag_read_field(AVFormatContext *s)
|
||||
ByteIOContext *pb = s->pb;
|
||||
uint8_t key[1024], *value;
|
||||
uint32_t size, flags;
|
||||
int i, l, c;
|
||||
int i, c;
|
||||
|
||||
size = get_le32(pb); /* field size */
|
||||
flags = get_le32(pb); /* field flags */
|
||||
|
Reference in New Issue
Block a user