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