Browse Source

avformat/subtitles: reduce log level of UTF-16 warning

Applications can use this to silence the message.
tags/n2.5
wm4 Carl Eugen Hoyos 10 years ago
parent
commit
e5813d96d6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/subtitles.c

+ 1
- 1
libavformat/subtitles.c View File

@@ -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");
}



Loading…
Cancel
Save