[MPlayer-cvslog] r36513 - trunk/libmpcodecs/vd_ffmpeg.c
reimar
subversion at mplayerhq.hu
Sat Nov 16 09:10:04 CET 2013
Author: reimar
Date: Sat Nov 16 09:10:04 2013
New Revision: 36513
Log:
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.
Modified:
trunk/libmpcodecs/vd_ffmpeg.c
Modified: trunk/libmpcodecs/vd_ffmpeg.c
==============================================================================
--- trunk/libmpcodecs/vd_ffmpeg.c Sat Nov 16 09:07:08 2013 (r36512)
+++ trunk/libmpcodecs/vd_ffmpeg.c Sat Nov 16 09:10:04 2013 (r36513)
@@ -297,7 +297,7 @@ static void set_format_params(struct AVC
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 @@ static enum AVPixelFormat get_format(str
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;
}
More information about the MPlayer-cvslog
mailing list