view gui/app/cfg-old.c @ 35872:93ab56bda68a

Utilize new cfg_old_filename_from_utf8() in playlist code. Use it instead of g_filename_from_utf8(), because the content of the history file will change from UTF-8 encoded filenames to filenames in their original byte sequence.
author ib
date Fri, 15 Mar 2013 03:46:53 +0000
parents 8f49b68dd955
children bd3e9d8df038
line wrap: on
line source

/*
 * This file is part of MPlayer.
 *
 * MPlayer is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * MPlayer is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

/**
 * @file
 * @brief Translation of old settings or old configure options
 */

/**
 * @brief Convert a filename which is either in UTF-8
 *        or in an encoding specified in G_FILENAME_ENCODING.
 *
 * @param fname filename
 *
 * @return converted filename
 */
static const gchar *cfg_old_filename_from_utf8(const gchar *fname)
{
#ifdef CFG_OLD_PLAYLIST
    static gchar *name;

    if (g_utf8_validate(fname, -1, NULL)) {
        free(name);
        name = g_filename_from_utf8(fname, -1, NULL, NULL, NULL);

        return name;
    }
#endif
    return fname;
}

#undef CFG_OLD_PLAYLIST