This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit e8a07be1c25a0bd06ea851295be590f799fe3665
Author:     Marvin Scholz <[email protected]>
AuthorDate: Thu Feb 19 20:28:19 2026 +0100
Commit:     Marvin Scholz <[email protected]>
CommitDate: Fri Feb 20 01:31:06 2026 +0100

    avformat: rtsp: fix logging of reply sequence number
---
 libavformat/rtsp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 1362cb683b..822780087d 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -1415,7 +1415,7 @@ int ff_rtsp_read_reply(AVFormatContext *s, 
RTSPMessageHeader *reply,
             memcpy(rt->stored_msg.header, &header, sizeof(header));
         } else {
             av_log(s, AV_LOG_WARNING, "Unexpected reply with seq %d, expected 
%d\n",
-                rt->stored_msg.header->seq, rt->stored_msg.expected_seq);
+                header.seq, rt->stored_msg.expected_seq);
             av_freep(&rt->stored_msg.body);
         }
 

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to