From: Marton Balint <cus@passwd.hu> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH] fftools: allow decoders to set AVFrame time_base Date: Thu, 15 Sep 2022 20:06:30 +0200 (CEST) Message-ID: <617ab599-6476-c0a8-fec0-2468d3c82a6@passwd.hu> (raw) In-Reply-To: <20220910164259.213742-1-leo.izen@gmail.com> On Sat, 10 Sep 2022, Leo Izen wrote: > This patch allows decoders to set AVFrame->time_base, which > determines the units that AVFrame->pts will use. Currently > no decoders do this, but it will allow it in the future. This is patch is wrong, because it implies that decoders can output frames in time base different to stream time base. They can't, because that would be a breaking change. AVFrame->time_base was not introduced for that use case. Regards, Marton > --- > fftools/ffmpeg.c | 3 ++- > fftools/ffplay.c | 2 +- > 2 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c > index 0e1477299d..e3ea7a6c29 100644 > --- a/fftools/ffmpeg.c > +++ b/fftools/ffmpeg.c > @@ -2274,7 +2274,8 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output, int64_ > } > > if(best_effort_timestamp != AV_NOPTS_VALUE) { > - int64_t ts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, ist->st->time_base, AV_TIME_BASE_Q); > + int64_t ts = av_rescale_q(decoded_frame->pts = best_effort_timestamp, > + decoded_frame->time_base.num ? decoded_frame->time_base : ist->st->time_base, AV_TIME_BASE_Q); > > if (ts != AV_NOPTS_VALUE) > ist->next_pts = ist->pts = ts; > diff --git a/fftools/ffplay.c b/fftools/ffplay.c > index 9242047f5c..986b0831ac 100644 > --- a/fftools/ffplay.c > +++ b/fftools/ffplay.c > @@ -1771,7 +1771,7 @@ static int get_video_frame(VideoState *is, AVFrame *frame) > double dpts = NAN; > > if (frame->pts != AV_NOPTS_VALUE) > - dpts = av_q2d(is->video_st->time_base) * frame->pts; > + dpts = av_q2d(frame->time_base.num ? frame->time_base : is->video_st->time_base) * frame->pts; > > frame->sample_aspect_ratio = av_guess_sample_aspect_ratio(is->ic, is->video_st, frame); > > -- > 2.37.3 > > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". > _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
prev parent reply other threads:[~2022-09-15 18:06 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-09-10 16:42 Leo Izen 2022-09-15 18:06 ` Marton Balint [this message]
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=617ab599-6476-c0a8-fec0-2468d3c82a6@passwd.hu \ --to=cus@passwd.hu \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git