summaryrefslogtreecommitdiff
path: root/src/libmpg123/mpglib.h
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2001-08-21 19:39:50 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2001-08-21 19:39:50 +0000
commit790d5baee128cb40800fee392e74c01afefe4756 (patch)
tree4aa716c83a891ca3876968ede7f74c7482bfa7f0 /src/libmpg123/mpglib.h
parentf92de1992b6c30602b6785c0fb84fe3be6730c54 (diff)
downloadxine-lib-790d5baee128cb40800fee392e74c01afefe4756.tar.gz
xine-lib-790d5baee128cb40800fee392e74c01afefe4756.tar.bz2
First checkin of new audio_out architecture.
Audio sync and AC3 formatting now done in xine-lib/src/xine-engine/audio_out.c Audio out now done in xine-lib/src/audio_out/* Currently, only xine-lib/src/audio_oss_out.c is active. Re-support of others will follow as other people implement them. ao_functions split into ao_instance and ao_driver and function in a similar fashion as video_out. All decoder plugins now call ao_instance instead of ao_functions. ao_instance is used in xine-lib/src/xine-engine/audio_out.c ao_driver is used in xine-lib/src/audio_out/* See also changes in xine-ui files CVS patchset: 459 CVS date: 2001/08/21 19:39:50
Diffstat (limited to 'src/libmpg123/mpglib.h')
-rw-r--r--src/libmpg123/mpglib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libmpg123/mpglib.h b/src/libmpg123/mpglib.h
index 0b06eee60..60014828f 100644
--- a/src/libmpg123/mpglib.h
+++ b/src/libmpg123/mpglib.h
@@ -18,7 +18,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: mpglib.h,v 1.5 2001/08/07 14:15:04 guenter Exp $
+ * $Id: mpglib.h,v 1.6 2001/08/21 19:39:50 jcdutton Exp $
*/
#ifndef HAVE_MPGLIB_H
@@ -48,7 +48,7 @@ typedef struct mpstr {
int is_output_initialized;
int sample_rate_device;
- ao_functions_t *ao_output;
+ ao_instance_t *ao_output;
unsigned char osspace[8192];
uint32_t pts;
@@ -62,7 +62,7 @@ typedef struct mpstr {
extern "C" {
#endif
-mpgaudio_t *mpg_audio_init (ao_functions_t *ao_output);
+mpgaudio_t *mpg_audio_init (ao_instance_t *ao_output);
void mpg_audio_reset (mpgaudio_t *mp);