Commit 1ad73df6 authored by bcoudurier's avatar bcoudurier

timestamps in flv are 32bits _signed_ according to flash player, specs are wrong

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15045 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5a20c533
......@@ -351,7 +351,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt)
ts = pkt->dts + flv->delay; // add delay to force positive dts
put_be24(pb,size + flags_size);
put_be24(pb,ts);
put_byte(pb,ts >> 24);
put_byte(pb,(ts >> 24) & 0x7F); // timestamps are 32bits _signed_
put_be24(pb,flv->reserved);
put_byte(pb,flags);
if (enc->codec_id == CODEC_ID_VP6)
......
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