Commit 64ce854f authored by michael's avatar michael

mpeg1video m bit fix by (Luca Abeni: lucabe72, email it)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4470 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9a757534
......@@ -738,7 +738,7 @@ static void rtp_send_mpegvideo(AVFormatContext *s1,
/* 90 KHz time stamp */
s->timestamp = s->base_timestamp +
av_rescale((int64_t)s->cur_timestamp * st->codec->time_base.num, 90000, st->codec->time_base.den); //FIXME pass timestamps
rtp_send_data(s1, s->buf, q - s->buf, 0);
rtp_send_data(s1, s->buf, q - s->buf, (len == size));
buf1 += len;
size -= len;
......
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