From: Stefano Sabatini <stefasab@gmail.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH 1/2] ffmpeg_demux: show fixed timestamps in ts_fixup Date: Sat, 11 Feb 2023 01:12:18 +0100 Message-ID: <20230211001218.GD338325@mariano> (raw) In-Reply-To: <20230206012224.338931-1-stefasab@gmail.com> On date Monday 2023-02-06 02:22:24 +0100, Stefano Sabatini wrote: > Help debugging. > --- > fftools/ffmpeg_demux.c | 21 +++++++++++++-------- > 1 file changed, 13 insertions(+), 8 deletions(-) Will apply in a few days. BTW are categories exposed through the CLI (for example to only enable debug logs for a given category)? > diff --git a/fftools/ffmpeg_demux.c b/fftools/ffmpeg_demux.c > index 4b5c62b0d5..71ce7d9a02 100644 > --- a/fftools/ffmpeg_demux.c > +++ b/fftools/ffmpeg_demux.c > @@ -173,16 +173,19 @@ static void ts_fixup(Demuxer *d, AVPacket *pkt, int *repeat_pict) > const int64_t start_time = ifile->start_time_effective; > int64_t duration; > > - if (debug_ts) { > - av_log(NULL, AV_LOG_INFO, "demuxer -> ist_index:%d:%d type:%s " > - "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s duration:%s duration_time:%s\n", > - ifile->index, pkt->stream_index, > - av_get_media_type_string(ist->st->codecpar->codec_type), > - av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ist->st->time_base), > - av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ist->st->time_base), > - av_ts2str(pkt->duration), av_ts2timestr(pkt->duration, &ist->st->time_base)); > +#define SHOW_TS_DEBUG(tag_) \ > + if (debug_ts) { \ > + av_log(NULL, AV_LOG_INFO, "%s -> ist_index:%d:%d type:%s " \ > + "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s duration:%s duration_time:%s\n", \ > + tag_, ifile->index, pkt->stream_index, \ > + av_get_media_type_string(ist->st->codecpar->codec_type), \ > + av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, &ist->st->time_base), \ > + av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, &ist->st->time_base), \ > + av_ts2str(pkt->duration), av_ts2timestr(pkt->duration, &ist->st->time_base)); \ > } > > + SHOW_TS_DEBUG("demuxer"); > + > if (!ist->wrap_correction_done && start_time != AV_NOPTS_VALUE && > ist->st->pts_wrap_bits < 64) { > int64_t stime, stime2; > @@ -225,6 +228,8 @@ static void ts_fixup(Demuxer *d, AVPacket *pkt, int *repeat_pict) > if (ist->st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && > av_stream_get_parser(ist->st)) > *repeat_pict = av_stream_get_parser(ist->st)->repeat_pict; > + > + SHOW_TS_DEBUG("demuxer+tsfixup"); > } > > static void thread_set_name(InputFile *f) > -- > 2.25.1 > _______________________________________________ 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".
next prev parent reply other threads:[~2023-02-11 0:12 UTC|newest] Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-02-06 1:22 Stefano Sabatini 2023-02-11 0:12 ` Stefano Sabatini [this message] 2023-02-28 21:33 ` Stefano Sabatini
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=20230211001218.GD338325@mariano \ --to=stefasab@gmail.com \ --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