2008-02-22 09:09:46 +00:00
|
|
|
#ifndef MPLAYER_AE_TOOLAME_H
|
|
|
|
#define MPLAYER_AE_TOOLAME_H
|
2004-09-21 19:43:37 +00:00
|
|
|
|
2005-04-22 06:59:59 +00:00
|
|
|
#include "ae.h"
|
2004-09-21 19:43:37 +00:00
|
|
|
#include <toolame.h>
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
toolame_options *toolame_ctx;
|
|
|
|
int channels, srate, bitrate;
|
2005-04-25 10:37:55 +00:00
|
|
|
int vbr;
|
2004-09-21 19:43:37 +00:00
|
|
|
int16_t left_pcm[1152], right_pcm[1152];
|
|
|
|
} mpae_toolame_ctx;
|
|
|
|
|
2005-04-22 06:59:59 +00:00
|
|
|
int mpae_init_toolame(audio_encoder_t *encoder);
|
2004-09-21 19:43:37 +00:00
|
|
|
|
2008-02-22 09:09:46 +00:00
|
|
|
#endif /* MPLAYER_AE_TOOLAME_H */
|