[FFmpeg-cvslog] id3v2: fix variable type for uncompress()

Michael Niedermayer git at videolan.org
Mon Dec 26 22:14:29 CET 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Dec 26 21:35:21 2011 +0100| [084bd109fcaaddd30d90601aff1f987abebadbfb] | committer: Michael Niedermayer

id3v2: fix variable type for uncompress()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavformat/id3v2.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c
index 60a780c..9ee3271 100644
--- a/libavformat/id3v2.c
+++ b/libavformat/id3v2.c
@@ -486,7 +486,7 @@ static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t
         int tunsync = 0;
         int tcomp = 0;
         int tencr = 0;
-        int dlen;
+        unsigned long dlen;
 
         if (isv34) {
             avio_read(s->pb, tag, 4);
@@ -547,14 +547,14 @@ static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t
 
                 av_fast_malloc(&buffer, &buffer_size, dlen);
                 if (!buffer) {
-                    av_log(s, AV_LOG_ERROR, "Failed to alloc %d bytes\n", dlen);
+                    av_log(s, AV_LOG_ERROR, "Failed to alloc %ld bytes\n", dlen);
                     goto seek;
                 }
 #if CONFIG_ZLIB
                 if (tcomp) {
                     int n, err;
 
-                    av_log(s, AV_LOG_DEBUG, "Compresssed frame %s tlen=%d dlen=%d\n", tag, tlen, dlen);
+                    av_log(s, AV_LOG_DEBUG, "Compresssed frame %s tlen=%d dlen=%ld\n", tag, tlen, dlen);
 
                     av_fast_malloc(&compressed_buffer, &compressed_buffer_size, tlen);
                     if (!compressed_buffer) {



More information about the ffmpeg-cvslog mailing list