summaryrefslogtreecommitdiffstats
path: root/libvo/aspect.h
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-03 15:31:51 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-03 15:31:51 +0000
commit4d053a65c0adac026c7673d34ca6410002caf159 (patch)
tree216229d49b70ab433beda628e81fdd6b7075eb8d /libvo/aspect.h
parent5a2e880711e69b60d53f2b57909361a88cca8178 (diff)
downloadmpv-4d053a65c0adac026c7673d34ca6410002caf159.tar.bz2
mpv-4d053a65c0adac026c7673d34ca6410002caf159.tar.xz
Simplified aspect() for the loss of some functionality to get ansi compatibility.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2056 b3059339-0415-0410-9bf9-f77b7e298cf2
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