diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-04-18 15:01:20 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-04-18 15:01:20 +0000 |
commit | 7b7b19b620e25d7b692071a8af0e47a7b2a8a3e6 (patch) | |
tree | e2acf8580957ac5360e230a72467d9076a686dd6 | |
parent | cc078b5d8f79a05f9475290323e0ea63ba7563d6 (diff) | |
download | ffmpeg-7b7b19b620e25d7b692071a8af0e47a7b2a8a3e6.tar.gz |
Remove unused variable gsize, fixes the warning:
libavformat/asfdec.c:995: warning: unused variable 'gsize'
Originally committed as revision 18607 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/asfdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 805087f174..3cdb4c56e4 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -992,7 +992,6 @@ static void asf_build_simple_index(AVFormatContext *s, int stream_index) if (!guidcmp(&g, &index_guid)) { int64_t itime; int pct, ict; - int64_t gsize= get_le64(s->pb); get_guid(s->pb, &g); itime=get_le64(s->pb); pct=get_le32(s->pb); |