Mercurial > mplayer.hg
annotate gui/cfg.c @ 34488:01c19d9b1e83
Print an error when streams behave in a way that the cache cannot handle.
author | reimar |
---|---|
date | Sun, 15 Jan 2012 12:38:38 +0000 |
parents | 5a45efc630b8 |
children | abcf26dcec6b |
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 | |
33179 | 23 #include "cfg.h" |
24 #include "interface.h" | |
33742
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33737
diff
changeset
|
25 #include "util/list.h" |
33737 | 26 #include "util/string.h" |
33179 | 27 |
23077 | 28 #include "config.h" |
29 #include "help_mp.h" | |
30653
3d23e24c5c60
Declare externally used variables from vd.c as extern in vd.h.
diego
parents:
30633
diff
changeset
|
30 #include "libmpcodecs/vd.h" |
23077 | 31 #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
|
32 #include "libvo/x11_common.h" |
33179 | 33 #include "mixer.h" |
33768 | 34 #include "mp_core.h" |
33179 | 35 #include "mp_msg.h" |
36 #include "mpcommon.h" | |
37 #include "mplayer.h" | |
38 #include "parser-cfg.h" | |
39 #include "path.h" | |
32981 | 40 #include "sub/font_load.h" |
33179 | 41 #include "sub/sub.h" |
23077 | 42 |
33265 | 43 m_config_t *gui_conf; |
44 | |
33220 | 45 int gtkCacheOn; |
33180 | 46 int gtkCacheSize = 2048; |
47 | |
33220 | 48 int gtkVfPP; |
23077 | 49 |
33249 | 50 int gtkVfLAVC; |
33180 | 51 char *gtkDXR3Device; |
52 | |
33220 | 53 int gtkAutoSyncOn; |
54 int gtkAutoSync; | |
23077 | 55 |
33220 | 56 int gtkAONorm; |
57 int gtkAOSurround; | |
58 int gtkAOExtraStereo; | |
33221 | 59 float gtkAOExtraStereoMul = 1.0f; |
33180 | 60 |
33179 | 61 char *gtkAOALSAMixer; |
62 char *gtkAOALSAMixerChannel; | |
63 char *gtkAOALSADevice; | |
33180 | 64 |
65 char *gtkAOOSSMixer; | |
66 char *gtkAOOSSMixerChannel; | |
67 char *gtkAOOSSDevice; | |
68 | |
33179 | 69 char *gtkAOESDDevice; |
23077 | 70 |
33180 | 71 char *gtkAOSDLDriver; |
23077 | 72 |
33220 | 73 int gtkEnableAudioEqualizer; |
33747 | 74 float gtkEquChannels[6][10]; |
23077 | 75 |
33220 | 76 int gtkSubDumpMPSub; |
77 int gtkSubDumpSrt; | |
23077 | 78 |
33180 | 79 gtkASS_t gtkASS; |
80 | |
33220 | 81 int gtkEnablePlayBar = 1; |
82 int gtkLoadFullscreen; | |
33179 | 83 int gtkShowVideoWindow = 1; |
23077 | 84 |
33179 | 85 int gui_save_pos = 1; |
33218
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33180
diff
changeset
|
86 int gui_main_pos_x = -3; |
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33180
diff
changeset
|
87 int gui_main_pos_y = -3; |
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33180
diff
changeset
|
88 int gui_sub_pos_x = -3; |
f0c2a62e3e89
Position windows initially at coordinates given in skin file.
ib
parents:
33180
diff
changeset
|
89 int gui_sub_pos_y = -3; |
23077 | 90 |
33747 | 91 int guiWinID = -1; |
92 | |
93 char *skinName; | |
94 | |
33751
c28c967e40e9
Replace numeric constant fsPersistant_MaxPos for fsHistory array size.
ib
parents:
33750
diff
changeset
|
95 char *fsHistory[5]; |
33750
8b5898908212
Remove variable holding history of selected files from interface.[ch].
ib
parents:
33748
diff
changeset
|
96 |
33179 | 97 static const m_option_t gui_opts[] = { |
33478 | 98 { "cache", >kCacheOn, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
99 { "cache_size", >kCacheSize, CONF_TYPE_INT, CONF_RANGE, 32, 1048576, NULL }, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
100 |
33478 | 101 { "vf_pp", >kVfPP, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 102 |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
103 #ifdef CONFIG_DXR3 |
33478 | 104 { "vf_lavc", >kVfLAVC, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
105 { "vo_dxr3_device", >kDXR3Device, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
23077 | 106 #endif |
107 | |
33478 | 108 { "autosync", >kAutoSyncOn, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
109 { "autosync_size", >kAutoSync, CONF_TYPE_INT, CONF_RANGE, 0, 10000, NULL }, | |
23077 | 110 |
33478 | 111 { "ao_volnorm", >kAONorm, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
112 { "ao_surround", >kAOSurround, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
113 { "ao_extra_stereo", >kAOExtraStereo, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
114 { "ao_extra_stereo_coefficient", >kAOExtraStereoMul, CONF_TYPE_FLOAT, CONF_RANGE, -10.0, 10.0, NULL }, | |
33223 | 115 |
27390
9d95dc936e66
Introduce CONFIG_ALSA preprocessor directive for ALSA 0.9 and 1.x.
diego
parents:
27387
diff
changeset
|
116 #ifdef CONFIG_ALSA |
33478 | 117 { "ao_alsa_mixer", >kAOALSAMixer, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
118 { "ao_alsa_mixer_channel", >kAOALSAMixerChannel, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
119 { "ao_alsa_device", >kAOALSADevice, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
23077 | 120 #endif |
33223 | 121 |
122 #ifdef CONFIG_OSS_AUDIO | |
33478 | 123 { "ao_oss_mixer", >kAOOSSMixer, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
124 { "ao_oss_mixer_channel", >kAOOSSMixerChannel, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
125 { "ao_oss_device", >kAOOSSDevice, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
23077 | 126 #endif |
33223 | 127 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
26458
diff
changeset
|
128 #ifdef CONFIG_ESD |
33478 | 129 { "ao_esd_device", >kAOESDDevice, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
23077 | 130 #endif |
131 | |
33223 | 132 #ifdef CONFIG_SDL |
33478 | 133 { "ao_sdl_subdriver", >kAOSDLDriver, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
23077 | 134 #endif |
135 | |
33478 | 136 { "enable_audio_equ", >kEnableAudioEqualizer, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
23077 | 137 |
33478 | 138 { "equ_channel_1", >kEquChannel1, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
139 { "equ_channel_2", >kEquChannel2, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
140 { "equ_channel_3", >kEquChannel3, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
141 { "equ_channel_4", >kEquChannel4, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
142 { "equ_channel_5", >kEquChannel5, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
143 { "equ_channel_6", >kEquChannel6, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
144 |
33223 | 145 #define audio_equ_row(i, j) \ |
33478 | 146 { "equ_band_" # i # j, >kEquChannels[i][j], CONF_TYPE_FLOAT, CONF_RANGE, -15.0, 15.0, NULL } |
33289 | 147 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), |
148 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), | |
149 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), | |
150 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), | |
151 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), | |
152 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), | |
23077 | 153 #undef audio_equ_row |
154 | |
33478 | 155 { "playbar", >kEnablePlayBar, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
156 { "load_fullscreen", >kLoadFullscreen, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
157 { "show_videowin", >kShowVideoWindow, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
33223 | 158 |
33478 | 159 { "gui_save_pos", &gui_save_pos, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
160 { "gui_main_pos_x", &gui_main_pos_x, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
161 { "gui_main_pos_y", &gui_main_pos_y, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
162 { "gui_video_out_pos_x", &gui_sub_pos_x, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
163 { "gui_video_out_pos_y", &gui_sub_pos_y, CONF_TYPE_INT, 0, 0, 0, NULL }, | |
33223 | 164 |
33477 | 165 { "idle", &player_idle_mode, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL }, |
166 | |
33223 | 167 // NOTE TO MYSELF: Do we really need all/any non-gtkOptions, i.e. override mplayer options? |
168 | |
33478 | 169 { "gui_skin", &skinName, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
33223 | 170 |
33478 | 171 { "stopxscreensaver", &stop_xscreensaver, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 172 |
33478 | 173 { "cdrom_device", &cdrom_device, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
174 { "dvd_device", &dvd_device, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
33223 | 175 |
33478 | 176 { "osd_level", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL }, |
33223 | 177 |
33478 | 178 { "vo_driver", &video_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, |
179 { "v_vfm", &video_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, | |
33223 | 180 |
33478 | 181 { "vf_autoq", &auto_quality, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL }, |
182 { "vo_direct_render", &vo_directrendering, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
183 { "vo_doublebuffering", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
184 { "vo_panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL }, | |
33223 | 185 |
33478 | 186 { "v_flip", &flip, CONF_TYPE_INT, CONF_RANGE, -1, 1, NULL }, |
187 { "v_framedrop", &frame_dropping, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL }, | |
188 { "v_idx", &index_mode, CONF_TYPE_INT, CONF_RANGE, -1, 2, NULL }, | |
189 { "v_ni", &force_ni, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
33223 | 190 |
33478 | 191 { "ao_driver", &audio_driver_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, |
192 { "a_afm", &audio_fm_list, CONF_TYPE_STRING_LIST, 0, 0, 0, NULL }, | |
33223 | 193 |
33478 | 194 { "softvol", &soft_vol, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 195 |
33478 | 196 { "sub_auto_load", &sub_auto, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
33223 | 197 #ifdef CONFIG_ICONV |
33478 | 198 { "sub_cp", &sub_cp, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
33223 | 199 #endif |
33478 | 200 { "sub_overlap", &suboverlap_enabled, CONF_TYPE_FLAG, 0, 0, 0, NULL }, |
201 { "sub_pos", &sub_pos, CONF_TYPE_INT, CONF_RANGE, 0, 200, NULL }, | |
202 { "sub_unicode", &sub_unicode, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
33223 | 203 |
33478 | 204 { "font_factor", &font_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 10.0, NULL }, |
205 { "font_name", &font_name, CONF_TYPE_STRING, 0, 0, 0, NULL }, | |
33223 | 206 |
207 #ifdef CONFIG_FREETYPE | |
33478 | 208 { "font_encoding", &subtitle_font_encoding, CONF_TYPE_STRING, 0, 0, 0, NULL }, |
209 { "font_text_scale", &text_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 100.0, NULL }, | |
210 { "font_osd_scale", &osd_font_scale_factor, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 100.0, NULL }, | |
211 { "font_blur", &subtitle_font_radius, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 8.0, NULL }, | |
212 { "font_outline", &subtitle_font_thickness, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 8.0, NULL }, | |
213 { "font_autoscale", &subtitle_autoscale, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL }, | |
33223 | 214 #endif |
215 | |
216 #ifdef CONFIG_ASS | |
33478 | 217 { "ass_enabled", &ass_enabled, CONF_TYPE_FLAG, 0, 0, 1, NULL }, |
218 { "ass_use_margins", &ass_use_margins, CONF_TYPE_FLAG, 0, 0, 1, NULL }, | |
219 { "ass_top_margin", &ass_top_margin, CONF_TYPE_INT, CONF_RANGE, 0, 512, NULL }, | |
220 { "ass_bottom_margin", &ass_bottom_margin, CONF_TYPE_INT, CONF_RANGE, 0, 512, NULL }, | |
33223 | 221 #endif |
222 | |
33478 | 223 { NULL, NULL, 0, 0, 0, 0, NULL } |
23077 | 224 }; |
225 | |
33179 | 226 static char *gfgets(char *str, int size, FILE *f) |
23077 | 227 { |
33179 | 228 char *s, c; |
229 | |
230 s = fgets(str, size, f); | |
231 | |
232 if (s) { | |
233 c = s[strlen(s) - 1]; | |
234 | |
235 if (c == '\n' || c == '\r') | |
236 s[strlen(s) - 1] = 0; | |
237 | |
238 c = s[strlen(s) - 1]; | |
239 | |
240 if (c == '\n' || c == '\r') | |
241 s[strlen(s) - 1] = 0; | |
242 } | |
243 | |
244 return s; | |
23077 | 245 } |
246 | |
33565
9c4163ef54e4
Add const to string pointer argument that will not be modified.
reimar
parents:
33555
diff
changeset
|
247 int cfg_gui_include(m_option_t *conf, const char *filename) |
33470 | 248 { |
249 (void)conf; | |
250 | |
34172 | 251 return m_config_parse_config_file(gui_conf, filename, 0); |
33470 | 252 } |
253 | |
33179 | 254 int cfg_read(void) |
23077 | 255 { |
33179 | 256 char *cfg; |
257 FILE *f; | |
258 | |
33476 | 259 player_idle_mode = 1; // GUI is in idle mode by default |
260 | |
33179 | 261 // configuration |
262 | |
263 cfg = get_path("gui.conf"); | |
264 | |
33985 | 265 mp_msg(MSGT_GPLAYER, MSGL_DBG2, "[cfg] file: %s\n", cfg); |
33179 | 266 |
267 gui_conf = m_config_new(); | |
33480 | 268 |
269 if (!gui_conf) { | |
270 gmp_msg(MSGT_GPLAYER, MSGL_FATAL, MSGTR_MemAllocFailed); | |
33768 | 271 mplayer(MPLAYER_EXIT_GUI, EXIT_ERROR, 0); |
33480 | 272 } |
273 | |
33179 | 274 m_config_register_options(gui_conf, gui_opts); |
275 | |
34172 | 276 if (!disable_gui_conf && (m_config_parse_config_file(gui_conf, cfg, 1) < 0)) { |
33530 | 277 gmp_msg(MSGT_GPLAYER, MSGL_ERR, MSGTR_ConfigFileError); |
33768 | 278 // mplayer(MPLAYER_EXIT_GUI, 1, 0); |
33179 | 279 } |
280 | |
281 free(cfg); | |
23077 | 282 |
33179 | 283 // playlist |
284 | |
285 cfg = get_path("gui.pl"); | |
286 f = fopen(cfg, "rt"); | |
287 | |
288 if (f) { | |
289 while (!feof(f)) { | |
290 char tmp[512]; | |
291 plItem *item; | |
23077 | 292 |
33179 | 293 if (gfgets(tmp, 512, f) == NULL) |
294 continue; | |
295 | |
296 item = calloc(1, sizeof(plItem)); | |
297 item->path = strdup(tmp); | |
298 gfgets(tmp, 512, f); | |
299 item->name = strdup(tmp); | |
33742
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33737
diff
changeset
|
300 listSet(gtkAddPlItem, item); |
33179 | 301 } |
302 | |
303 fclose(f); | |
23077 | 304 } |
33179 | 305 |
306 free(cfg); | |
307 | |
308 // URL list | |
309 | |
310 cfg = get_path("gui.url"); | |
311 f = fopen(cfg, "rt"); | |
23077 | 312 |
33179 | 313 if (f) { |
314 while (!feof(f)) { | |
315 char tmp[512]; | |
33555 | 316 urlItem *item; |
33179 | 317 |
318 if (gfgets(tmp, 512, f) == NULL) | |
319 continue; | |
320 | |
33555 | 321 item = calloc(1, sizeof(urlItem)); |
33179 | 322 item->url = strdup(tmp); |
33742
e1539e14d60f
Move purely list related parts of gtkSet() from interface.c to list.c.
ib
parents:
33737
diff
changeset
|
323 listSet(gtkAddURLItem, item); |
33179 | 324 } |
325 | |
326 fclose(f); | |
23077 | 327 } |
33179 | 328 |
329 free(cfg); | |
330 | |
331 // directory history | |
332 | |
333 cfg = get_path("gui.history"); | |
334 f = fopen(cfg, "rt+"); | |
335 | |
336 if (f) { | |
337 int i = 0; | |
23077 | 338 |
33179 | 339 while (!feof(f)) { |
340 char tmp[512]; | |
341 | |
342 if (gfgets(tmp, 512, f) == NULL) | |
343 continue; | |
344 | |
345 fsHistory[i++] = gstrdup(tmp); | |
346 } | |
347 | |
348 fclose(f); | |
23077 | 349 } |
350 | |
33179 | 351 free(cfg); |
352 | |
353 return 0; | |
23077 | 354 } |
355 | |
33179 | 356 int cfg_write(void) |
23077 | 357 { |
33179 | 358 char *cfg; |
359 FILE *f; | |
360 int i; | |
361 | |
362 // configuration | |
363 | |
364 cfg = get_path("gui.conf"); | |
365 f = fopen(cfg, "wt+"); | |
366 | |
367 if (f) { | |
368 for (i = 0; gui_opts[i].name; i++) { | |
369 char *v = m_option_print(&gui_opts[i], gui_opts[i].p); | |
370 | |
371 if (v == (char *)-1) { | |
372 mp_msg(MSGT_GPLAYER, MSGL_WARN, MSGTR_UnableToSaveOption, gui_opts[i].name); | |
373 v = NULL; | |
374 } | |
23077 | 375 |
33179 | 376 if (v) { |
377 fprintf(f, "%s = \"%s\"\n", gui_opts[i].name, v); | |
378 free(v); | |
379 } | |
380 } | |
381 | |
382 fclose(f); | |
23077 | 383 } |
33179 | 384 |
385 free(cfg); | |
386 | |
387 // playlist | |
388 | |
389 cfg = get_path("gui.pl"); | |
390 f = fopen(cfg, "wt+"); | |
391 | |
392 if (f) { | |
393 plCurrent = plList; | |
394 | |
395 while (plCurrent) { | |
396 if (plCurrent->path && plCurrent->name) { | |
397 fprintf(f, "%s\n", plCurrent->path); | |
398 fprintf(f, "%s\n", plCurrent->name); | |
399 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
28051
diff
changeset
|
400 |
33179 | 401 plCurrent = plCurrent->next; |
402 } | |
403 | |
404 fclose(f); | |
23077 | 405 } |
33179 | 406 |
407 free(cfg); | |
408 | |
409 // URL list | |
410 | |
411 cfg = get_path("gui.url"); | |
412 f = fopen(cfg, "wt+"); | |
413 | |
414 if (f) { | |
33748 | 415 while (urlList) { |
416 if (urlList->url) | |
417 fprintf(f, "%s\n", urlList->url); | |
33179 | 418 |
33748 | 419 urlList = urlList->next; |
33179 | 420 } |
23077 | 421 |
33179 | 422 fclose(f); |
23077 | 423 } |
33179 | 424 |
425 free(cfg); | |
426 | |
427 // directory history | |
428 | |
429 cfg = get_path("gui.history"); | |
430 f = fopen(cfg, "wt+"); | |
431 | |
432 if (f) { | |
433 int i = 0; | |
23077 | 434 |
33179 | 435 // while (fsHistory[i] != NULL) |
436 for (i = 0; i < 5; i++) | |
437 if (fsHistory[i]) | |
438 fprintf(f, "%s\n", fsHistory[i]); | |
23077 | 439 |
33179 | 440 fclose(f); |
441 } | |
442 | |
443 free(cfg); | |
444 | |
445 return 0; | |
23077 | 446 } |