From 14b3225377998175b0ce1026432d179d34d179c0 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 10 Jul 2003 23:18:09 +0000 Subject: Building ffmpeg with gcc-2.95.3 encountered a problem due to C99 initialization fix by ("Steven M. Schultz" ) Originally committed as revision 2032 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/flvenc.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libavformat/flvenc.c') diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index b717bbb163..72abb657b1 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -224,13 +224,15 @@ static void Dump(FLVContext *flv, ByteIOContext *pb, int count) static int flv_write_trailer(AVFormatContext *s) { + int64_t file_size; + int flags = 0; + ByteIOContext *pb = &s->pb; FLVContext *flv = s->priv_data; Dump(flv,pb,1); - int64_t file_size = url_ftell(pb); - int flags = 0; + file_size = url_ftell(pb); flags |= flv->hasAudio ? 4 : 0; flags |= flv->hasVideo ? 1 : 0; url_fseek(pb, 4, SEEK_SET); -- cgit v1.2.3