From 38f286f9b6b816cd1bc69f5746d4113ca63e703f Mon Sep 17 00:00:00 2001
From: devraj ajmera <devrajajmera077@gmail.com>
Date: Fri, 23 Jan 2026 10:46:31 +0530
Subject: [PATCH] lavf/whip: improve RTP muxer error message

Signed-off-by: devraj ajmera <devrajajmera077@gmail.com>
---
 libavformat/whip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/whip.c b/libavformat/whip.c
index 875cb43a04..c3507405fa 100644
--- a/libavformat/whip.c
+++ b/libavformat/whip.c
@@ -1550,7 +1550,7 @@ static int create_rtp_muxer(AVFormatContext *s)
 
     const AVOutputFormat *rtp_format = av_guess_format("rtp", NULL, NULL);
     if (!rtp_format) {
-        av_log(whip, AV_LOG_ERROR,"WHIP: failed to guess RTP muxer, ensure RTP is enabled in build\n");
+        av_log(whip, AV_LOG_ERROR,"Failed to guess RTP muxer, ensure RTP is enabled in build\n");
         ret = AVERROR(ENOSYS);
         goto end;
     }
-- 
2.52.0.windows.1

