diff options
author | David Schleef <ds@schleef.org> | 2007-03-03 10:10:30 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2007-03-03 10:10:30 +0000 |
commit | 5b4cc95fea5b5fff8948fc5f8f18720e0a59d8d7 (patch) | |
tree | 3c3fb0d0c219969636a120fb73f923967b14d353 /gst-libs/gst/app/gstappsrc.c | |
parent | 6b355aa720a00409a4b49c2307d841979cea2e5d (diff) | |
download | gst-plugins-bad-5b4cc95fea5b5fff8948fc5f8f18720e0a59d8d7.tar.gz gst-plugins-bad-5b4cc95fea5b5fff8948fc5f8f18720e0a59d8d7.tar.bz2 gst-plugins-bad-5b4cc95fea5b5fff8948fc5f8f18720e0a59d8d7.zip |
gst-libs/gst/app/: Add GstAppBuffer that includes a callback and closure for proper handling of data chunks.
Original commit message from CVS:
* gst-libs/gst/app/Makefile.am:
* gst-libs/gst/app/gstappbuffer.c:
* gst-libs/gst/app/gstappbuffer.h:
* gst-libs/gst/app/gstappsrc.c:
Add GstAppBuffer that includes a callback and closure for
proper handling of data chunks.
Diffstat (limited to 'gst-libs/gst/app/gstappsrc.c')
-rw-r--r-- | gst-libs/gst/app/gstappsrc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gst-libs/gst/app/gstappsrc.c b/gst-libs/gst/app/gstappsrc.c index d786424f..65e4c8c8 100644 --- a/gst-libs/gst/app/gstappsrc.c +++ b/gst-libs/gst/app/gstappsrc.c @@ -114,6 +114,8 @@ gst_app_src_dispose (GObject * obj) g_queue_free (appsrc->queue); appsrc->queue = NULL; } + + G_OBJECT_CLASS (parent_class)->dispose (obj); } static void |