summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-04-19 13:29:11 +0000
committerDiego Biurrun <diego@biurrun.de>2009-04-19 13:29:11 +0000
commitdc1ed614328edaf05745925392a2765c0ed49c92 (patch)
tree79f543fc0a4506c13cb8a52801d632ae3678f853
parente0a6d2c365fb259acf2e3580ff731c45a60cc699 (diff)
Mark gsize variable as av_unused, fixes the warning:
libavformat/asfdec.c:995: warning: unused variable ‘gsize’ Originally committed as revision 18620 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/asfdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c
index 805087f174..e76f98beb2 100644
--- a/libavformat/asfdec.c
+++ b/libavformat/asfdec.c
@@ -992,7 +992,7 @@ 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);
+ int64_t av_unused gsize= get_le64(s->pb);
get_guid(s->pb, &g);
itime=get_le64(s->pb);
pct=get_le32(s->pb);