summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMarth64 <marth64@proxyid.net>2024-03-09 12:39:55 -0600
committerStefano Sabatini <stefasab@gmail.com>2024-03-10 15:21:23 +0100
commit8991cedd6aa25c4967c8eae033000cc9709c2b13 (patch)
tree5d535ccb9e12de9a4c924a666e1a564b3e1a145e /libavcodec
parente68f57d89ebbd47bec5dc3377f142c61c870aa92 (diff)
avcodec/ccaption_dec: clarify log message when out-of-display columns are ignored
Signed-off-by: Marth64 <marth64@proxyid.net>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/ccaption_dec.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}