[FFmpeg-cvslog] Change filesize to int64_t.

Carl Eugen Hoyos git
Mon Mar 7 23:32:52 CET 2011


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Mon Mar  7 23:15:32 2011 +0100| [2a8175ff9cb7988333b8c3a8a9fec1fa9b60b719] | committer: Carl Eugen Hoyos

Change filesize to int64_t.

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

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

diff --git a/libavformat/id3v1.c b/libavformat/id3v1.c
index 9bd10ca..6998698 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 = url_ftell(s->pb);
+    int64_t filesize, position = url_ftell(s->pb);
 
     if (!url_is_streamed(s->pb)) {
         /* XXX: change that */




More information about the ffmpeg-cvslog mailing list