From: Luca Barbato Date: Thu, 19 Dec 2013 06:38:15 +0000 (+0100) Subject: flv: Use the correct type to hold the file offset X-Git-Tag: android-x86-6.0-r1~10^2~2483 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f412b2c9f3a7add0ab8021262ec4bad249347e30;p=android-x86%2Fexternal-ffmpeg.git flv: Use the correct type to hold the file offset --- diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index ca453f6025..3364f2ca3f 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -506,7 +506,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt) if (enc->codec_type == AVMEDIA_TYPE_DATA) { int data_size; - int metadata_size_pos = avio_tell(pb); + int64_t metadata_size_pos = avio_tell(pb); avio_w8(pb, AMF_DATA_TYPE_STRING); put_amf_string(pb, "onTextData"); avio_w8(pb, AMF_DATA_TYPE_MIXEDARRAY);