From: Kaarle Ritvanen via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> To: ffmpeg-devel@ffmpeg.org Cc: Kaarle Ritvanen <code@ffmpeg.org> Subject: [FFmpeg-devel] [PATCH] avformat/rtsp: set AVFMTCTX_UNSEEKABLE flag (PR #20598) Date: Wed, 24 Sep 2025 11:58:33 -0000 Message-ID: <175871511383.25.11687961430816451731@bf249f23a2c8> (raw) PR #20598 opened by Kaarle Ritvanen (kunkku) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20598 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20598.patch Correctly set the AVFMTCTX_UNSEEKABLE flag for live RTP streams. Some external applications, such as Qt Multimedia, depend on this flag being set correctly. >From 4b5050ea12b9979fb0e7849adb72bd0e07013494 Mon Sep 17 00:00:00 2001 From: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> Date: Tue, 29 Apr 2025 14:35:00 +0300 Subject: [PATCH] avformat/rtsp: set AVFMTCTX_UNSEEKABLE flag for live RTP streams. Some external applications, such as Qt Multimedia, depend on this flag being set correctly. Signed-off-by: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi> --- libavformat/rtsp.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index d601d63a89..e8f44e571a 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -663,8 +663,8 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1, rtsp_parse_range_npt(p, &start, &end); s->start_time = start; /* AV_NOPTS_VALUE means live broadcast (and can't seek) */ - s->duration = (end == AV_NOPTS_VALUE) ? - AV_NOPTS_VALUE : end - start; + if (end != AV_NOPTS_VALUE) + s->duration = end - start; } else if (av_strstart(p, "lang:", &p)) { if (s->nb_streams > 0) { get_word(buf1, sizeof(buf1), &p); @@ -754,6 +754,8 @@ int ff_sdp_parse(AVFormatContext *s, const char *content) char buf[SDP_MAX_SIZE], *q; SDPParseState sdp_parse_state = { { 0 } }, *s1 = &sdp_parse_state; + s->duration = AV_NOPTS_VALUE; + p = content; for (;;) { p += strspn(p, SPACE_CHARS); @@ -787,6 +789,9 @@ int ff_sdp_parse(AVFormatContext *s, const char *content) av_freep(&s1->default_exclude_source_addrs[i]); av_freep(&s1->default_exclude_source_addrs); + if (s->duration == AV_NOPTS_VALUE) + s->ctx_flags |= AVFMTCTX_UNSEEKABLE; + return 0; } #endif /* CONFIG_RTPDEC */ -- 2.49.1 _______________________________________________ ffmpeg-devel mailing list -- ffmpeg-devel@ffmpeg.org To unsubscribe send an email to ffmpeg-devel-leave@ffmpeg.org
reply other threads:[~2025-09-24 11:58 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=175871511383.25.11687961430816451731@bf249f23a2c8 \ --to=ffmpeg-devel@ffmpeg.org \ --cc=code@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 http://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/ http://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