audiovisualizer: fix improper video frame clear operation
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
This commit is contained in:
parent
4eb960d6c3
commit
c66fd54e78
@ -964,7 +964,11 @@ gst_audio_visualizer_chain (GstPad * pad, GstObject * parent,
|
|||||||
gst_video_frame_copy (&outframe, &scope->tempframe);
|
gst_video_frame_copy (&outframe, &scope->tempframe);
|
||||||
} else {
|
} else {
|
||||||
/* gst_video_frame_clear() or is output frame already cleared */
|
/* 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,
|
gst_buffer_replace_all_memory (inbuf,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user