[FFmpeg-cvslog] id3v1: change filesize to int64_t.

Carl Eugen Hoyos git at videolan.org
Wed Mar 30 03:26:00 CEST 2011


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Fri Mar 25 19:46:28 2011 +0100| [31f00274f8cda7141a17a7b33820e652d89a9de6] | committer: Ronald S. Bultje

id3v1: change filesize to int64_t.

Signed-off-by: Ronald S. Bultje <rsbultje at gmail.com>

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

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

diff --git a/libavformat/id3v1.c b/libavformat/id3v1.c
index 23cacf7..1f1df9c 100644
--- a/libavformat/id3v1.c
+++ b/libavformat/id3v1.c
@@ -225,9 +225,9 @@ static int parse_tag(AVFormatContext *s, const uint8_t *buf)
 
 void ff_id3v1_read(AVFormatContext *s)
 {
-    int ret, filesize;
+    int ret;
     uint8_t buf[ID3v1_TAG_SIZE];
-    int64_t position = avio_tell(s->pb);
+    int64_t filesize, position = avio_tell(s->pb);
 
     if (!url_is_streamed(s->pb)) {
         /* XXX: change that */



More information about the ffmpeg-cvslog mailing list