[MPlayer-cvslog] r31504 - in trunk: cfg-mencoder.h libmpcodecs/ae_faac.h libmpcodecs/ae_lame.h libmpcodecs/ae_toolame.h libmpcodecs/ae_twolame.h

diego subversion at mplayerhq.hu
Mon Jun 21 11:51:26 CEST 2010


Author: diego
Date: Mon Jun 21 11:51:26 2010
New Revision: 31504

Log:
Move faac/lame/toolame/twolame option array declarations to appropriate headers.

Modified:
   trunk/cfg-mencoder.h
   trunk/libmpcodecs/ae_faac.h
   trunk/libmpcodecs/ae_lame.h
   trunk/libmpcodecs/ae_toolame.h
   trunk/libmpcodecs/ae_twolame.h

Modified: trunk/cfg-mencoder.h
==============================================================================
--- trunk/cfg-mencoder.h	Mon Jun 21 11:42:28 2010	(r31503)
+++ trunk/cfg-mencoder.h	Mon Jun 21 11:51:26 2010	(r31504)
@@ -23,18 +23,18 @@
  * config for cfgparser
  */
 
+#include "libmpcodecs/ae_faac.h"
+#include "libmpcodecs/ae_lame.h"
+#include "libmpcodecs/ae_toolame.h"
+#include "libmpcodecs/ae_twolame.h"
 #include "libmpcodecs/ve_x264.h"
 #include "libmpdemux/muxer_avi.h"
 #include "cfg-common.h"
 
-extern const m_option_t faacopts_conf[];
-extern const m_option_t lameopts_conf[];
 extern const m_option_t lavcopts_conf[];
 extern const m_option_t lavfopts_conf[];
 extern const m_option_t mpegopts_conf[];
 extern const m_option_t nuvopts_conf[];
-extern const m_option_t toolameopts_conf[];
-extern const m_option_t twolameopts_conf[];
 extern const m_option_t vfwopts_conf[];
 extern const m_option_t xvidencopts_conf[];
 

Modified: trunk/libmpcodecs/ae_faac.h
==============================================================================
--- trunk/libmpcodecs/ae_faac.h	Mon Jun 21 11:42:28 2010	(r31503)
+++ trunk/libmpcodecs/ae_faac.h	Mon Jun 21 11:51:26 2010	(r31504)
@@ -19,8 +19,11 @@
 #ifndef MPLAYER_AE_FAAC_H
 #define MPLAYER_AE_FAAC_H
 
-#include "ae.h"
 #include "libmpdemux/muxer.h"
+#include "ae.h"
+#include "m_option.h"
+
+extern const m_option_t faacopts_conf[];
 
 int mpae_init_faac(audio_encoder_t *encoder);
 

Modified: trunk/libmpcodecs/ae_lame.h
==============================================================================
--- trunk/libmpcodecs/ae_lame.h	Mon Jun 21 11:42:28 2010	(r31503)
+++ trunk/libmpcodecs/ae_lame.h	Mon Jun 21 11:51:26 2010	(r31504)
@@ -20,6 +20,9 @@
 #define MPLAYER_AE_LAME_H
 
 #include "ae.h"
+#include "m_option.h"
+
+extern const m_option_t lameopts_conf[];
 
 int mpae_init_lame(audio_encoder_t *encoder);
 

Modified: trunk/libmpcodecs/ae_toolame.h
==============================================================================
--- trunk/libmpcodecs/ae_toolame.h	Mon Jun 21 11:42:28 2010	(r31503)
+++ trunk/libmpcodecs/ae_toolame.h	Mon Jun 21 11:51:26 2010	(r31504)
@@ -20,6 +20,9 @@
 #define MPLAYER_AE_TOOLAME_H
 
 #include "ae.h"
+#include "m_option.h"
+
+extern const m_option_t toolameopts_conf[];
 
 int mpae_init_toolame(audio_encoder_t *encoder);
 

Modified: trunk/libmpcodecs/ae_twolame.h
==============================================================================
--- trunk/libmpcodecs/ae_twolame.h	Mon Jun 21 11:42:28 2010	(r31503)
+++ trunk/libmpcodecs/ae_twolame.h	Mon Jun 21 11:51:26 2010	(r31504)
@@ -20,6 +20,9 @@
 #define MPLAYER_AE_TWOLAME_H
 
 #include "ae.h"
+#include "m_option.h"
+
+extern const m_option_t twolameopts_conf[];
 
 int mpae_init_twolame(audio_encoder_t *encoder);
 


More information about the MPlayer-cvslog mailing list