summaryrefslogtreecommitdiff
path: root/libavformat/flic.c
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-08-31 20:57:42 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-08-31 23:04:05 +0200
commit505916265985dc245c481b095b6a375533a41ed2 (patch)
tree81c1d818eac0e64bcb1132e9d102430ab44951b7 /libavformat/flic.c
parentd2b927d4fc6fb4ce906d910c5e969db6244c9497 (diff)
flic: use AV_LOG_ERROR for error message
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/flic.c')
-rw-r--r--libavformat/flic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flic.c b/libavformat/flic.c
index f6aa3b0e2e..db3f5d8dfa 100644
--- a/libavformat/flic.c
+++ b/libavformat/flic.c
@@ -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;
}