diff mbox series

[FFmpeg-devel,1/2] avcodec/ccaption_dec: clarify log message when out-of-display columns are ignored

Message ID 20240309183956.3204987-1-marth64@proxyid.net
State Accepted
Commit 8991cedd6aa25c4967c8eae033000cc9709c2b13
Headers show
Series [FFmpeg-devel,1/2] avcodec/ccaption_dec: clarify log message when out-of-display columns are ignored | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Marth64 March 9, 2024, 6:39 p.m. UTC
Signed-off-by: Marth64 <marth64@proxyid.net>
---
 libavcodec/ccaption_dec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c
index 1550e4b253..d03413265a 100644
--- a/libavcodec/ccaption_dec.c
+++ b/libavcodec/ccaption_dec.c
@@ -358,7 +358,7 @@  static void write_char(CCaptionSubContext *ctx, struct Screen *screen, char ch)
         return;
     }
     else {
-        av_log(ctx, AV_LOG_WARNING, "Data Ignored since exceeding screen width\n");
+        av_log(ctx, AV_LOG_WARNING, "Data ignored due to columns exceeding screen width\n");
         return;
     }
 }