diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-23 17:21:01 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-10-23 17:21:01 +0000 |
commit | f9e3a4bf886ebfd865e6ffba7edc9c0a6f114b42 (patch) | |
tree | 8db9d460c3bea1a734a69a2740f25de72310c2d0 /mplayer.c | |
parent | a2dfc7a766c2f00408671327838602eebcc4cddf (diff) | |
download | mpv-f9e3a4bf886ebfd865e6ffba7edc9c0a6f114b42.tar.bz2 mpv-f9e3a4bf886ebfd865e6ffba7edc9c0a6f114b42.tar.xz |
cleanup config option handling in libmpdemux.
removed overcompilacted m_config_register_options() mess - export the
subconfig structs instead
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7868 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r-- | mplayer.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -431,7 +431,7 @@ static void exit_sighandler(int x){ //extern void write_avi_header_1(FILE *f,int fcc,float fps,int width,int height); -extern void mp_register_options(m_config_t* cfg); +extern void mp_input_register_options(m_config_t* cfg); #include "mixer.h" #include "cfg-mplayer.h" @@ -580,7 +580,7 @@ int gui_no_filename=0; mconfig = m_config_new(playtree); m_config_register_options(mconfig,mplayer_opts); // TODO : add something to let modules register their options - mp_register_options(mconfig); + mp_input_register_options(mconfig); parse_cfgfiles(mconfig); #ifdef HAVE_NEW_GUI |