Mercurial > mplayer.hg
view libmpdemux/mf.h @ 25194:e816d546c4fe
ao_null: Make duration of "buffered" audio constant
Choose the "buffer size" for the amount of audio the driver accepts so
that it corresponds to about 0.2 seconds of playback based on the
number of channels, sample size and samplerate.
author | uau |
---|---|
date | Sat, 01 Dec 2007 01:39:39 +0000 |
parents | 3f0d00abc073 |
children | 3baf6a2283da |
line wrap: on
line source
#ifndef MF_H #define MF_H extern int mf_w; extern int mf_h; extern float mf_fps; extern char * mf_type; typedef struct { int curr_frame; int nr_of_files; char ** names; } mf_t; mf_t* open_mf(char * filename); #endif