summaryrefslogtreecommitdiff
path: root/libavformat/subtitles.c
diff options
context:
space:
mode:
authorwm4 <nfxjfg@googlemail.com>2014-10-29 18:29:43 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2014-10-29 18:29:43 +0100
commite5813d96d67b7c9276fb98d5e75acf092a48c25d (patch)
tree084113502d338f85249acb75fdcde9f6b992e363 /libavformat/subtitles.c
parentfaa9d2982969c999ab0e443a226eff116f7f8e4b (diff)
avformat/subtitles: reduce log level of UTF-16 warning
Applications can use this to silence the message.
Diffstat (limited to 'libavformat/subtitles.c')
-rw-r--r--libavformat/subtitles.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/subtitles.c b/libavformat/subtitles.c
index 7f4bdef45e..67624fcf32 100644
--- a/libavformat/subtitles.c
+++ b/libavformat/subtitles.c
@@ -46,7 +46,7 @@ void ff_text_init_avio(void *s, FFTextReader *r, AVIOContext *pb)
}
}
if (s && (r->type == FF_UTF16LE || r->type == FF_UTF16BE))
- av_log(s, AV_LOG_WARNING,
+ av_log(s, AV_LOG_INFO,
"UTF16 is automatically converted to UTF8, do not specify a character encoding\n");
}