[MPlayer-cvslog] r31523 - in trunk: cfg-common.h libmpcodecs/vd.h

diego subversion at mplayerhq.hu
Mon Jun 21 19:10:08 CEST 2010


Author: diego
Date: Mon Jun 21 19:10:07 2010
New Revision: 31523

Log:
Move video decoder option array extern declarations to vd.h.

Modified:
   trunk/cfg-common.h
   trunk/libmpcodecs/vd.h

Modified: trunk/cfg-common.h
==============================================================================
--- trunk/cfg-common.h	Mon Jun 21 19:09:14 2010	(r31522)
+++ trunk/cfg-common.h	Mon Jun 21 19:10:07 2010	(r31523)
@@ -291,9 +291,6 @@ const m_option_t msgl_config[]={
 
 };
 
-extern const m_option_t lavc_decode_opts_conf[];
-extern const m_option_t xvid_dec_opts[];
-
 const m_option_t common_opts[] = {
 // ------------------------- common options --------------------
     {"quiet", &quiet, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},

Modified: trunk/libmpcodecs/vd.h
==============================================================================
--- trunk/libmpcodecs/vd.h	Mon Jun 21 19:09:14 2010	(r31522)
+++ trunk/libmpcodecs/vd.h	Mon Jun 21 19:10:07 2010	(r31523)
@@ -19,6 +19,7 @@
 #ifndef MPLAYER_VD_H
 #define MPLAYER_VD_H
 
+#include "m_option.h"
 #include "mp_image.h"
 #include "mpc_info.h"
 #include "libmpdemux/stheader.h"
@@ -48,6 +49,9 @@ extern int vidmode;
 extern float movie_aspect;
 extern float screen_size_xy;
 
+extern const m_option_t lavc_decode_opts_conf[];
+extern const m_option_t xvid_dec_opts[];
+
 #define VDCTRL_QUERY_FORMAT 3 /* test for availabilty of a format */
 #define VDCTRL_QUERY_MAX_PP_LEVEL 4 /* test for postprocessing support (max level) */
 #define VDCTRL_SET_PP_LEVEL 5 /* set postprocessing level */


More information about the MPlayer-cvslog mailing list