~ubuntu-branches/ubuntu/wily/xmms2/wily

« back to all changes in this revision

Viewing changes to src/plugins/icymetaint/icymetaint.c

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2008-07-04 16:23:34 UTC
  • mfrom: (1.1.5 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080704162334-b3esbkcapt8wbrk4
Tags: 0.5DrLecter-2ubuntu1
* Merge from debian unstable (LP: #241098), remaining changes:
  + debian/control:
    + Update Maintainer field
    + add lpia to xmms2-plugin-alsa supported architectures
    + Added liba52-0.7.4-dev to build depends
  + debian/rules: Added patch, patch-stamp and unpatch
  + changed 01_gcc4.3.patch:
    + src/include/xmmsclient/xmmsclient++/helpers.h: Added #include <climits>
* New upstream relase fixes LP: #212566, #222341

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*  XMMS2 - X Music Multiplexer System
2
 
 *  Copyright (C) 2003-2007 XMMS2 Team
 
2
 *  Copyright (C) 2003-2008 XMMS2 Team
3
3
 *
4
4
 *  PLUGINS ARE NOT CONSIDERED TO BE DERIVED WORK !!!
5
5
 *
93
93
 
94
94
        g_return_val_if_fail (xform, FALSE);
95
95
 
96
 
        res = xmms_xform_privdata_get_int (xform, "meta_offset", &meta_offset);
 
96
        res = xmms_xform_auxdata_get_int (xform, "meta_offset", &meta_offset);
97
97
        g_return_val_if_fail (res, FALSE);
98
98
 
99
99
        XMMS_DBG ("meta_offset = %d", meta_offset);
240
240
 
241
241
        tags = g_strsplit (metadata, ";", 0);
242
242
        while (tags[i] != NULL) {
243
 
                if (g_strncasecmp (tags[i], "StreamTitle=", 12) == 0) {
 
243
                if (g_ascii_strncasecmp (tags[i], "StreamTitle=", 12) == 0) {
244
244
                        const gchar *metakey;
245
245
                        gchar *raw;
246
246