提交 18a49f11 编写于 作者: D Diego Biurrun

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
上级 06a3c9c4
......@@ -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 */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册