Comment out the correct #endif directive.
[mplayer/greg.git] / libvo / aspect.h
blobde0a1823976c223785d038c63084f3692cc90dda
1 #ifndef ASPECT_H
2 #define ASPECT_H
3 /* Stuff for correct aspect scaling. */
5 extern int vo_panscan_x;
6 extern int vo_panscan_y;
7 extern float vo_panscan_amount;
9 extern void panscan_init( void );
10 extern void panscan_calc( void );
12 void aspect_save_orig(int orgw, int orgh);
14 void aspect_save_prescale(int prew, int preh);
16 void aspect_save_screenres(int scrw, int scrh);
18 #define A_ZOOM 1
19 #define A_NOZOOM 0
21 void aspect(int *srcw, int *srch, int zoom);
23 #endif