Commit bf3dce6b authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: change AVFMT_RAWPICTURE pts to reduce diff to qatar

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 13c254a2
......@@ -1991,7 +1991,7 @@ duplicate_frame:
enc->coded_frame->top_field_first = in_picture->top_field_first;
pkt.data = (uint8_t *)in_picture;
pkt.size = sizeof(AVPicture);
pkt.pts = av_rescale_q(ost->sync_opts, enc->time_base, ost->st->time_base);
pkt.pts = av_rescale_q(in_picture->pts, enc->time_base, ost->st->time_base);
pkt.flags |= AV_PKT_FLAG_KEY;
write_frame(s, &pkt, ost);
......
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