Commit 50591626 authored by Piotr Bandurski's avatar Piotr Bandurski Committed by Michael Niedermayer

flic: use AV_LOG_ERROR for error message

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d2b927d4
......@@ -187,7 +187,7 @@ static int flic_read_header(AVFormatContext *s)
(magic_number == FLIC_FILE_MAGIC_3)) {
avpriv_set_pts_info(st, 64, speed, 1000);
} else {
av_log(s, AV_LOG_INFO, "Invalid or unsupported magic chunk in file\n");
av_log(s, AV_LOG_ERROR, "Invalid or unsupported magic chunk in file\n");
return AVERROR_INVALIDDATA;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment