summaryrefslogtreecommitdiffstats
path: root/libvo/aspect.h
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/aspect.h')
-rw-r--r--libvo/aspect.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/libvo/aspect.h b/libvo/aspect.h
index d16f196afd..eac6d1cdd0 100644
--- a/libvo/aspect.h
+++ b/libvo/aspect.h
@@ -2,7 +2,16 @@
#define __ASPECT_H
/* Stuff for correct aspect scaling. */
-void aspect(int *srcw, int *srch, int fitinw, int fitinh);
+void aspect_save_orig(int orgw, int orgh);
+
+void aspect_save_prescale(int prew, int preh);
+
+void aspect_save_screenres(int scrw, int scrh);
+
+#define A_ZOOM 1
+#define A_NOZOOM 0
+
+void aspect(int *srcw, int *srch, int zoom);
#endif