summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-10-25 19:37:36 +0200
committerwm4 <wm4@nowhere>2012-10-27 21:17:58 +0200
commit06a45265194dc7e18475de9e3531977e32d7c196 (patch)
treec1bfedd5aecb4b705263c370a9d1f8e27c10f09d
parentf50d0b16e097c10009adedcedfd3eef61e85bc04 (diff)
downloadmpv-06a45265194dc7e18475de9e3531977e32d7c196.tar.bz2
mpv-06a45265194dc7e18475de9e3531977e32d7c196.tar.xz
mpcommon: add mp_rect type
-rw-r--r--mpcommon.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/mpcommon.h b/mpcommon.h
index 674d9b1554..119f11fb3b 100644
--- a/mpcommon.h
+++ b/mpcommon.h
@@ -80,4 +80,9 @@ extern const char *mplayer_version;
char *mp_format_time(double time, bool fractions);
+struct mp_rect {
+ int x0, y0;
+ int x1, y1;
+};
+
#endif /* MPLAYER_MPCOMMON_H */