[FFmpeg-cvslog] avformat/brstm: Remove unused variable

Michael Niedermayer git at videolan.org
Sun Jul 12 14:27:02 CEST 2015


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Fri Jul 10 16:35:44 2015 +0200| [cdb0d7e43993b4f49856a999c538bf01f48b4ad8] | committer: Michael Niedermayer

avformat/brstm: Remove unused variable

Fixes "libavformat/brstm.c:128:35: warning: variable info_size set but not used"

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cdb0d7e43993b4f49856a999c538bf01f48b4ad8
---

 libavformat/brstm.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/brstm.c b/libavformat/brstm.c
index 291a462..f2bc038 100644
--- a/libavformat/brstm.c
+++ b/libavformat/brstm.c
@@ -125,7 +125,7 @@ static int read_header(AVFormatContext *s)
         if (avio_rl32(s->pb) != MKTAG('H','E','A','D'))
             return AVERROR_INVALIDDATA;
     } else {
-        uint32_t info_offset = 0, info_size;
+        uint32_t info_offset = 0;
         uint16_t section_count, header_size, i;
 
         header_size = read16(s); // 6
@@ -142,7 +142,7 @@ static int read_header(AVFormatContext *s)
             switch (flag) {
             case 0x4000:
                 info_offset = read32(s);
-                info_size   = read32(s);
+                /*info_size =*/ read32(s);
                 break;
             case 0x4001:
                 avio_skip(s->pb, 4); // seek offset



More information about the ffmpeg-cvslog mailing list