search for: convert_char_set

Displaying 2 results from an estimated 2 matches for "convert_char_set".

2005 Apr 01
1
bug in xmms plugin v 1.1.2
..._cfg.stream.proxy_user); + flac_cfg.stream.proxy_pass = g_strdup(flac_cfg.stream.proxy_pass); + flac_cfg.stream.save_http_path = g_strdup(flac_cfg.stream.save_http_path); + flac_cfg.title.tag_override = FALSE; g_free(flac_cfg.title.tag_format); flac_cfg.title.convert_char_set = FALSE;
2004 Sep 10
2
xmms plugin, fileinfo
...) +{ } -static gint genre_comp_func(gconstpointer a, gconstpointer b) +static void show_tag() { - return strcasecmp(a, b); + FLAC_Plugin__CanonicalTag tag; + + FLAC_plugin__canonical_tag_init(&tag); + FLAC_plugin__canonical_tag_get_combined(current_filename, &tag); + + if(flac_cfg.title.convert_char_set) { + convert_from_file_to_user_in_place(&tag.title); + convert_from_file_to_user_in_place(&tag.composer); + convert_from_file_to_user_in_place(&tag.performer); + convert_from_file_to_user_in_place(&tag.album); + convert_from_file_to_user_in_place(&tag.year_recorded); + con...