From 09cc23e0f7f731a737d2c7c4ba74a26f7eef7988 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 7 Sep 2012 14:04:04 +0200 Subject: [PATCH] lavd/sdl: decrease debug info notice log level from AV_LOG_INFO to VERBOSE Decrease log spam. --- libavdevice/sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/sdl.c b/libavdevice/sdl.c index 6b02f59382..5d135a5494 100644 --- a/libavdevice/sdl.c +++ b/libavdevice/sdl.c @@ -168,7 +168,7 @@ static int sdl_write_header(AVFormatContext *s) goto fail; } - av_log(s, AV_LOG_INFO, "w:%d h:%d fmt:%s sar:%d/%d -> w:%d h:%d\n", + av_log(s, AV_LOG_VERBOSE, "w:%d h:%d fmt:%s sar:%d/%d -> w:%d h:%d\n", encctx->width, encctx->height, av_get_pix_fmt_name(encctx->pix_fmt), sar.num, sar.den, sdl->overlay_width, sdl->overlay_height); return 0;