GNOME Bugzilla – Bug 679524
Incorrect definition for gst_buffer_replace_all_memory
Last modified: 2012-10-06 11:37:23 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))
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.