From: James Almer <jamrial@gmail.com> To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH] avformat/mpegts: add a ts_id exported option Date: Mon, 19 Feb 2024 11:10:28 -0300 Message-ID: <0c53579d-c5f2-43a7-b9a9-3323ed287cdb@gmail.com> (raw) In-Reply-To: <AS8P250MB07447FBF71B41C60325183A78F512@AS8P250MB0744.EURP250.PROD.OUTLOOK.COM> On 2/19/2024 8:20 AM, Andreas Rheinhardt wrote: > James Almer: >> Replaces AVFormatContext.ts_id >> >> Signed-off-by: James Almer <jamrial@gmail.com> >> --- >> To be pushed as part of the bump set. >> >> libavformat/avformat.h | 6 ------ >> libavformat/mpegts.c | 9 +++++++-- >> 2 files changed, 7 insertions(+), 8 deletions(-) >> >> diff --git a/libavformat/avformat.h b/libavformat/avformat.h >> index 50bbd1949b..affc5fde07 100644 >> --- a/libavformat/avformat.h >> +++ b/libavformat/avformat.h >> @@ -1538,12 +1538,6 @@ typedef struct AVFormatContext { >> #define AVFMT_AVOID_NEG_TS_MAKE_NON_NEGATIVE 1 ///< Shift timestamps so they are non negative >> #define AVFMT_AVOID_NEG_TS_MAKE_ZERO 2 ///< Shift timestamps so that they start at 0 >> >> - /** >> - * Transport stream id. >> - * This will be moved into demuxer private options. Thus no API/ABI compatibility >> - */ >> - int ts_id; >> - >> /** >> * Audio preload in microseconds. >> * Note, not all formats support this and unpredictable things may happen if it is used when not supported. >> diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c >> index 1cf390e98e..36fded8db8 100644 >> --- a/libavformat/mpegts.c >> +++ b/libavformat/mpegts.c >> @@ -167,6 +167,8 @@ struct MpegTSContext { >> int merge_pmt_versions; >> int max_packet_size; >> >> + int id; >> + >> /******************************************/ >> /* private mpegts data */ >> /* scan context */ >> @@ -184,7 +186,10 @@ struct MpegTSContext { >> }; >> >> #define MPEGTS_OPTIONS \ >> - { "resync_size", "set size limit for looking up a new synchronization", offsetof(MpegTSContext, resync_size), AV_OPT_TYPE_INT, { .i64 = MAX_RESYNC_SIZE}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM } >> + { "resync_size", "set size limit for looking up a new synchronization", \ >> + offsetof(MpegTSContext, resync_size), AV_OPT_TYPE_INT, { .i64 = MAX_RESYNC_SIZE}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }, \ >> + { "ts_id", "transport stream id", \ >> + offsetof(MpegTSContext, id), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, AV_OPT_FLAG_EXPORT|AV_OPT_FLAG_READONLY } >> >> static const AVOption options[] = { >> MPEGTS_OPTIONS, >> @@ -2554,7 +2559,7 @@ static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len >> >> if (skip_identical(h, tssf)) >> return; >> - ts->stream->ts_id = h->id; >> + ts->id = h->id; >> >> for (;;) { >> sid = get16(&p, p_end); > > Patchwork shows that several ts fate tests fail with this patch, > presumably because ffprobe prints exported options (see > print_private_data()). Amended locally with the updated refs. > Anyway, I don't see why you not add the option now and remove the public > field with the bump. Ok, will do that and apply now. Thanks. _______________________________________________ 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:[~2024-02-19 14:10 UTC|newest] Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-02-19 2:48 James Almer 2024-02-19 11:20 ` Andreas Rheinhardt 2024-02-19 14:10 ` James Almer [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=0c53579d-c5f2-43a7-b9a9-3323ed287cdb@gmail.com \ --to=jamrial@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