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

« back to all changes in this revision

Viewing changes to src/plugins/mac/source_adapter.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2008-05-29 10:14:25 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080529101425-ycw1nbd980uhvzfp
Tags: 0.4DrKosmos-4ubuntu1
* Merge from debian unstable (LP: #178477), remaining changes:
  - debian/control: Update Maintainer field
  - debian/control: add lpia to xmms2-plugin-alsa supported architectures
* This version reads AAC files (LP: #156359)

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
int
83
83
CSourceAdapter::GetSize ()
84
84
{
85
 
        return xmms_xform_metadata_get_int (xform,
86
 
                                            XMMS_MEDIALIB_ENTRY_PROPERTY_SIZE);
 
85
        const gchar *metakey;
 
86
        gint32 size = -1;
 
87
 
 
88
        metakey = XMMS_MEDIALIB_ENTRY_PROPERTY_SIZE;
 
89
        xmms_xform_metadata_get_int (xform, metakey, &size);
 
90
 
 
91
        return size;
87
92
}