Commit 6fc9f5e0 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'f412b2c9'

* commit 'f412b2c9':
  flv: Use the correct type to hold the file offset
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 0c16f644 f412b2c9
......@@ -539,7 +539,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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment