GNOME Bugzilla – Bug 674244
Fix voaacenc compile-time warning/error
Last modified: 2012-04-20 11:41:45 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
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.
commit 06b62e00ae075d07f6a0f669e2db63d2e6362e61 Author: Руслан Ижбулатов <lrn1986@gmail.com> Date: Tue Apr 17 11:44:00 2012 +0400 Fix format (type is explicitly unsigned long) Fixes #674244