increase max glyph and lines limit
[mplayer/glamo.git] / libvo / aspect.h
blob952cd014661707aee40245f08fdfd2ec3dc34462
1 #ifndef MPLAYER_ASPECT_H
2 #define MPLAYER_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 void panscan_init(void);
10 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);
22 void aspect_fit(int *srcw, int *srch, int fitw, int fith);
24 #endif /* MPLAYER_ASPECT_H */