mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 10:55:43 +00:00
5bb432dbbe
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15360 b3059339-0415-0410-9bf9-f77b7e298cf2
15 lines
221 B
C
15 lines
221 B
C
#ifndef MPAE_TWOLAME_H
|
|
#define MPAE_TWOLAME_H
|
|
|
|
#include "ae.h"
|
|
#include <twolame.h>
|
|
|
|
typedef struct {
|
|
twolame_options *twolame_ctx;
|
|
int vbr;
|
|
} mpae_twolame_ctx;
|
|
|
|
int mpae_init_twolame(audio_encoder_t *encoder);
|
|
|
|
#endif
|