# HG changeset patch # User reimar # Date 1384589404 0 # Node ID 9e68e53481e488e26a02317a928c9145a2139792 # Parent 93473818b2594e11b258d4176268b3b017389c1e Display messages that can be confusing only with -v. The VO initialization line will still say which format was chosen, including what kind of hardware acceleration. diff -r 93473818b259 -r 9e68e53481e4 libmpcodecs/vd_ffmpeg.c --- a/libmpcodecs/vd_ffmpeg.c Sat Nov 16 08:07:08 2013 +0000 +++ b/libmpcodecs/vd_ffmpeg.c Sat Nov 16 08:10:04 2013 +0000 @@ -297,7 +297,7 @@ avctx->get_buffer = get_buffer; avctx->release_buffer = release_buffer; avctx->reget_buffer = get_buffer; - mp_msg(MSGT_DECVIDEO, MSGL_INFO, IMGFMT_IS_XVMC(imgfmt) ? + mp_msg(MSGT_DECVIDEO, MSGL_V, IMGFMT_IS_XVMC(imgfmt) ? MSGTR_MPCODECS_XVMCAcceleratedMPEG2 : "[VD_FFMPEG] VDPAU accelerated decoding\n"); if (ctx->use_hwaccel) { @@ -1103,7 +1103,7 @@ continue; imgfmt = pixfmt2imgfmt2(fmt[i], avctx->codec_id); if(!IMGFMT_IS_HWACCEL(imgfmt)) continue; - mp_msg(MSGT_DECVIDEO, MSGL_INFO, MSGTR_MPCODECS_TryingPixfmt, i); + mp_msg(MSGT_DECVIDEO, MSGL_V, MSGTR_MPCODECS_TryingPixfmt, i); if(init_vo(sh, fmt[i]) >= 0) { break; }