summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-07-22 00:14:38 +0200
committerwm4 <wm4@nowhere>2013-07-22 00:14:38 +0200
commit3fd7794d42c5389f01ddbf46b246ea053c9646c6 (patch)
tree25d04a1375f9919018530ac37cd353f57c56d123 /video
parent15ab75c7a0ff841f3f567d229c693d2584017bef (diff)
downloadmpv-3fd7794d42c5389f01ddbf46b246ea053c9646c6.tar.bz2
mpv-3fd7794d42c5389f01ddbf46b246ea053c9646c6.tar.xz
vo_direct3d: fix warning on MinGW
Commit 6ab2eeb attempted to fix it on Cygwin, but now it broke on MinGW in turn. Don't think too hard about it and just remove the code. (vo.c already prints the video rectangle anyway.)
Diffstat (limited to 'video')
-rw-r--r--video/out/vo_direct3d.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/video/out/vo_direct3d.c b/video/out/vo_direct3d.c
index 25d0b8f0da..1a50e10d1e 100644
--- a/video/out/vo_direct3d.c
+++ b/video/out/vo_direct3d.c
@@ -289,11 +289,6 @@ static void calc_fs_rect(d3d_priv *priv)
priv->fs_panscan_rect.right = src_rect.x1;
priv->fs_panscan_rect.top = src_rect.y0;
priv->fs_panscan_rect.bottom = src_rect.y1;
-
- mp_msg(MSGT_VO, MSGL_V,
- "<vo_direct3d>Video rectangle: t: %"PRId32", l: %"PRId32", r: %"PRId32", b:%"PRId32"\n",
- priv->fs_movie_rect.top, priv->fs_movie_rect.left,
- priv->fs_movie_rect.right, priv->fs_movie_rect.bottom);
}
// Adjust the texture size *width/*height to fit the requirements of the D3D