view mixer.h @ 15447:a246c4454efc

1.961: vo_quartz and vo_macosx support -ontop as well. 1.962: vo_ggi now supports ontop. 1.963: sync to x264 rev223 (options: ratetol, vbv_*) + also added: qp_step 1.964: Document -vf pp=ac. 1.965: Document -hr-edl-seek, based on a description by Oded Shimon. 1.966: added some hyphens in quoted examples 1.967: -edl works with MEncoder as well. 1.968: wording fix (skipped) + That key is really called 'Apfel'. happily fixed
author kraymer
date Fri, 13 May 2005 23:19:06 +0000
parents 75b84965d137
children 519e42b716aa
line wrap: on
line source

#ifndef __MPLAYER_MIXER
#define __MPLAYER_MIXER

#include "libaf/af.h"
#include "libao2/audio_out.h"

extern char * mixer_device;
extern char * mixer_channel;
extern int soft_vol;
extern float soft_vol_max;

typedef struct mixer_s {
    ao_functions_t *audio_out;
    af_stream_t *afilter;
    int volstep;
    int muted;
    float last_l, last_r;
} mixer_t;

void mixer_getvolume(mixer_t *mixer, float *l, float *r);
void mixer_setvolume(mixer_t *mixer, float l, float r);
void mixer_incvolume(mixer_t *mixer);
void mixer_decvolume(mixer_t *mixer);
void mixer_getbothvolume(mixer_t *mixer, float *b);
void mixer_mute(mixer_t *mixer);

//extern void mixer_setbothvolume( int v );
#define mixer_setbothvolume(m, v) mixer_setvolume(m, v, v)

#endif