[MPlayer-cvslog] r31503 - in trunk/libmpcodecs: ae_twolame.c ae_twolame.h
diego
subversion at mplayerhq.hu
Mon Jun 21 11:42:28 CEST 2010
Author: diego
Date: Mon Jun 21 11:42:28 2010
New Revision: 31503
Log:
Move mpae_twolame_ctx structure to ae_twolame.c.
The structure is not used anywhere else.
Modified:
trunk/libmpcodecs/ae_twolame.c
trunk/libmpcodecs/ae_twolame.h
Modified: trunk/libmpcodecs/ae_twolame.c
==============================================================================
--- trunk/libmpcodecs/ae_twolame.c Mon Jun 21 11:42:01 2010 (r31502)
+++ trunk/libmpcodecs/ae_twolame.c Mon Jun 21 11:42:28 2010 (r31503)
@@ -22,6 +22,8 @@
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
+#include <twolame.h>
+
#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,
Modified: trunk/libmpcodecs/ae_twolame.h
==============================================================================
--- trunk/libmpcodecs/ae_twolame.h Mon Jun 21 11:42:01 2010 (r31502)
+++ trunk/libmpcodecs/ae_twolame.h Mon Jun 21 11:42:28 2010 (r31503)
@@ -20,12 +20,6 @@
#define MPLAYER_AE_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);
More information about the MPlayer-cvslog
mailing list