diff libmpcodecs/ae_twolame.h @ 15359:af245d15f502

added twolame mp2 audio encoder
author nicodvb
date Sat, 07 May 2005 14:50:14 +0000
parents
children 3baf6a2283da
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libmpcodecs/ae_twolame.h	Sat May 07 14:50:14 2005 +0000
@@ -0,0 +1,14 @@
+#ifndef MPAE_TWOLAME_H
+#define MPAE_TWOLAME_H
+
+#include "ae.h"
+#include <twolame.h>
+
+typedef struct {
+	twolame_options *twolame_ctx;
+	int vbr;
+} mpae_twolame_ctx;
+
+int mpae_init_twolame(audio_encoder_t *encoder);
+
+#endif