mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
id3v2frames: Fix compiler warnings
id3v2frames.c:951:20: error: unused variable 'utf16enc' [-Werror,-Wunused-const-variable] static const gchar utf16enc[] = "UTF-16"; ^ id3v2frames.c:952:20: error: unused variable 'utf16leenc' [-Werror,-Wunused-const-variable] static const gchar utf16leenc[] = "UTF-16LE"; ^ id3v2frames.c:953:20: error: unused variable 'utf16beenc' [-Werror,-Wunused-const-variable] static const gchar utf16beenc[] = "UTF-16BE"; ^
This commit is contained in:
parent
b7fd8ffb76
commit
8803ea2d8b
1 changed files with 0 additions and 4 deletions
|
@ -948,10 +948,6 @@ id3v2_genre_fields_to_taglist (ID3TagsWorking * work, const gchar * tag_name,
|
|||
return result;
|
||||
}
|
||||
|
||||
static const gchar utf16enc[] = "UTF-16";
|
||||
static const gchar utf16leenc[] = "UTF-16LE";
|
||||
static const gchar utf16beenc[] = "UTF-16BE";
|
||||
|
||||
static gboolean
|
||||
find_utf16_bom (gchar * data, gint * p_data_endianness)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue