comparison audacious/main.c @ 2108:02f39b64f36b trunk

[svn] - add support for new extension probing system
author nenolod
date Tue, 12 Dec 2006 18:32:05 -0800
parents f18a5b617c34
children d1e4f54fb9f5
comparison
equal deleted inserted replaced
2107:8d2b17ee266e 2108:02f39b64f36b
203 NULL, /* default session uri base (non-NULL = custom session uri base) */ 203 NULL, /* default session uri base (non-NULL = custom session uri base) */
204 150, /* short side length of the picture in the filepopup */ 204 150, /* short side length of the picture in the filepopup */
205 20, /* delay until the filepopup comes up */ 205 20, /* delay until the filepopup comes up */
206 FALSE, /* use filename.jpg for coverart */ 206 FALSE, /* use filename.jpg for coverart */
207 FALSE, /* use XMMS-style file selection */ 207 FALSE, /* use XMMS-style file selection */
208 FALSE, /* use extension probing */
208 }; 209 };
209 210
210 typedef struct bmp_cfg_boolent_t { 211 typedef struct bmp_cfg_boolent_t {
211 char const *be_vname; 212 char const *be_vname;
212 gboolean *be_vloc; 213 gboolean *be_vloc;
303 {"playlist_detect", &cfg.playlist_detect, TRUE}, 304 {"playlist_detect", &cfg.playlist_detect, TRUE},
304 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE}, 305 {"show_filepopup_for_tuple", &cfg.show_filepopup_for_tuple, TRUE},
305 {"recurse_for_cover", &cfg.recurse_for_cover, TRUE}, 306 {"recurse_for_cover", &cfg.recurse_for_cover, TRUE},
306 {"use_file_cover", &cfg.use_file_cover, TRUE}, 307 {"use_file_cover", &cfg.use_file_cover, TRUE},
307 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE}, 308 {"use_xmms_style_fileselector", &cfg.use_xmms_style_fileselector, TRUE},
309 {"use_extension_probing", &cfg.use_extension_probing, TRUE},
308 }; 310 };
309 311
310 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents); 312 static gint ncfgbent = G_N_ELEMENTS(bmp_boolents);
311 313
312 static bmp_cfg_nument bmp_numents[] = { 314 static bmp_cfg_nument bmp_numents[] = {