From bf3dce6b593826f40dd423a74b44f08bf70cd757 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 20 May 2012 12:29:33 +0200 Subject: [PATCH] ffmpeg: change AVFMT_RAWPICTURE pts to reduce diff to qatar Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index b0e3c47fae..5bb227edb2 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -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);