Mercurial > mplayer.hg
view libvo/aspect.h @ 15444:26712131f359
added toolame opts
1.942: faac options
1.943: faac section review
1.944: better slave mode description, spelling/grammar
1.945: Document replacing , by . for -vo ggi:
1.946: explain how to use toolame in VBR mode
1.947: wording improvents
1.948: af_volnorm method suboption
author | kraymer |
---|---|
date | Fri, 13 May 2005 21:26:37 +0000 |
parents | 72c87b2ec779 |
children | 3f0d00abc073 |
line wrap: on
line source
#ifndef __ASPECT_H #define __ASPECT_H /* Stuff for correct aspect scaling. */ extern int vo_panscan_x; extern int vo_panscan_y; extern float vo_panscan_amount; extern void panscan_init( void ); extern void panscan_calc( void ); 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