From 60023e3234525b7a0cc5b8225133d8282e358289 Mon Sep 17 00:00:00 2001 From: Luca Abeni Date: Mon, 13 Mar 2006 09:48:32 +0000 Subject: [PATCH] Do not be too verbose Originally committed as revision 5161 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/v4l2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/v4l2.c b/libavformat/v4l2.c index 7aa98df122..a35593078c 100644 --- a/libavformat/v4l2.c +++ b/libavformat/v4l2.c @@ -423,7 +423,7 @@ static int v4l2_read_header(AVFormatContext *s1, AVFormatParameters *ap) return AVERROR_IO; } - av_log(s1, AV_LOG_ERROR, "[%d]Capabilities: %x\n", s->fd, capabilities); + av_log(s1, AV_LOG_INFO, "[%d]Capabilities: %x\n", s->fd, capabilities); desired_format = fmt_ff2v4l(ap->pix_fmt); if (desired_format == 0 || (device_init(s->fd, &width, &height, desired_format) < 0)) { -- GitLab