summaryrefslogtreecommitdiffstats
path: root/video/mp_image.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-12-25 22:29:49 +0100
committerwm4 <wm4@nowhere>2013-01-13 20:04:12 +0100
commit717d904bbc20e06e2c6c71613d59e065845ff209 (patch)
tree6f758cff6d98e579b767952894023997618c44d5 /video/mp_image.h
parentded932dbd40e326a8d42acb8c4b8297046f08695 (diff)
downloadmpv-717d904bbc20e06e2c6c71613d59e065845ff209.tar.bz2
mpv-717d904bbc20e06e2c6c71613d59e065845ff209.tar.xz
mp_image: add mp_image_crop()
Actually stolen from draw_bmp.c.
Diffstat (limited to 'video/mp_image.h')
-rw-r--r--video/mp_image.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/video/mp_image.h b/video/mp_image.h
index 1d00115545..efbb7551b3 100644
--- a/video/mp_image.h
+++ b/video/mp_image.h
@@ -102,6 +102,9 @@ void mp_image_make_writeable(struct mp_image *img);
void mp_image_setrefp(struct mp_image **p_img, struct mp_image *new_value);
void mp_image_unrefp(struct mp_image **p_img);
+void mp_image_crop(struct mp_image *img, int x0, int y0, int x1, int y1);
+void mp_image_crop_rc(struct mp_image *img, struct mp_rect rc);
+
void mp_image_set_size(struct mp_image *mpi, int w, int h);
void mp_image_set_display_size(struct mp_image *mpi, int dw, int dh);