[FFmpeg-cvslog] flic: use AV_LOG_ERROR for error message
Piotr Bandurski
git at videolan.org
Sat Sep 1 01:29:59 CEST 2012
ffmpeg | branch: master | Piotr Bandurski <ami_stuff at o2.pl> | Fri Aug 31 20:57:42 2012 +0200| [505916265985dc245c481b095b6a375533a41ed2] | committer: Michael Niedermayer
flic: use AV_LOG_ERROR for error message
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=505916265985dc245c481b095b6a375533a41ed2
---
libavformat/flic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/flic.c b/libavformat/flic.c
index f6aa3b0..db3f5d8 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;
}
More information about the ffmpeg-cvslog
mailing list