summaryrefslogtreecommitdiff
path: root/src/libmpg123/mpglib.h
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-04-27 10:42:38 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2001-04-27 10:42:38 +0000
commita1f5ebe0d19b2552ef6f3c4a099f140249b81d58 (patch)
tree7bf6c5f908bb39a5320cad7bd6420476ef397d7c /src/libmpg123/mpglib.h
parent34eb54c49bb64f74e8ef8945fb40d4172bb271f5 (diff)
downloadxine-lib-a1f5ebe0d19b2552ef6f3c4a099f140249b81d58.tar.gz
xine-lib-a1f5ebe0d19b2552ef6f3c4a099f140249b81d58.tar.bz2
Audio out compile again. Change prototypes in audio out, libac3 and
libmpg123, passing the metronom arg. CVS patchset: 34 CVS date: 2001/04/27 10:42:38
Diffstat (limited to 'src/libmpg123/mpglib.h')
-rw-r--r--src/libmpg123/mpglib.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libmpg123/mpglib.h b/src/libmpg123/mpglib.h
index 04b33a922..3f1eea165 100644
--- a/src/libmpg123/mpglib.h
+++ b/src/libmpg123/mpglib.h
@@ -18,14 +18,16 @@
* 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.1 2001/04/18 22:34:49 f1rmb Exp $
+ * $Id: mpglib.h,v 1.2 2001/04/27 10:42:38 f1rmb Exp $
*/
#ifndef HAVE_MPGLIB_H
#define HAVE_MPGLIB_H
#include <inttypes.h>
+
#include "audio_out.h"
+#include "metronom.h"
typedef struct mpstr {
unsigned char bsspace[2][MAXFRAMESIZE+512]; /* MAXFRAMESIZE */
@@ -58,7 +60,8 @@ mpgaudio_t *mpg_audio_init (ao_functions_t *ao_output);
void mpg_audio_reset (mpgaudio_t *mp);
-void mpg_audio_decode_data (mpgaudio_t *mp, uint8_t *data, uint8_t *data_end,
+void mpg_audio_decode_data (metronom_t *metronom,
+ mpgaudio_t *mp, uint8_t *data, uint8_t *data_end,
uint32_t pts);
#ifdef __cplusplus
@@ -66,3 +69,4 @@ void mpg_audio_decode_data (mpgaudio_t *mp, uint8_t *data, uint8_t *data_end,
#endif
#endif
+