The current code is memsetting the GstVideoFrame.data address to 0s (which
causes a segfault). This member is actually an array of data buffers (one for
each plane). This fix iterates over each data plane to clear them all.
https://bugzilla.gnome.org/show_bug.cgi?id=695655
gst_video_frame_copy (&outframe, &scope->tempframe);
} else {
/* gst_video_frame_clear() or is output frame already cleared */
- memset (outframe.data, 0, scope->vinfo.size);
+ gint i;
+
+ for (i = 0; i < scope->vinfo.finfo->n_planes; i++) {
+ memset (outframe.data[i], 0, outframe.map[i].size);
+ }
}
gst_buffer_replace_all_memory (inbuf,