# HG changeset patch # User diego # Date 1277113348 0 # Node ID 327eedc724c5dc5780bce6f70970695292e394d8 # Parent bc52a219f7415fa8fba4b30a28f6680d44a6b0f8 Move mpae_twolame_ctx structure to ae_twolame.c. The structure is not used anywhere else. diff -r bc52a219f741 -r 327eedc724c5 libmpcodecs/ae_twolame.c --- a/libmpcodecs/ae_twolame.c Mon Jun 21 09:42:01 2010 +0000 +++ b/libmpcodecs/ae_twolame.c Mon Jun 21 09:42:28 2010 +0000 @@ -22,6 +22,8 @@ #include #include #include +#include + #include "m_option.h" #include "mp_msg.h" #include "libmpdemux/aviheader.h" @@ -33,6 +35,11 @@ #include "libmpdemux/mp3_hdr.h" +typedef struct { + twolame_options *twolame_ctx; + int vbr; +} mpae_twolame_ctx; + static int param_bitrate = 192, param_psy = 3, diff -r bc52a219f741 -r 327eedc724c5 libmpcodecs/ae_twolame.h --- a/libmpcodecs/ae_twolame.h Mon Jun 21 09:42:01 2010 +0000 +++ b/libmpcodecs/ae_twolame.h Mon Jun 21 09:42:28 2010 +0000 @@ -20,12 +20,6 @@ #define MPLAYER_AE_TWOLAME_H #include "ae.h" -#include - -typedef struct { - twolame_options *twolame_ctx; - int vbr; -} mpae_twolame_ctx; int mpae_init_twolame(audio_encoder_t *encoder);