Commit b43bf8ac authored by Baptiste Coudurier's avatar Baptiste Coudurier

rescale duration when outputting packet

Originally committed as revision 13845 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 050056d0
......@@ -2173,6 +2173,9 @@ static int http_prepare_data(HTTPContext *c)
pkt.pts = av_rescale_q(pkt.pts,
c->fmt_in->streams[source_index]->time_base,
ctx->streams[pkt.stream_index]->time_base);
pkt.duration = av_rescale_q(pkt.duration,
c->fmt_in->streams[source_index]->time_base,
ctx->streams[pkt.stream_index]->time_base);
if (av_write_frame(ctx, &pkt) < 0) {
http_log("Error writing frame to output\n");
c->state = HTTPSTATE_SEND_DATA_TRAILER;
......
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