summaryrefslogtreecommitdiffstats
path: root/libvo/aspect.h
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/aspect.h')
-rw-r--r--libvo/aspect.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/libvo/aspect.h b/libvo/aspect.h
index c10d1ab41b..d16f196afd 100644
--- a/libvo/aspect.h
+++ b/libvo/aspect.h
@@ -2,14 +2,7 @@
#define __ASPECT_H
/* Stuff for correct aspect scaling. */
-typedef struct {
- int x; /* x,y starting coordinate */
- int y; /* of upper left corner */
- int w; /* width */
- int h; /* height */
-} rect_t;
-
-rect_t aspect(int srcw, int srch, int fitinw, int fitinh);
+void aspect(int *srcw, int *srch, int fitinw, int fitinh);
#endif