Mercurial > mplayer.hg
view mixer.h @ 6504:11c0ddb83168
use built-in yvu9->yv12 code, because it requires all src/dst strides and
offsets, the params passed to postproc's converter is simply not enough...
(temp. solution, waiting for yvu9 support in swscale)
author | arpi |
---|---|
date | Sat, 22 Jun 2002 23:05:00 +0000 |
parents | da2dda48b7ec |
children | 4e8f8efb6906 |
line wrap: on
line source
#ifndef __MPLAYER_MIXER #define __MPLAYER_MIXER extern char * mixer_device; extern int muted; extern void mixer_getvolume( float *l,float *r ); extern void mixer_setvolume( float l,float r ); extern void mixer_incvolume( void ); extern void mixer_decvolume( void ); extern float mixer_getbothvolume( void ); void mixer_mute( void ); //extern void mixer_setbothvolume( int v ); #define mixer_setbothvolume( v ) mixer_setvolume( v,v ) #endif