summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/ae_twolame.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmpcodecs/ae_twolame.h')
-rw-r--r--libmpcodecs/ae_twolame.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libmpcodecs/ae_twolame.h b/libmpcodecs/ae_twolame.h
new file mode 100644
index 0000000000..65d3590f9b
--- /dev/null
+++ b/libmpcodecs/ae_twolame.h
@@ -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