summaryrefslogtreecommitdiffstats
path: root/libvo/vo_directx.c
diff options
context:
space:
mode:
authorwm4 <wm4@mplayer2.org>2012-02-24 15:25:22 +0100
committerwm4 <wm4@mplayer2.org>2012-02-24 15:25:22 +0100
commit93d4dd46bf9c77bf097f26d52d0e1dfa913258c9 (patch)
tree6961740418cdbdad235027f4151744ccca68ee11 /libvo/vo_directx.c
parentf684d12db1f547f4845dcee717359c4d6d5eed78 (diff)
downloadmpv-93d4dd46bf9c77bf097f26d52d0e1dfa913258c9.tar.bz2
mpv-93d4dd46bf9c77bf097f26d52d0e1dfa913258c9.tar.xz
mpcodecs: remove mp_image_t.x/y
These were never used.
Diffstat (limited to 'libvo/vo_directx.c')
-rw-r--r--libvo/vo_directx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_directx.c b/libvo/vo_directx.c
index 419c0f2b94..2036ac1803 100644
--- a/libvo/vo_directx.c
+++ b/libvo/vo_directx.c
@@ -930,8 +930,8 @@ static uint32_t put_image(mp_image_t *mpi){
uint8_t *d;
uint8_t *s;
- uint32_t x = mpi->x;
- uint32_t y = mpi->y;
+ uint32_t x = 0;
+ uint32_t y = 0;
uint32_t w = mpi->w;
uint32_t h = mpi->h;