Use proper length specifiers in mp_msg calls, fixes the warnings:
[mplayer/greg.git] / libmpcodecs / ae_toolame.h
blob30000a05ba969f4da330880f4338876c8204b0ea
1 #ifndef MPAE_TOOLAME_H
2 #define MPAE_TOOLAME_H
4 #include "ae.h"
5 #include <toolame.h>
7 typedef struct {
8 toolame_options *toolame_ctx;
9 int channels, srate, bitrate;
10 int vbr;
11 int16_t left_pcm[1152], right_pcm[1152];
12 } mpae_toolame_ctx;
14 int mpae_init_toolame(audio_encoder_t *encoder);
16 #endif