comparison 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
comparison
equal deleted inserted replaced
15358:87121d373127 15359:af245d15f502
1 #ifndef MPAE_TWOLAME_H
2 #define MPAE_TWOLAME_H
3
4 #include "ae.h"
5 #include <twolame.h>
6
7 typedef struct {
8 twolame_options *twolame_ctx;
9 int vbr;
10 } mpae_twolame_ctx;
11
12 int mpae_init_twolame(audio_encoder_t *encoder);
13
14 #endif