[MPlayer-cvslog] r24262 - in trunk: Makefile command.c get_path.c get_path.h gui/cfg.c gui/interface.c gui/interface.h input/input.c libaf/af_export.c libass/ass_mp.c libmpcodecs/dec_audio.c libmpcodecs/dec_video.c libvo/font_load.c libvo/font_load_ft.c libvo/vo_dxr2.c mencoder.c mp_core.h mplayer.c stream/stream_dvb.c
diego
subversion at mplayerhq.hu
Tue Aug 28 13:20:24 CEST 2007
Author: diego
Date: Tue Aug 28 13:20:24 2007
New Revision: 24262
Log:
Clean up the way get_path is handled: Compile get_path.c to an object to link
against instead of directly #including the C file and replace the many extern
declarations by a proper header file.
Added:
trunk/get_path.h
Modified:
trunk/Makefile
trunk/command.c
trunk/get_path.c
trunk/gui/cfg.c
trunk/gui/interface.c
trunk/gui/interface.h
trunk/input/input.c
trunk/libaf/af_export.c
trunk/libass/ass_mp.c
trunk/libmpcodecs/dec_audio.c
trunk/libmpcodecs/dec_video.c
trunk/libvo/font_load.c
trunk/libvo/font_load_ft.c
trunk/libvo/vo_dxr2.c
trunk/mencoder.c
trunk/mp_core.h
trunk/mplayer.c
trunk/stream/stream_dvb.c
Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Tue Aug 28 13:20:24 2007
@@ -20,6 +20,7 @@ SRCS_COMMON = asxparser.c \
cpudetect.c \
edl.c \
find_sub.c \
+ get_path.c \
m_config.c \
m_option.c \
m_struct.c \
Modified: trunk/command.c
==============================================================================
--- trunk/command.c (original)
+++ trunk/command.c Tue Aug 28 13:20:24 2007
@@ -28,6 +28,7 @@
#include "libmpcodecs/dec_video.h"
#include "vobsub.h"
#include "spudec.h"
+#include "get_path.h"
#ifdef USE_TV
#include "stream/tv.h"
#endif
Modified: trunk/get_path.c
==============================================================================
--- trunk/get_path.c (original)
+++ trunk/get_path.c Tue Aug 28 13:20:24 2007
@@ -8,14 +8,17 @@
* by the caller.
*
*/
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include "mp_msg.h"
+
#ifdef MACOSX_BUNDLE
#include <CoreFoundation/CoreFoundation.h>
#include <sys/types.h>
#include <sys/stat.h>
-#include <stdio.h>
-#include <stdlib.h>
#include <unistd.h>
-#include <string.h>
#endif
char *get_path(const char *filename){
Added: trunk/get_path.h
==============================================================================
--- (empty file)
+++ trunk/get_path.h Tue Aug 28 13:20:24 2007
@@ -0,0 +1,27 @@
+/*
+ * Get path to config dir/file.
+ *
+ * This file is part of MPlayer.
+ *
+ * MPlayer is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * MPlayer is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with MPlayer; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef GET_PATH_H
+#define GET_PATH_H
+
+char *get_path(const char *filename);
+void set_path_env();
+
+#endif /* GET_PATH_H */
Modified: trunk/gui/cfg.c
==============================================================================
--- trunk/gui/cfg.c (original)
+++ trunk/gui/cfg.c Tue Aug 28 13:20:24 2007
@@ -10,6 +10,7 @@
#include "mplayer.h"
#include "m_config.h"
#include "m_option.h"
+#include "get_path.h"
#include "libvo/sub.h"
#include "libvo/video_out.h"
#include "stream/stream.h"
Modified: trunk/gui/interface.c
==============================================================================
--- trunk/gui/interface.c (original)
+++ trunk/gui/interface.c Tue Aug 28 13:20:24 2007
@@ -19,6 +19,7 @@
#include "app.h"
#include "cfg.h"
#include "help_mp.h"
+#include "get_path.h"
#include "libvo/x11_common.h"
#include "libvo/video_out.h"
#include "libvo/font_load.h"
Modified: trunk/gui/interface.h
==============================================================================
--- trunk/gui/interface.h (original)
+++ trunk/gui/interface.h Tue Aug 28 13:20:24 2007
@@ -145,8 +145,6 @@ extern guiInterface_t guiIntfStruct;
extern int use_gui;
-extern char *get_path(const char *filename);
-
extern void guiInit( void );
extern void guiDone( void );
extern int guiGetEvent( int type,char * arg );
Modified: trunk/input/input.c
==============================================================================
--- trunk/input/input.c (original)
+++ trunk/input/input.c Tue Aug 28 13:20:24 2007
@@ -25,6 +25,7 @@
#include "help_mp.h"
#include "m_config.h"
#include "m_option.h"
+#include "get_path.h"
#include "joystick.h"
@@ -1647,8 +1648,6 @@ mp_input_get_section(void) {
return section;
}
-extern char *get_path(const char *filename);
-
void
mp_input_init(int use_gui) {
char* file;
Modified: trunk/libaf/af_export.c
==============================================================================
--- trunk/libaf/af_export.c (original)
+++ trunk/libaf/af_export.c Tue Aug 28 13:20:24 2007
@@ -21,9 +21,7 @@
#include <fcntl.h>
#include "af.h"
-
-extern char * get_path( const char * filename );
-
+#include "get_path.h"
#define DEF_SZ 512 // default buffer size (in samples)
#define SHARED_FILE "mplayer-af_export" /* default file name
Modified: trunk/libass/ass_mp.c
==============================================================================
--- trunk/libass/ass_mp.c (original)
+++ trunk/libass/ass_mp.c Tue Aug 28 13:20:24 2007
@@ -23,6 +23,7 @@
#include <stdlib.h>
#include "mp_msg.h"
+#include "get_path.h"
#include "ass.h"
#include "ass_utils.h"
@@ -216,8 +217,6 @@ ass_track_t* ass_read_subdata(ass_librar
return track;
}
-char *get_path(char *);
-
void ass_configure(ass_renderer_t* priv, int w, int h, int unscaled) {
int hinting;
ass_set_frame_size(priv, w, h);
Modified: trunk/libmpcodecs/dec_audio.c
==============================================================================
--- trunk/libmpcodecs/dec_audio.c (original)
+++ trunk/libmpcodecs/dec_audio.c Tue Aug 28 13:20:24 2007
@@ -202,8 +202,6 @@ int init_audio(sh_audio_t *sh_audio,char
return 0;
}
-extern char *get_path(const char *filename);
-
int init_best_audio_codec(sh_audio_t *sh_audio,char** audio_codec_list,char** audio_fm_list){
char* ac_l_default[2]={"",(char*)NULL};
// hack:
Modified: trunk/libmpcodecs/dec_video.c
==============================================================================
--- trunk/libmpcodecs/dec_video.c (original)
+++ trunk/libmpcodecs/dec_video.c Tue Aug 28 13:20:24 2007
@@ -277,8 +277,6 @@ int init_video(sh_video_t *sh_video,char
return 0;
}
-extern char *get_path(const char *filename);
-
int init_best_video_codec(sh_video_t *sh_video,char** video_codec_list,char** video_fm_list){
char* vc_l_default[2]={"",(char*)NULL};
// hack:
Modified: trunk/libvo/font_load.c
==============================================================================
--- trunk/libvo/font_load.c (original)
+++ trunk/libvo/font_load.c Tue Aug 28 13:20:24 2007
@@ -10,8 +10,6 @@
#include "font_load.h"
#include "mp_msg.h"
-extern char *get_path ( char * );
-
raw_file* load_raw(char *name,int verbose){
int bpp;
raw_file* raw=malloc(sizeof(raw_file));
Modified: trunk/libvo/font_load_ft.c
==============================================================================
--- trunk/libvo/font_load_ft.c (original)
+++ trunk/libvo/font_load_ft.c Tue Aug 28 13:20:24 2007
@@ -33,14 +33,13 @@
#include "font_load.h"
#include "mp_msg.h"
#include "mplayer.h"
+#include "get_path.h"
#include "osd_font.h"
#if (FREETYPE_MAJOR > 2) || (FREETYPE_MAJOR == 2 && FREETYPE_MINOR >= 1)
#define HAVE_FREETYPE21
#endif
-char *get_path(const char *filename);
-
char *subtitle_font_encoding = NULL;
float text_font_scale_factor = 5.0;
float osd_font_scale_factor = 6.0;
Modified: trunk/libvo/vo_dxr2.c
==============================================================================
--- trunk/libvo/vo_dxr2.c (original)
+++ trunk/libvo/vo_dxr2.c Tue Aug 28 13:20:24 2007
@@ -18,6 +18,7 @@
#include "mp_msg.h"
#include "m_option.h"
#include "sub.h"
+#include "get_path.h"
#include "libmpdemux/mpeg_packetizer.h"
#ifdef X11_FULLSCREEN
@@ -27,8 +28,6 @@
#include <dxr2ioctl.h>
-extern char *get_path(const char *filename);
-
extern float monitor_aspect;
extern float movie_aspect;
Modified: trunk/mencoder.c
==============================================================================
--- trunk/mencoder.c (original)
+++ trunk/mencoder.c Tue Aug 28 13:20:24 2007
@@ -48,7 +48,7 @@
#include "m_config.h"
#include "parser-mecmd.h"
-#include "get_path.c"
+#include "get_path.h"
#include "stream/stream.h"
#include "libmpdemux/demuxer.h"
Modified: trunk/mp_core.h
==============================================================================
--- trunk/mp_core.h (original)
+++ trunk/mp_core.h Tue Aug 28 13:20:24 2007
@@ -124,7 +124,6 @@ void set_osd_msg(int id, int level, int
double playing_audio_pts(sh_audio_t *sh_audio, demux_stream_t *d_audio,
ao_functions_t *audio_out);
void exit_player_with_rc(const char* how, int rc);
-char *get_path(const char *filename);
void rm_osd_msg(int id);
void add_subtitles(char *filename, float fps, int silent);
int reinit_video_chain(void);
Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c (original)
+++ trunk/mplayer.c Tue Aug 28 13:20:24 2007
@@ -142,7 +142,7 @@ static int cfg_include(m_option_t *conf,
return m_config_parse_config_file(mconfig, filename);
}
-#include "get_path.c"
+#include "get_path.h"
//**************************************************************************//
// XScreensaver
Modified: trunk/stream/stream_dvb.c
==============================================================================
--- trunk/stream/stream_dvb.c (original)
+++ trunk/stream/stream_dvb.c Tue Aug 28 13:20:24 2007
@@ -44,6 +44,7 @@ Foundation, Inc., 51 Franklin Street, Fi
#include "help_mp.h"
#include "m_option.h"
#include "m_struct.h"
+#include "get_path.h"
#include "libavutil/avstring.h"
#include "dvbin.h"
@@ -584,8 +585,6 @@ int dvb_step_channel(dvb_priv_t *priv, i
-extern char *get_path(const char *);
-
static void dvbin_close(stream_t *stream)
{
int i;
More information about the MPlayer-cvslog
mailing list