Browse Source

lavd/sdl: decrease debug info notice log level from AV_LOG_INFO to VERBOSE

Decrease log spam.
tags/n1.0
Stefano Sabatini 12 years ago
parent
commit
09cc23e0f7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavdevice/sdl.c

+ 1
- 1
libavdevice/sdl.c View File

@@ -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;


Loading…
Cancel
Save