diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2008-12-15 12:02:26 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2008-12-15 12:02:26 +0000 |
commit | 16aa82d6e7f18ffef6087186d88ee97773b6e703 (patch) | |
tree | 048475654004f098c94d61ec1155200b01b02bc2 /examples | |
parent | b26ad06d3477844fd1c3d71511d0f12bc0226b3b (diff) |
examples/app/: Fix example to unref after emiting the push-buffer action.
Original commit message from CVS:
* examples/app/appsrc-ra.c: (feed_data):
* examples/app/appsrc-seekable.c: (feed_data):
* examples/app/appsrc-stream.c: (read_data):
* examples/app/appsrc-stream2.c: (feed_data):
Fix example to unref after emiting the push-buffer action.
* gst-libs/gst/app/gstappsrc.c: (gst_app_src_class_init),
(gst_app_src_push_buffer_full), (gst_app_src_push_buffer),
(gst_app_src_push_buffer_action):
Don't take the ref on the buffer in push-buffer action because it's too
awkward for bindings. Fixes #564482.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/app/appsrc-ra.c | 1 | ||||
-rw-r--r-- | examples/app/appsrc-seekable.c | 1 | ||||
-rw-r--r-- | examples/app/appsrc-stream.c | 1 | ||||
-rw-r--r-- | examples/app/appsrc-stream2.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/examples/app/appsrc-ra.c b/examples/app/appsrc-ra.c index 1611616ed..aa4962fe5 100644 --- a/examples/app/appsrc-ra.c +++ b/examples/app/appsrc-ra.c @@ -92,6 +92,7 @@ feed_data (GstElement * appsrc, guint size, App * app) GST_DEBUG ("feed buffer %p, offset %" G_GUINT64_FORMAT "-%u", buffer, app->offset, size); g_signal_emit_by_name (app->appsrc, "push-buffer", buffer, &ret); + gst_buffer_unref (buffer); app->offset += size; diff --git a/examples/app/appsrc-seekable.c b/examples/app/appsrc-seekable.c index e0325888c..7137d13e1 100644 --- a/examples/app/appsrc-seekable.c +++ b/examples/app/appsrc-seekable.c @@ -95,6 +95,7 @@ feed_data (GstElement * appsrc, guint size, App * app) GST_DEBUG ("feed buffer %p, offset %" G_GUINT64_FORMAT "-%u", buffer, app->offset, len); g_signal_emit_by_name (app->appsrc, "push-buffer", buffer, &ret); + gst_buffer_unref (buffer); app->offset += len; diff --git a/examples/app/appsrc-stream.c b/examples/app/appsrc-stream.c index d5edceb87..870d707c7 100644 --- a/examples/app/appsrc-stream.c +++ b/examples/app/appsrc-stream.c @@ -102,6 +102,7 @@ read_data (App * app) GST_DEBUG ("feed buffer %p, offset %" G_GUINT64_FORMAT "-%u", buffer, app->offset, len); g_signal_emit_by_name (app->appsrc, "push-buffer", buffer, &ret); + gst_buffer_unref (buffer); if (ret != GST_FLOW_OK) { /* some error, stop sending data */ return FALSE; diff --git a/examples/app/appsrc-stream2.c b/examples/app/appsrc-stream2.c index 8f691a2e9..866b0504c 100644 --- a/examples/app/appsrc-stream2.c +++ b/examples/app/appsrc-stream2.c @@ -102,6 +102,7 @@ feed_data (GstElement * appsrc, guint size, App * app) GST_DEBUG ("feed buffer %p, offset %" G_GUINT64_FORMAT "-%u", buffer, app->offset, len); g_signal_emit_by_name (app->appsrc, "push-buffer", buffer, &ret); + gst_buffer_unref (buffer); app->offset += len; |