[FFmpeg-cvslog] doc/examples/transcode: convert timestamps between filtering and encoding

Anton Khirnov git at videolan.org
Sat Jun 3 12:29:51 EEST 2023


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed May 31 16:58:50 2023 +0200| [ba32f284983037bcf65c8eb372703cd15bc35078] | committer: Anton Khirnov

doc/examples/transcode: convert timestamps between filtering and encoding

The timebases do not have to match.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ba32f284983037bcf65c8eb372703cd15bc35078
---

 doc/examples/transcode.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/doc/examples/transcode.c b/doc/examples/transcode.c
index a486edc472..305181663c 100644
--- a/doc/examples/transcode.c
+++ b/doc/examples/transcode.c
@@ -441,6 +441,10 @@ static int encode_write_frame(unsigned int stream_index, int flush)
     /* encode filtered frame */
     av_packet_unref(enc_pkt);
 
+    if (filt_frame && filt_frame->pts != AV_NOPTS_VALUE)
+        filt_frame->pts = av_rescale_q(filt_frame->pts, filt_frame->time_base,
+                                       stream->enc_ctx->time_base);
+
     ret = avcodec_send_frame(stream->enc_ctx, filt_frame);
 
     if (ret < 0)
@@ -495,6 +499,7 @@ static int filter_encode_write_frame(AVFrame *frame, unsigned int stream_index)
             break;
         }
 
+        filter->filtered_frame->time_base = av_buffersink_get_time_base(filter->buffersink_ctx);;
         filter->filtered_frame->pict_type = AV_PICTURE_TYPE_NONE;
         ret = encode_write_frame(stream_index, 0);
         av_frame_unref(filter->filtered_frame);



More information about the ffmpeg-cvslog mailing list