mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
manual: Fix buffer memory leak in appsrc example
g_signal_emit_by_name() is not like gst_app_src_push_buffer() due to reference counting limitations of signals, it does *not* take ownership of the buffer.
This commit is contained in:
parent
95d6141112
commit
372ccb7943
1 changed files with 2 additions and 1 deletions
|
@ -733,7 +733,7 @@ cb_need_data (GstElement *appsrc,
|
|||
|
||||
/* this makes the image black/white */
|
||||
gst_buffer_memset (buffer, 0, white ? 0xff : 0x0, size);
|
||||
|
||||
|
||||
white = !white;
|
||||
|
||||
GST_BUFFER_PTS (buffer) = timestamp;
|
||||
|
@ -742,6 +742,7 @@ cb_need_data (GstElement *appsrc,
|
|||
timestamp += GST_BUFFER_DURATION (buffer);
|
||||
|
||||
g_signal_emit_by_name (appsrc, "push-buffer", buffer, &ret);
|
||||
gst_buffer_unref (buffer);
|
||||
|
||||
if (ret != GST_FLOW_OK) {
|
||||
/* something wrong, stop pushing */
|
||||
|
|
Loading…
Reference in a new issue