Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-09-07 16:04:04 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-09-07 16:31:38 +0400
commit09cc23e0f7f731a737d2c7c4ba74a26f7eef7988 (patch)
tree73944f4bb7c34fd14ed24c33c21a387871adb0db /libavdevice
parenta7c7b34d29050b16e19ee99514831958ce2e0dd0 (diff)
lavd/sdl: decrease debug info notice log level from AV_LOG_INFO to VERBOSE
Decrease log spam.
Diffstat (limited to 'libavdevice')
-rw-r--r--libavdevice/sdl.c2
1 files changed, 1 insertions, 1 deletions
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;