1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-17 20:34:58 +00:00
mpv/libmpcodecs/ae_toolame.h
diego fe9ec3ffdd Consistently use uppercase filename as multiple inclusion guard.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25897 b3059339-0415-0410-9bf9-f77b7e298cf2
2008-01-28 01:32:52 +00:00

17 lines
309 B
C

#ifndef AE_TOOLAME_H
#define AE_TOOLAME_H
#include "ae.h"
#include <toolame.h>
typedef struct {
toolame_options *toolame_ctx;
int channels, srate, bitrate;
int vbr;
int16_t left_pcm[1152], right_pcm[1152];
} mpae_toolame_ctx;
int mpae_init_toolame(audio_encoder_t *encoder);
#endif /* AE_TOOLAME_H */