diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-10-19 10:09:58 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-10-19 10:09:58 +0000 |
commit | 59d4f35fc3321b156cb15e746567a39fcff34a07 (patch) | |
tree | a3c4596d53c249d5dd2989d50682a8c227d6b27e /libvo | |
parent | fc1b468117d333ca5630f7842a4c3d412389ec91 (diff) | |
download | mpv-59d4f35fc3321b156cb15e746567a39fcff34a07.tar.bz2 mpv-59d4f35fc3321b156cb15e746567a39fcff34a07.tar.xz |
Fix aspect test program linking.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29785 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/aspecttest.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libvo/aspecttest.c b/libvo/aspecttest.c index 5fe6416fce..fcd912bb28 100644 --- a/libvo/aspecttest.c +++ b/libvo/aspecttest.c @@ -18,6 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#include <stdint.h> #include <stdio.h> #include <stdlib.h> @@ -27,8 +28,11 @@ #define DEF_ZOOM 1 extern float monitor_aspect; +int vo_dheight; +int vo_dwidth; int vo_fs; float vo_panscan; +int64_t WinID = -1; int main(int argc, char *argv[]) { int w,h,z=DEF_ZOOM; |