After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 674244 - Fix voaacenc compile-time warning/error
Fix voaacenc compile-time warning/error
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
git master
Other All
: Normal normal
: 0.11.x
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2012-04-17 09:56 UTC by LRN
Modified: 2012-04-20 11:41 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix format (type is explicitly unsigned long) (938 bytes, patch)
2012-04-17 09:57 UTC, LRN
none Details | Review

Description LRN 2012-04-17 09:56:54 UTC
The line
GST_LOG_OBJECT (voaacenc, "encoded to %" G_GSIZE_FORMAT " bytes",
       output.Length);
causes gcc to emit a warning. The type of output.Length does not match G_GSIZE_FORMAT
Comment 1 LRN 2012-04-17 09:57:47 UTC
Created attachment 212191 [details] [review]
Fix format (type is explicitly unsigned long)

The VO-AAC internally-defined type is defined as unsigned long, glib doesn't have a format for that type.
Comment 2 Wim Taymans 2012-04-20 11:41:45 UTC
commit 06b62e00ae075d07f6a0f669e2db63d2e6362e61
Author: Руслан Ижбулатов <lrn1986@gmail.com>
Date:   Tue Apr 17 11:44:00 2012 +0400

    Fix format (type is explicitly unsigned long)
    
    Fixes #674244