comparison gui/app/cfg-old.c @ 35871:8f49b68dd955

Add a function converting into locale encoding. This is for compatibility reasons, because the content of the history file will change from UTF-8 encoded filenames to filenames in their original byte sequence. (The cfg-old.c file is meant to save the user the effort of manually changing any settings or options that have become obsolete. The file will be subject to removal some day. It will be included where necessary.)
author ib
date Fri, 15 Mar 2013 03:42:57 +0000
parents
children 93ab56bda68a
comparison
equal deleted inserted replaced
35870:26ad65a4e47d 35871:8f49b68dd955
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 */
18
19 /**
20 * @file
21 * @brief Translation of old settings or old configure options
22 */
23
24 /**
25 * @brief Convert a filename which is either in UTF-8
26 * or in an encoding specified in G_FILENAME_ENCODING.
27 *
28 * @param fname filename
29 *
30 * @return converted filename
31 */
32 static const gchar *cfg_old_filename_from_utf8(const gchar *fname)
33 {
34 static gchar *name;
35
36 if (g_utf8_validate(fname, -1, NULL)) {
37 free(name);
38 name = g_filename_from_utf8(fname, -1, NULL, NULL, NULL);
39
40 return name;
41 }
42
43 return fname;
44 }