summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-02-24 17:07:49 +0000
committerrfelker <rfelker@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-02-24 17:07:49 +0000
commit7a58560c9a664c1a973da124a5f498d69da5408e (patch)
tree31976b827196e6f69ca515f4851046b26f8c584e /libvo
parentaa2ba2b5c3c574ab0949765c59b6efb4c340abdb (diff)
downloadmpv-7a58560c9a664c1a973da124a5f498d69da5408e.tar.bz2
mpv-7a58560c9a664c1a973da124a5f498d69da5408e.tar.xz
no effect in practice, but strides should always be signed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14796 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_dga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_dga.c b/libvo/vo_dga.c
index 0c6eadadd2..feabdc3aa8 100644
--- a/libvo/vo_dga.c
+++ b/libvo/vo_dga.c
@@ -233,7 +233,7 @@ static void draw_alpha(int x0, int y0, int w, int h, unsigned char *src,
char *d;
unsigned int offset;
- unsigned int buffer_stride;
+ int buffer_stride;
offset = vo_dga_width * y0 + x0;
buffer_stride = vo_dga_width;