summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/mp_image.h
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 /libmpcodecs/mp_image.h
parentf684d12db1f547f4845dcee717359c4d6d5eed78 (diff)
downloadmpv-93d4dd46bf9c77bf097f26d52d0e1dfa913258c9.tar.bz2
mpv-93d4dd46bf9c77bf097f26d52d0e1dfa913258c9.tar.xz
mpcodecs: remove mp_image_t.x/y
These were never used.
Diffstat (limited to 'libmpcodecs/mp_image.h')
-rw-r--r--libmpcodecs/mp_image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/mp_image.h b/libmpcodecs/mp_image.h
index dd69788f26..6dbe3bfe02 100644
--- a/libmpcodecs/mp_image.h
+++ b/libmpcodecs/mp_image.h
@@ -103,7 +103,7 @@ typedef struct mp_image {
unsigned char bpp; // bits/pixel. NOT depth! for RGB it will be n*8
unsigned int imgfmt;
int width,height; // stored dimensions
- int x,y,w,h; // visible dimensions
+ int w,h; // visible dimensions
unsigned char* planes[MP_MAX_PLANES];
int stride[MP_MAX_PLANES];
char * qscale;