[FFmpeg-cvslog] flvenc: use int64_t to store offsets
    Luca Barbato 
    git at videolan.org
       
    Wed Aug 17 14:42:48 CEST 2011
    
    
  
ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Wed Jun  8 14:32:07 2011 +0000| [7f5bf4fbaf1f2142547321a16358f9871fabdcc6] | committer: Anton Khirnov
flvenc: use int64_t to store offsets
Metadata currently is written only at the start of the file in normal
cases, when transcoding from a rtmp source metadata could be
written later and the offset recorded can exceed 32bit.
Signed-off-by: Anton Khirnov <anton at khirnov.net>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7f5bf4fbaf1f2142547321a16358f9871fabdcc6
---
 libavformat/flvenc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c
index 36f7e1f..f3017d7 100644
--- a/libavformat/flvenc.c
+++ b/libavformat/flvenc.c
@@ -179,7 +179,7 @@ static int flv_write_header(AVFormatContext *s)
     AVCodecContext *audio_enc = NULL, *video_enc = NULL;
     int i;
     double framerate = 0.0;
-    int metadata_size_pos, data_size;
+    int64_t metadata_size_pos, data_size;
     AVDictionaryEntry *tag = NULL;
 
     for(i=0; i<s->nb_streams; i++){
    
    
More information about the ffmpeg-cvslog
mailing list