comparison libmpcodecs/ae_toolame.h @ 15265:92772475ed8d

toolame now works in vbr mode, too
author nicodvb
date Mon, 25 Apr 2005 10:37:55 +0000
parents e84a6ae9d51e
children 3baf6a2283da
comparison
equal deleted inserted replaced
15264:1692cd76d52a 15265:92772475ed8d
5 #include <toolame.h> 5 #include <toolame.h>
6 6
7 typedef struct { 7 typedef struct {
8 toolame_options *toolame_ctx; 8 toolame_options *toolame_ctx;
9 int channels, srate, bitrate; 9 int channels, srate, bitrate;
10 int vbr;
10 int16_t left_pcm[1152], right_pcm[1152]; 11 int16_t left_pcm[1152], right_pcm[1152];
11 } mpae_toolame_ctx; 12 } mpae_toolame_ctx;
12 13
13 int mpae_init_toolame(audio_encoder_t *encoder); 14 int mpae_init_toolame(audio_encoder_t *encoder);
14 15