[vlc-commits] direct3d9: log when the decoder format is favored
Steve Lhomme
git at videolan.org
Fri Mar 13 10:28:30 CET 2020
vlc | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu Mar 12 11:49:26 2020 +0100| [494c3b279afda21df09f1c0505ea6258da06d429] | committer: Steve Lhomme
direct3d9: log when the decoder format is favored
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=494c3b279afda21df09f1c0505ea6258da06d429
---
modules/video_output/win32/direct3d9.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/video_output/win32/direct3d9.c b/modules/video_output/win32/direct3d9.c
index 49639c0b7e..1183a07d3d 100644
--- a/modules/video_output/win32/direct3d9.c
+++ b/modules/video_output/win32/direct3d9.c
@@ -1396,6 +1396,7 @@ static const d3d9_format_t *Direct3DFindFormat(vout_display_t *vd, const video_f
assert(vctx_sys != NULL);
list = dxva_chroma;
decoder_format = vctx_sys->format;
+ msg_Dbg(vd, "favor decoder format: %4.4s (%d)", (const char*)&decoder_format, decoder_format);
}
else if (pass == 0 && hardware_scale_ok && sys->allow_hw_yuv && vlc_fourcc_IsYUV(fmt->i_chroma))
list = vlc_fourcc_GetYUVFallback(fmt->i_chroma);
More information about the vlc-commits
mailing list