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 679524 - Incorrect definition for gst_buffer_replace_all_memory
Incorrect definition for gst_buffer_replace_all_memory
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
0.11.x
Other Linux
: Normal normal
: 0.11.x
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2012-07-06 16:47 UTC by Tony Houghton
Modified: 2012-10-06 11:37 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Tony Houghton 2012-07-06 16:47:28 UTC
It's currently defined as:

#define     gst_buffer_replace_all_memory(b,m) \
            gst_buffer_replace_memory ((b), 0, -1, (m))

which causes compilation errors (gst_buffer_replace_memory only takes 3 args). I think it should be:

#define     gst_buffer_replace_all_memory(b,m) \
            gst_buffer_replace_memory_range ((b), 0, -1, (m))
Comment 1 Tony Houghton 2012-07-06 17:03:44 UTC
I got the version wrong, it's actually in 0.11.92, not git HEAD, where it looks like it's been fixed. Apologies for the noise.