mirror of https://github.com/mpv-player/mpv
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. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24262 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
2e2c64dd3a
commit
84157efa5a
1
Makefile
1
Makefile
|
@ -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 \
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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){
|
||||
|
|
|
@ -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 */
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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 );
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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_library_t* library, sub_data* subdata, double
|
|||
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);
|
||||
|
|
|
@ -202,8 +202,6 @@ int init_audio(sh_audio_t *sh_audio,char* codecname,char* afm,int status){
|
|||
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:
|
||||
|
|
|
@ -277,8 +277,6 @@ int init_video(sh_video_t *sh_video,char* codecname,char* vfm,int status){
|
|||
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:
|
||||
|
|
|
@ -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));
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -124,7 +124,6 @@ void set_osd_msg(int id, int level, int time, const char* fmt, ...);
|
|||
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);
|
||||
|
|
|
@ -142,7 +142,7 @@ static int cfg_include(m_option_t *conf, char *filename){
|
|||
return m_config_parse_config_file(mconfig, filename);
|
||||
}
|
||||
|
||||
#include "get_path.c"
|
||||
#include "get_path.h"
|
||||
|
||||
//**************************************************************************//
|
||||
// XScreensaver
|
||||
|
|
|
@ -44,6 +44,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#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, int dir)
|
|||
|
||||
|
||||
|
||||
extern char *get_path(const char *);
|
||||
|
||||
static void dvbin_close(stream_t *stream)
|
||||
{
|
||||
int i;
|
||||
|
|
Loading…
Reference in New Issue