Mercurial > mplayer.hg
annotate gui/cfg.c @ 31590:dd1dc0ff5283
Add/fix GSM audio decoding through FFmpeg.
author | reimar |
---|---|
date | Sat, 10 Jul 2010 07:57:06 +0000 |
parents | f2aebe1309b2 |
children | 6c48f42a9c75 |
rev | line source |
---|---|
26458 | 1 /* |
2 * This file is part of MPlayer. | |
3 * | |
4 * MPlayer is free software; you can redistribute it and/or modify | |
5 * it under the terms of the GNU General Public License as published by | |
6 * the Free Software Foundation; either version 2 of the License, or | |
7 * (at your option) any later version. | |
8 * | |
9 * MPlayer is distributed in the hope that it will be useful, | |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 * GNU General Public License for more details. | |
13 * | |
14 * You should have received a copy of the GNU General Public License along | |
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
17 */ | |
23077 | 18 |
19 #include <stdlib.h> | |
20 #include <stdio.h> | |
21 #include <string.h> | |
22 | |
23 #include "config.h" | |
24 #include "mp_msg.h" | |
25 #include "help_mp.h" | |
26 #include "mixer.h" | |
27 #include "mplayer.h" | |
28 #include "m_config.h" | |
29 #include "m_option.h" | |
30901 | 30 #include "path.h" |
30653
3d23e24c5c60
Declare externally used variables from vd.c as extern in vd.h.
diego
parents:
30633
diff
changeset
|
31 #include "libmpcodecs/vd.h" |
24149
35fcce39b121
Remove redundant extern variable declarations, include proper headers instead.
diego
parents:
23795
diff
changeset
|
32 #include "libvo/sub.h" |
23077 | 33 #include "libvo/video_out.h" |
31385
f2aebe1309b2
Declare stop_xscreensaver extern in x11_common.h instead of all over the code.
diego
parents:
30901
diff
changeset
|
34 #include "libvo/x11_common.h" |
24149
35fcce39b121
Remove redundant extern variable declarations, include proper headers instead.
diego
parents:
23795
diff
changeset
|
35 #include "stream/stream.h" |
35fcce39b121
Remove redundant extern variable declarations, include proper headers instead.
diego
parents:
23795
diff
changeset
|
36 #include "libmpdemux/demuxer.h" |
24153
0bbfebce0583
Remove redundant extern declarations, #include the right headers instead.
diego
parents:
24149
diff
changeset
|
37 #include "libass/ass_mp.h" |
23077 | 38 |
39 #include "cfg.h" | |
40 #include "app.h" | |
41 #include "interface.h" | |
30536
39a4dd7ec420
Move GUI-related extern declarations to a GUI header file.
diego
parents:
30535
diff
changeset
|
42 #include "mplayer/gmplayer.h" |
23077 | 43 #include "mplayer/play.h" |
44 | |
45 // --- params | |
46 | |
47 int gtkEnableAudioEqualizer = 0; | |
48 | |
49 int gtkVfPP = 0; | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
50 #ifdef CONFIG_LIBAVCODEC |
23077 | 51 int gtkVfLAVC = 0; |
52 #endif | |
53 | |
54 int gtkAONorm = 0; | |
55 int gtkAOSurround = 0; | |
56 int gtkAOExtraStereo = 0; | |
57 float gtkAOExtraStereoMul = 1.0; | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
58 #ifdef CONFIG_OSS_AUDIO |
23077 | 59 char * gtkAOOSSMixer; |
60 char * gtkAOOSSMixerChannel; | |
61 char * gtkAOOSSDevice; | |
62 #endif | |
27390
9d95dc936e66
Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents:
27387
diff
changeset
|
63 #ifdef CONFIG_ALSA |
23077 | 64 char * gtkAOALSAMixer; |
65 char * gtkAOALSAMixerChannel; | |
66 char * gtkAOALSADevice; | |
67 #endif | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
68 #ifdef CONFIG_SDL |
23077 | 69 char * gtkAOSDLDriver; |
70 #endif | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
71 #ifdef CONFIG_ESD |
23077 | 72 char * gtkAOESDDevice; |
73 #endif | |
74 | |
75 int gtkCacheOn = 0; | |
76 int gtkCacheSize = 2048; | |
77 | |
78 int gtkAutoSyncOn = 0; | |
79 int gtkAutoSync = 0; | |
80 | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
81 #ifdef CONFIG_DXR3 |
23077 | 82 char * gtkDXR3Device; |
83 #endif | |
84 | |
85 int gtkSubDumpMPSub = 0; | |
86 int gtkSubDumpSrt = 0; | |
87 | |
88 int gtkLoadFullscreen = 0; | |
89 int gtkShowVideoWindow = 1; | |
90 int gtkEnablePlayBar = 1; | |
91 | |
92 int gui_save_pos = 1; | |
93 int gui_main_pos_x = -2; | |
94 int gui_main_pos_y = -2; | |
95 int gui_sub_pos_x = -1; | |
96 int gui_sub_pos_y = -1; | |
97 | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
98 #ifdef CONFIG_ASS |
23077 | 99 gtkASS_t gtkASS; |
100 #endif | |
101 // --- | |
102 | |
26422
f74bff77f088
noconfig fix, disable_gui_conf was not defined when compiling mencoder.
albeu
parents:
26416
diff
changeset
|
103 extern int disable_gui_conf; |
28051 | 104 int m_config_parse_config_file(m_config_t* config, char *conffile); |
23077 | 105 |
106 static m_config_t * gui_conf; | |
25710 | 107 static const m_option_t gui_opts[] = |
23077 | 108 { |
109 { "enable_audio_equ",>kEnableAudioEqualizer,CONF_TYPE_FLAG,0,0,1,NULL }, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
110 |
23077 | 111 { "vo_driver",&video_driver_list,CONF_TYPE_STRING_LIST,0,0,0,NULL }, |
112 { "vo_panscan",&vo_panscan,CONF_TYPE_FLOAT,CONF_RANGE,0.0,1.0,NULL }, | |
113 { "vo_doublebuffering",&vo_doublebuffering,CONF_TYPE_FLAG,0,0,1,NULL }, | |
114 { "vo_direct_render",&vo_directrendering,CONF_TYPE_FLAG,0,0,1,NULL }, | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
115 #ifdef CONFIG_DXR3 |
23077 | 116 { "vo_dxr3_device",>kDXR3Device,CONF_TYPE_STRING,0,0,0,NULL }, |
117 #endif | |
118 | |
119 { "v_framedrop",&frame_dropping,CONF_TYPE_INT,CONF_RANGE,0,2,NULL }, | |
120 { "v_flip",&flip,CONF_TYPE_INT,CONF_RANGE,-1,1,NULL }, | |
121 { "v_ni",&force_ni,CONF_TYPE_FLAG,0,0,1,NULL }, | |
122 { "v_idx",&index_mode,CONF_TYPE_INT,CONF_RANGE,-1,2,NULL }, | |
123 { "v_vfm",&video_fm_list,CONF_TYPE_STRING_LIST,0,0,0,NULL }, | |
124 { "a_afm",&audio_fm_list,CONF_TYPE_STRING_LIST,0,0,0,NULL }, | |
125 | |
126 { "vf_pp",>kVfPP,CONF_TYPE_FLAG,0,0,1,NULL }, | |
127 { "vf_autoq",&auto_quality,CONF_TYPE_INT,CONF_RANGE,0,100,NULL }, | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
128 #ifdef CONFIG_LIBAVCODEC |
23077 | 129 { "vf_lavc",>kVfLAVC,CONF_TYPE_FLAG,0,0,1,NULL }, |
130 #endif | |
131 | |
132 { "ao_driver",&audio_driver_list,CONF_TYPE_STRING_LIST,0,0,0,NULL }, | |
133 { "ao_volnorm",>kAONorm,CONF_TYPE_FLAG,0,0,1,NULL }, | |
134 { "softvol",&soft_vol,CONF_TYPE_FLAG,0,0,1,NULL }, | |
135 { "ao_surround",>kAOSurround,CONF_TYPE_FLAG,0,0,1,NULL }, | |
136 { "ao_extra_stereo",>kAOExtraStereo,CONF_TYPE_FLAG,0,0,1,NULL }, | |
137 { "ao_extra_stereo_coefficient",>kAOExtraStereoMul,CONF_TYPE_FLOAT,CONF_RANGE,-10,10,NULL }, | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
138 #ifdef CONFIG_OSS_AUDIO |
23077 | 139 { "ao_oss_mixer",>kAOOSSMixer,CONF_TYPE_STRING,0,0,0,NULL }, |
140 { "ao_oss_mixer_channel",>kAOOSSMixerChannel,CONF_TYPE_STRING,0,0,0,NULL }, | |
141 { "ao_oss_device",>kAOOSSDevice,CONF_TYPE_STRING,0,0,0,NULL }, | |
142 #endif | |
27390
9d95dc936e66
Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents:
27387
diff
changeset
|
143 #ifdef CONFIG_ALSA |
23077 | 144 { "ao_alsa_mixer",>kAOALSAMixer,CONF_TYPE_STRING,0,0,0,NULL }, |
145 { "ao_alsa_mixer_channel",>kAOALSAMixerChannel,CONF_TYPE_STRING,0,0,0,NULL }, | |
146 { "ao_alsa_device",>kAOALSADevice,CONF_TYPE_STRING,0,0,0,NULL }, | |
147 #endif | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
148 #ifdef CONFIG_SDL |
23077 | 149 { "ao_sdl_subdriver",>kAOSDLDriver,CONF_TYPE_STRING,0,0,0,NULL }, |
150 #endif | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
151 #ifdef CONFIG_ESD |
23077 | 152 { "ao_esd_device",>kAOESDDevice,CONF_TYPE_STRING,0,0,0,NULL }, |
153 #endif | |
154 | |
155 { "dvd_device",&dvd_device,CONF_TYPE_STRING,0,0,0,NULL }, | |
156 { "cdrom_device",&cdrom_device,CONF_TYPE_STRING,0,0,0,NULL }, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
157 |
23077 | 158 { "osd_level",&osd_level,CONF_TYPE_INT,CONF_RANGE,0,3,NULL }, |
159 { "sub_auto_load",&sub_auto,CONF_TYPE_FLAG,0,0,1,NULL }, | |
160 { "sub_unicode",&sub_unicode,CONF_TYPE_FLAG,0,0,1,NULL }, | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
161 #ifdef CONFIG_ASS |
23077 | 162 { "ass_enabled",&ass_enabled,CONF_TYPE_FLAG,0,0,1,NULL }, |
163 { "ass_use_margins",&ass_use_margins,CONF_TYPE_FLAG,0,0,1,NULL }, | |
164 { "ass_top_margin",&ass_top_margin,CONF_TYPE_INT,CONF_RANGE,0,512,NULL }, | |
165 { "ass_bottom_margin",&ass_bottom_margin,CONF_TYPE_INT,CONF_RANGE,0,512,NULL }, | |
166 #endif | |
167 { "sub_pos",&sub_pos,CONF_TYPE_INT,CONF_RANGE,0,200,NULL }, | |
168 { "sub_overlap",&suboverlap_enabled,CONF_TYPE_FLAG,0,0,0,NULL }, | |
27393 | 169 #ifdef CONFIG_ICONV |
23077 | 170 { "sub_cp",&sub_cp,CONF_TYPE_STRING,0,0,0,NULL }, |
171 #endif | |
172 { "font_factor",&font_factor,CONF_TYPE_FLOAT,CONF_RANGE,0.0,10.0,NULL }, | |
173 { "font_name",&font_name,CONF_TYPE_STRING,0,0,0,NULL }, | |
27393 | 174 #ifdef CONFIG_FREETYPE |
23077 | 175 { "font_encoding",&subtitle_font_encoding,CONF_TYPE_STRING,0,0,0,NULL }, |
176 { "font_text_scale",&text_font_scale_factor,CONF_TYPE_FLOAT,CONF_RANGE,0,100,NULL }, | |
177 { "font_osd_scale",&osd_font_scale_factor,CONF_TYPE_FLOAT,CONF_RANGE,0,100,NULL }, | |
178 { "font_blur",&subtitle_font_radius,CONF_TYPE_FLOAT,CONF_RANGE,0,8,NULL }, | |
179 { "font_outline",&subtitle_font_thickness,CONF_TYPE_FLOAT,CONF_RANGE,0,8,NULL }, | |
180 { "font_autoscale",&subtitle_autoscale,CONF_TYPE_INT,CONF_RANGE,0,3,NULL }, | |
181 #endif | |
182 | |
183 { "cache",>kCacheOn,CONF_TYPE_FLAG,0,0,1,NULL }, | |
184 { "cache_size",>kCacheSize,CONF_TYPE_INT,CONF_RANGE,-1,65535,NULL }, | |
185 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
186 { "playbar",>kEnablePlayBar,CONF_TYPE_FLAG,0,0,1,NULL }, |
23077 | 187 { "load_fullscreen",>kLoadFullscreen,CONF_TYPE_FLAG,0,0,1,NULL }, |
188 { "show_videowin", >kShowVideoWindow,CONF_TYPE_FLAG,0,0,1,NULL }, | |
189 { "stopxscreensaver",&stop_xscreensaver,CONF_TYPE_FLAG,0,0,1,NULL }, | |
190 | |
191 { "autosync",>kAutoSyncOn,CONF_TYPE_FLAG,0,0,1,NULL }, | |
192 { "autosync_size",>kAutoSync,CONF_TYPE_INT,CONF_RANGE,0,10000,NULL }, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
193 |
23077 | 194 { "gui_skin",&skinName,CONF_TYPE_STRING,0,0,0,NULL }, |
195 | |
196 { "gui_save_pos", &gui_save_pos, CONF_TYPE_FLAG,0,0,1,NULL}, | |
197 { "gui_main_pos_x", &gui_main_pos_x, CONF_TYPE_INT,0,0,0,NULL}, | |
198 { "gui_main_pos_y", &gui_main_pos_y, CONF_TYPE_INT,0,0,0,NULL}, | |
199 { "gui_video_out_pos_x", &gui_sub_pos_x, CONF_TYPE_INT,0,0,0,NULL}, | |
200 { "gui_video_out_pos_y", &gui_sub_pos_y, CONF_TYPE_INT,0,0,0,NULL}, | |
201 | |
202 { "equ_channel_1",>kEquChannel1,CONF_TYPE_STRING,0,0,0,NULL }, | |
203 { "equ_channel_2",>kEquChannel2,CONF_TYPE_STRING,0,0,0,NULL }, | |
204 { "equ_channel_3",>kEquChannel3,CONF_TYPE_STRING,0,0,0,NULL }, | |
205 { "equ_channel_4",>kEquChannel4,CONF_TYPE_STRING,0,0,0,NULL }, | |
206 { "equ_channel_5",>kEquChannel5,CONF_TYPE_STRING,0,0,0,NULL }, | |
207 { "equ_channel_6",>kEquChannel6,CONF_TYPE_STRING,0,0,0,NULL }, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
208 |
23077 | 209 #define audio_equ_row( i,j ) { "equ_band_"#i#j,>kEquChannels[i][j],CONF_TYPE_FLOAT,CONF_RANGE,-15.0,15.0,NULL }, |
210 audio_equ_row( 0,0 ) audio_equ_row( 0,1 ) audio_equ_row( 0,2 ) audio_equ_row( 0,3 ) audio_equ_row( 0,4 ) audio_equ_row( 0,5 ) audio_equ_row( 0,6 ) audio_equ_row( 0,7 ) audio_equ_row( 0,8 ) audio_equ_row( 0,9 ) | |
211 audio_equ_row( 1,0 ) audio_equ_row( 1,1 ) audio_equ_row( 1,2 ) audio_equ_row( 1,3 ) audio_equ_row( 1,4 ) audio_equ_row( 1,5 ) audio_equ_row( 1,6 ) audio_equ_row( 1,7 ) audio_equ_row( 1,8 ) audio_equ_row( 1,9 ) | |
212 audio_equ_row( 2,0 ) audio_equ_row( 2,1 ) audio_equ_row( 2,2 ) audio_equ_row( 2,3 ) audio_equ_row( 2,4 ) audio_equ_row( 2,5 ) audio_equ_row( 2,6 ) audio_equ_row( 2,7 ) audio_equ_row( 2,8 ) audio_equ_row( 2,9 ) | |
213 audio_equ_row( 3,0 ) audio_equ_row( 3,1 ) audio_equ_row( 3,2 ) audio_equ_row( 3,3 ) audio_equ_row( 3,4 ) audio_equ_row( 3,5 ) audio_equ_row( 3,6 ) audio_equ_row( 3,7 ) audio_equ_row( 3,8 ) audio_equ_row( 3,9 ) | |
214 audio_equ_row( 4,0 ) audio_equ_row( 4,1 ) audio_equ_row( 4,2 ) audio_equ_row( 4,3 ) audio_equ_row( 4,4 ) audio_equ_row( 4,5 ) audio_equ_row( 4,6 ) audio_equ_row( 4,7 ) audio_equ_row( 4,8 ) audio_equ_row( 4,9 ) | |
215 audio_equ_row( 5,0 ) audio_equ_row( 5,1 ) audio_equ_row( 5,2 ) audio_equ_row( 5,3 ) audio_equ_row( 5,4 ) audio_equ_row( 5,5 ) audio_equ_row( 5,6 ) audio_equ_row( 5,7 ) audio_equ_row( 5,8 ) audio_equ_row( 5,9 ) | |
216 #undef audio_equ_row | |
217 | |
218 { NULL, NULL, 0, 0, 0, 0, NULL } | |
219 }; | |
220 | |
30535
016e5fc1dead
GUI: Mark functions that are not used outside their files as static.
diego
parents:
30063
diff
changeset
|
221 static char * gfgets( char * str, int size, FILE * f ) |
23077 | 222 { |
223 char * s = fgets( str,size,f ); | |
224 char c; | |
225 if ( s ) | |
226 { | |
227 c=s[ strlen( s ) - 1 ]; if ( c == '\n' || c == '\r' ) s[ strlen( s ) - 1 ]=0; | |
228 c=s[ strlen( s ) - 1 ]; if ( c == '\n' || c == '\r' ) s[ strlen( s ) - 1 ]=0; | |
229 } | |
230 return s; | |
231 } | |
232 | |
233 int cfg_read( void ) | |
234 { | |
235 char * cfg = get_path( "gui.conf" ); | |
236 FILE * f; | |
237 | |
238 // -- read configuration | |
239 mp_msg( MSGT_GPLAYER,MSGL_V,"[cfg] reading config file: %s\n",cfg ); | |
240 gui_conf=m_config_new(); | |
241 m_config_register_options( gui_conf,gui_opts ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
242 if ( !disable_gui_conf && m_config_parse_config_file( gui_conf,cfg ) < 0 ) |
23077 | 243 { |
244 mp_msg( MSGT_GPLAYER,MSGL_FATAL,MSGTR_ConfigFileError ); | |
245 // exit( 1 ); | |
246 } | |
247 free( cfg ); | |
248 | |
249 // -- read pl | |
250 cfg=get_path( "gui.pl" ); | |
251 if ( (f=fopen( cfg,"rt" )) ) | |
252 { | |
253 while ( !feof( f ) ) | |
254 { | |
255 char tmp[512]; plItem * item; | |
256 if ( gfgets( tmp,512,f ) == NULL ) continue; | |
257 item=calloc( 1,sizeof( plItem ) ); | |
258 item->path=strdup( tmp ); | |
259 gfgets( tmp,512,f ); | |
260 item->name=strdup( tmp ); | |
261 gtkSet( gtkAddPlItem,0,(void*)item ); | |
262 } | |
263 fclose( f ); | |
264 } | |
265 free( cfg ); | |
266 | |
267 //-- read previously visited urls | |
268 cfg=get_path( "gui.url" ); | |
269 if ( (f=fopen( cfg,"rt" )) ) | |
270 { | |
271 while ( !feof( f ) ) | |
272 { | |
273 char tmp[512]; URLItem * item; | |
274 if ( gfgets( tmp,512,f ) == NULL ) continue; | |
275 item=calloc( 1,sizeof( URLItem ) ); | |
276 item->url=strdup( tmp ); | |
277 gtkSet( gtkAddURLItem,0,(void*)item ); | |
278 } | |
279 fclose( f ); | |
280 } | |
281 free( cfg ); | |
282 | |
283 // -- reade file loader history | |
284 cfg=get_path( "gui.history" ); | |
285 if ( (f=fopen( cfg,"rt+" )) ) | |
286 { | |
287 int i = 0; | |
288 while ( !feof( f ) ) | |
289 { | |
290 char tmp[512]; | |
291 if ( gfgets( tmp,512,f ) == NULL ) continue; | |
292 fsHistory[i++]=gstrdup( tmp ); | |
293 } | |
294 fclose( f ); | |
295 } | |
296 free( cfg ); | |
297 | |
298 return 0; | |
299 } | |
300 | |
301 int cfg_write( void ) | |
302 { | |
303 char * cfg = get_path( "gui.conf" ); | |
304 FILE * f; | |
305 int i; | |
306 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
307 // -- save configuration |
23077 | 308 if ( (f=fopen( cfg,"wt+" )) ) |
309 { | |
310 for ( i=0;gui_opts[i].name;i++ ) | |
311 { | |
312 char* v = m_option_print(&gui_opts[i],gui_opts[i].p); | |
25711
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
313 if(v == (char *)-1) { |
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
314 mp_msg(MSGT_GPLAYER,MSGL_WARN,MSGTR_UnableToSaveOption, gui_opts[i].name); |
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
315 v = NULL; |
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
316 } |
23077 | 317 if(v) { |
318 fprintf( f,"%s = \"%s\"\n",gui_opts[i].name, v); | |
319 free(v); | |
25711
25b40c769b06
Fix 100l: error check for m_option_print was unreachable
reimar
parents:
25710
diff
changeset
|
320 } |
23077 | 321 } |
322 fclose( f ); | |
323 } | |
324 free( cfg ); | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
325 |
23077 | 326 // -- save playlist |
327 cfg=get_path( "gui.pl" ); | |
328 if ( (f=fopen( cfg,"wt+" )) ) | |
329 { | |
330 plCurrent=plList; | |
331 while ( plCurrent ) | |
332 { | |
333 if ( plCurrent->path && plCurrent->name ) | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
334 { |
23077 | 335 fprintf( f,"%s\n",plCurrent->path ); |
336 fprintf( f,"%s\n",plCurrent->name ); | |
337 } | |
338 plCurrent=plCurrent->next; | |
339 } | |
340 fclose( f ); | |
341 } | |
342 free( cfg ); | |
343 | |
344 // -- save URL's | |
345 cfg=get_path( "gui.url" ); | |
346 if ( (f=fopen( cfg,"wt+" )) ) | |
347 { | |
348 while ( URLList ) | |
349 { | |
350 if ( URLList->url ) fprintf( f,"%s\n",URLList->url ); | |
351 URLList=URLList->next; | |
352 } | |
353 fclose( f ); | |
354 } | |
355 free( cfg ); | |
356 | |
357 // -- save file loader history | |
358 cfg=get_path( "gui.history" ); | |
359 if ( (f=fopen( cfg,"wt+" )) ) | |
360 { | |
361 int i = 0; | |
362 // while ( fsHistory[i] != NULL ) | |
363 for ( i=0;i < 5; i++) | |
364 if( fsHistory[i] ) fprintf( f,"%s\n",fsHistory[i] ); | |
365 fclose( f ); | |
366 } | |
367 free( cfg ); | |
368 | |
369 return 0; | |
370 } |