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

Git pushed a commit to branch master
in repository ffmpeg.

commit 5bc9e76ec62830aa798a2c99145e81b591a1ce79
Author:     Jack Lau <[email protected]>
AuthorDate: Sat Nov 15 21:27:31 2025 +0800
Commit:     Jack Lau <[email protected]>
CommitDate: Mon Jan 19 21:37:17 2026 +0800

    avformat/whip: fix parameter order of ELAPSED
    
    Signed-off-by: Jack Lau <[email protected]>
---
 libavformat/whip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/whip.c b/libavformat/whip.c
index b5847f0a6b..9ed5b1f2a3 100644
--- a/libavformat/whip.c
+++ b/libavformat/whip.c
@@ -1911,7 +1911,7 @@ write_packet:
     if (now - whip->whip_last_consent_rx_time > WHIP_ICE_CONSENT_EXPIRED_TIMER 
* WHIP_US_PER_MS) {
         av_log(whip, AV_LOG_ERROR,
             "Consent Freshness expired after %.2fms (limited %dms), terminate 
session\n",
-            ELAPSED(now, whip->whip_last_consent_rx_time), 
WHIP_ICE_CONSENT_EXPIRED_TIMER);
+            ELAPSED(whip->whip_last_consent_rx_time, now), 
WHIP_ICE_CONSENT_EXPIRED_TIMER);
         ret = AVERROR(ETIMEDOUT);
         goto end;
     }

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

Reply via email to