[gstreamer-bugs] [Bug 623003] Major problems with calls to gst_util_uint64_scale()
GStreamer (bugzilla.gnome.org)
bugzilla at gnome.org
Sun Jun 27 23:23:38 PDT 2010
https://bugzilla.gnome.org/show_bug.cgi?id=623003
GStreamer | gst-plugins-base | git
--- Comment #3 from Sebastian Dröge <slomo at circular-chaos.org> 2010-06-28 06:23:34 UTC ---
Or building with disabled cast checks and -O0...
FYI the cast check macro only changes this in gtype.h:
#ifndef G_DISABLE_CAST_CHECKS
# define _G_TYPE_CIC(ip, gt, ct) \
((ct*) g_type_check_instance_cast ((GTypeInstance*) ip, gt))
# define _G_TYPE_CCC(cp, gt, ct) \
((ct*) g_type_check_class_cast ((GTypeClass*) cp, gt))
#else /* G_DISABLE_CAST_CHECKS */
# define _G_TYPE_CIC(ip, gt, ct) ((ct*) ip)
# define _G_TYPE_CCC(cp, gt, ct) ((ct*) cp)
#endif /* G_DISABLE_CAST_CHECKS */
Compiler error?
--
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the Gstreamer-bugs
mailing list