platform/upstream/gstreamer.git
12 years agoMerge remote-tracking branch 'origin/0.10'
Wim Taymans [Tue, 10 Apr 2012 10:55:31 +0000 (12:55 +0200)]
Merge remote-tracking branch 'origin/0.10'

Conflicts:
gst/gst.c
plugins/elements/gstqueue2.c

12 years agogst: add toc entry ref/unref
Wim Taymans [Tue, 10 Apr 2012 10:49:04 +0000 (12:49 +0200)]
gst: add toc entry ref/unref

12 years agoqueue2: set seeking flag with the queue lock
Wim Taymans [Tue, 10 Apr 2012 10:09:53 +0000 (12:09 +0200)]
queue2: set seeking flag with the queue lock

12 years agoqueue2: Keep track of the seeking state
Wim Taymans [Tue, 10 Apr 2012 09:20:09 +0000 (11:20 +0200)]
queue2: Keep track of the seeking state

Set the seeking flag right before we send a seek event upstream and discard all
data untill we see a flush-stop again. We need to do this because we activate
the range that we seek to immediately after sending the seek event and it is
possible that we receive data in our chain function from before the seek
which would then be added to the wrong range resulting in data corruption.

12 years agoqueue2: make range on newsegment for ringbuffer
Wim Taymans [Tue, 10 Apr 2012 09:16:14 +0000 (11:16 +0200)]
queue2: make range on newsegment for ringbuffer

When using the ringbuffer, handle the newsegment event like we handle it when
using the temp-file mode: create a new range for the new byte segment. The new
segment should normally already be created when we do a seek.

12 years agoMerge remote-tracking branch 'origin/0.10'
Sebastian Dröge [Mon, 9 Apr 2012 14:42:30 +0000 (16:42 +0200)]
Merge remote-tracking branch 'origin/0.10'

12 years agomultiqueue: Don't use buffer after pushing it downstream
Sebastian Dröge [Mon, 9 Apr 2012 14:40:47 +0000 (16:40 +0200)]
multiqueue: Don't use buffer after pushing it downstream

12 years agoMerge remote-tracking branch 'origin/0.10'
Sebastian Dröge [Mon, 9 Apr 2012 14:04:22 +0000 (16:04 +0200)]
Merge remote-tracking branch 'origin/0.10'

12 years agoelement: Fail if a pad for a non-request template is requested
Sebastian Dröge [Mon, 9 Apr 2012 13:58:21 +0000 (15:58 +0200)]
element: Fail if a pad for a non-request template is requested

12 years agoelement: use quarks when storing standard metadata in structures
Tim-Philipp Müller [Mon, 9 Apr 2012 12:40:35 +0000 (13:40 +0100)]
element: use quarks when storing standard metadata in structures

12 years agoplugins: use new gst_element_class_set_static_metadata()
Tim-Philipp Müller [Mon, 9 Apr 2012 12:05:07 +0000 (13:05 +0100)]
plugins: use new gst_element_class_set_static_metadata()

12 years agoelement: add gst_element_class_{set,add}_static_metadata()
Tim-Philipp Müller [Mon, 9 Apr 2012 11:47:58 +0000 (12:47 +0100)]
element: add gst_element_class_{set,add}_static_metadata()

Add gst_element_class_{add,set}_metadata() variants for static strings,
so we can avoid unnecessary g_strdup()s.

API: gst_element_class_add_static_metadata()
API: gst_element_class_set_static_metadata()

12 years agotask: remove gst_task_set_priority()
Tim-Philipp Müller [Sun, 8 Apr 2012 20:17:14 +0000 (21:17 +0100)]
task: remove gst_task_set_priority()

It doesn't actually do anything.

12 years agowin32: add VS 10 Project files
Matej Knopp [Sat, 14 Jan 2012 05:31:32 +0000 (00:31 -0500)]
win32: add VS 10 Project files

https://bugzilla.gnome.org/show_bug.cgi?id=666219

12 years agowin32: update for version changes
Tim-Philipp Müller [Sun, 8 Apr 2012 17:25:39 +0000 (18:25 +0100)]
win32: update for version changes

12 years agoMerge remote-tracking branch 'origin/0.10'
Tim-Philipp Müller [Sat, 7 Apr 2012 15:35:27 +0000 (16:35 +0100)]
Merge remote-tracking branch 'origin/0.10'

12 years agowin32: add new TOC API to libgstreamer.def
Tim-Philipp Müller [Sat, 7 Apr 2012 15:06:22 +0000 (16:06 +0100)]
win32: add new TOC API to libgstreamer.def

Fixes 'make check'.

12 years agotests: add new toc test binaries to .gitignore
Tim-Philipp Müller [Sat, 7 Apr 2012 15:05:33 +0000 (16:05 +0100)]
tests: add new toc test binaries to .gitignore

12 years agogst: don't export private TOC functions
Tim-Philipp Müller [Sat, 7 Apr 2012 15:04:14 +0000 (16:04 +0100)]
gst: don't export private TOC functions

12 years agoMerge remote-tracking branch 'origin/0.10'
Tim-Philipp Müller [Sat, 7 Apr 2012 14:42:08 +0000 (15:42 +0100)]
Merge remote-tracking branch 'origin/0.10'

Conflicts:
gst/gstatomicqueue.c

12 years agoatomicqueue: fix race
Wim Taymans [Fri, 24 Feb 2012 14:24:42 +0000 (15:24 +0100)]
atomicqueue: fix race

After a writer has written to its reserved write location, it can only make the
location available for reading if all of the writers with lower locations have
finished.

12 years agoatomicqueue: fix subtle race
Wim Taymans [Fri, 24 Feb 2012 11:51:24 +0000 (12:51 +0100)]
atomicqueue: fix subtle race

Fix a race where the reader would see the updated the tail pointer before the
write could write the data into the queue. Fix this by having a separate reader
tail pointer that is only incremented after the writer wrote the data.

12 years agofilesrc: set default block size from local define
Tim-Philipp Müller [Sat, 7 Apr 2012 14:20:05 +0000 (15:20 +0100)]
filesrc: set default block size from local define

Doesn't actually change the default value, just makes use of the
define there is. Superficial testing with fakesink and jpegdec did
not reveal improved performance for bigger block sizes, so leave
default as it is.

12 years agoqueue2: don't update the current reading_pos in flush
Wim Taymans [Fri, 6 Apr 2012 14:46:58 +0000 (16:46 +0200)]
queue2: don't update the current reading_pos in flush

A flush from the upstream element should not make buffering go to 0, the next
pull request might be inside a range that we have and then we don't need to
buffer at all. If the next pull is outside anything we have, buffering will
happen as usual anyway.

12 years agoqueue2: fix for merged changes
Wim Taymans [Fri, 6 Apr 2012 10:42:39 +0000 (12:42 +0200)]
queue2: fix for merged changes

12 years agoMerge branch '0.10'
Wim Taymans [Fri, 6 Apr 2012 10:37:41 +0000 (12:37 +0200)]
Merge branch '0.10'

12 years agoqueue2: check the pad mode on the right pad
Wim Taymans [Fri, 6 Apr 2012 10:32:49 +0000 (12:32 +0200)]
queue2: check the pad mode on the right pad

12 years agoqueue2: forward flush events correctly
Wim Taymans [Fri, 6 Apr 2012 10:24:22 +0000 (12:24 +0200)]
queue2: forward flush events correctly

We want to forward the flush events received on the sinkpad whenever the srcpad
is activated in pushmode, which can also happen when using the RINGBUFFER or
DOWNLOAD mode and downstream failed to activate us in pull mode.

12 years agocontrolbinding: chain up on dispose and finalize
Stefan Sauer [Thu, 5 Apr 2012 19:56:05 +0000 (21:56 +0200)]
controlbinding: chain up on dispose and finalize

12 years agogstobject: unparent the controlbinding on dispose
Stefan Sauer [Thu, 5 Apr 2012 19:55:07 +0000 (21:55 +0200)]
gstobject: unparent the controlbinding on dispose

12 years agocontroller: dup the objects to avoid premature frees
Stefan Sauer [Thu, 5 Apr 2012 19:07:55 +0000 (21:07 +0200)]
controller: dup the objects to avoid premature frees

12 years agocontroller: add a finalizer for the test controlbindings
Stefan Sauer [Thu, 5 Apr 2012 19:06:14 +0000 (21:06 +0200)]
controller: add a finalizer for the test controlbindings

No idea why valgrind still inists that there are leaks.

12 years agoAutomatic update of common submodule
Sebastian Dröge [Thu, 5 Apr 2012 16:42:30 +0000 (18:42 +0200)]
Automatic update of common submodule

From 7fda524 to 464fe15

12 years agogst: Change name parameter of GST_PLUGIN_DEFINE() to not take a string anymore
Sebastian Dröge [Thu, 5 Apr 2012 12:17:16 +0000 (14:17 +0200)]
gst: Change name parameter of GST_PLUGIN_DEFINE() to not take a string anymore

This will be needed when we later add support for static linking
of plugins without introducing new API or changing existing API.

12 years agogstplugin: Add hack for handling 0.11.9X and 0.11.89.X with X>0 the same as 1.0.0
Sebastian Dröge [Thu, 5 Apr 2012 11:23:00 +0000 (13:23 +0200)]
gstplugin: Add hack for handling 0.11.9X and 0.11.89.X with X>0 the same as 1.0.0

Also update the version number to 0.11.89.1

12 years agotocsetter: clear mutex upon free
Mark Nauwelaerts [Thu, 5 Apr 2012 10:22:11 +0000 (12:22 +0200)]
tocsetter: clear mutex upon free

12 years agoregistry: Set registry version to 1.0.0 too
Sebastian Dröge [Thu, 5 Apr 2012 08:56:22 +0000 (10:56 +0200)]
registry: Set registry version to 1.0.0 too

12 years agoMerge branch '0.10'
Wim Taymans [Thu, 5 Apr 2012 08:36:08 +0000 (10:36 +0200)]
Merge branch '0.10'

Conflicts:
plugins/elements/gstqueue2.c

12 years agoqueue2: stop waiting for more data after EOS
Wim Taymans [Thu, 5 Apr 2012 08:03:02 +0000 (10:03 +0200)]
queue2: stop waiting for more data after EOS

When we have EOS, read the remaining bytes in the buffer and make sure we don't
wait for more data. Also clip the output buffer to the amount of remaining
bytes.

12 years agoqueue2: check for filled buffer correctly
Wim Taymans [Thu, 5 Apr 2012 07:56:52 +0000 (09:56 +0200)]
queue2: check for filled buffer correctly

When using the ringbuffer mode, the buffer is filled when we reached the
max_level.bytes mark or the total size of the ringbuffer, whichever is smaller.

12 years agoqueue2: avoid waiting for a filled buffer
Wim Taymans [Wed, 4 Apr 2012 11:07:27 +0000 (13:07 +0200)]
queue2: avoid waiting for a filled buffer

Use a threshold variable to hold the maximum distance from the current position
for with we will wait instead of doing a seek.
When using the ringbuffer and the requested offset is not available, avoid
waiting until the complete ringbuffer is filled but instead do a seek when the
requested data is further than the threshold.
Avoid doing the seek twice in the ringbuffer case.
Use the same threshold for ringbuffer and download buffering.

12 years agogstbuffer: fix compile warning
Alessandro Decina [Thu, 5 Apr 2012 07:07:18 +0000 (09:07 +0200)]
gstbuffer: fix compile warning

12 years agogst: Change versioning
Sebastian Dröge [Wed, 4 Apr 2012 11:13:52 +0000 (13:13 +0200)]
gst: Change versioning

Remove GST_MAJORMINOR and replace it by GST_API_VERSION
Also set GST_VERSION_{MAJOR,MINOR,MICRO,NANO} explicitely
now.

All versions are at 1.0.0 now for the release soon but
API/ABI can still change until the 1.0.0 release.

Next release versions until 1.0.0 will be 0.10.9X and
these will be release candidates. GST_VERSION_* will
nonetheless stay at 1.0.0.0.

12 years agoMerge remote-tracking branch 'origin/0.10'
Sebastian Dröge [Wed, 4 Apr 2012 10:25:40 +0000 (12:25 +0200)]
Merge remote-tracking branch 'origin/0.10'

Conflicts:
docs/gst/gstreamer-sections.txt
gst/Makefile.am
gst/gst.c
gst/gst.h
gst/gstevent.c
gst/gstevent.h
gst/gstmessage.c
gst/gstmessage.h
gst/gstquark.c
gst/gstquark.h
gst/gstquery.c
gst/gstquery.h
gst/gsttoc.c
gst/gsttoc.h
gst/gsttocsetter.c
tests/check/Makefile.am
tests/check/gst/gsttoc.c
tests/check/gst/gsttocsetter.c

12 years agobuffer: improve _set_size()
Wim Taymans [Tue, 3 Apr 2012 14:51:54 +0000 (16:51 +0200)]
buffer: improve _set_size()

12 years agobuffer: make get_sizes and _resize with ranges
Wim Taymans [Tue, 3 Apr 2012 14:44:58 +0000 (16:44 +0200)]
buffer: make get_sizes and _resize with ranges

Make the _get_sizes and _resize methods work on a range of memory to make them
more powerfull.

12 years agoconsistencychecker: allow some more events before a segment event
Mark Nauwelaerts [Tue, 3 Apr 2012 16:25:40 +0000 (18:25 +0200)]
consistencychecker: allow some more events before a segment event

12 years agotocsetter: use new glib mutex api
Stefan Sauer [Tue, 3 Apr 2012 13:46:29 +0000 (15:46 +0200)]
tocsetter: use new glib mutex api

12 years agotools: fix compiler warning
Tim-Philipp Müller [Mon, 2 Apr 2012 22:17:21 +0000 (23:17 +0100)]
tools: fix compiler warning

gst-launch.c: In function ‘print_toc_entry’:
gst-launch.c:446:3: error: the size of array ‘spc’ can’t be evaluated [-Werror=vla]
gst-launch.c:446:3: error: variable-sized object may not be initialized

12 years agotests: add new unit test binaries to .gitignore
Tim-Philipp Müller [Mon, 2 Apr 2012 22:29:24 +0000 (23:29 +0100)]
tests: add new unit test binaries to .gitignore

12 years agogst: ref new entry enum types
Tim-Philipp Müller [Mon, 2 Apr 2012 22:28:15 +0000 (23:28 +0100)]
gst: ref new entry enum types

Fixes 'make check', again.

12 years agowin32: add new API to .def file
Tim-Philipp Müller [Mon, 2 Apr 2012 22:24:22 +0000 (23:24 +0100)]
win32: add new API to .def file

Fixes 'make check'.

12 years agotoc: don't export private functions
Tim-Philipp Müller [Mon, 2 Apr 2012 22:23:46 +0000 (23:23 +0100)]
toc: don't export private functions

12 years agotools: fix compiler warning
Tim-Philipp Müller [Mon, 2 Apr 2012 22:17:21 +0000 (23:17 +0100)]
tools: fix compiler warning

gst-launch.c: In function ‘print_toc_entry’:
gst-launch.c:446:3: error: the size of array ‘spc’ can’t be evaluated [-Werror=vla]
gst-launch.c:446:3: error: variable-sized object may not be initialized

12 years agopo: update for new translatable strings
Tim-Philipp Müller [Mon, 2 Apr 2012 22:16:39 +0000 (23:16 +0100)]
po: update for new translatable strings

12 years agoMerge remote-tracking branch 'origin/master'
Stefan Sauer [Mon, 2 Apr 2012 21:01:17 +0000 (23:01 +0200)]
Merge remote-tracking branch 'origin/master'

12 years agotoc: port to 0.11
Stefan Sauer [Mon, 2 Apr 2012 20:09:07 +0000 (22:09 +0200)]
toc: port to 0.11

12 years agogst-launch: add -c, --toc to print the toc
Stefan Sauer [Thu, 22 Mar 2012 07:36:02 +0000 (08:36 +0100)]
gst-launch: add -c, --toc to print the toc

Print the nested chapter and edition structure of the chapters message.

12 years agodocs: add overview of GstToc usage
Alexander Saprykin [Wed, 28 Mar 2012 19:15:41 +0000 (23:15 +0400)]
docs: add overview of GstToc usage

12 years agodocs: Add GstToc and GstTocSetter sections with related functions
Alexander Saprykin [Wed, 14 Mar 2012 17:14:23 +0000 (21:14 +0400)]
docs: Add GstToc and GstTocSetter sections with related functions

12 years agogstchecks: Add unit test for the GstTocSetter
Alexander Saprykin [Wed, 14 Mar 2012 17:13:22 +0000 (21:13 +0400)]
gstchecks: Add unit test for the GstTocSetter

12 years agogstchecks: Add unit test for the GstToc
Alexander Saprykin [Wed, 14 Mar 2012 17:12:22 +0000 (21:12 +0400)]
gstchecks: Add unit test for the GstToc

12 years agoAdd new GstTocSetter interface
Alexander Saprykin [Wed, 14 Mar 2012 16:45:35 +0000 (20:45 +0400)]
Add new GstTocSetter interface

12 years agoAdd new TOC query
Alexander Saprykin [Wed, 14 Mar 2012 16:42:56 +0000 (20:42 +0400)]
Add new TOC query

12 years agoAdd new TOC message
Alexander Saprykin [Wed, 14 Mar 2012 16:41:48 +0000 (20:41 +0400)]
Add new TOC message

12 years agoAdd new TOC and TOC select events
Alexander Saprykin [Wed, 14 Mar 2012 16:40:32 +0000 (20:40 +0400)]
Add new TOC and TOC select events

12 years agoAdd generic table of contents (TOC) support
Alexander Saprykin [Wed, 14 Mar 2012 16:01:51 +0000 (20:01 +0400)]
Add generic table of contents (TOC) support

12 years agoMerge branch '0.10'
Stefan Sauer [Mon, 2 Apr 2012 19:15:09 +0000 (21:15 +0200)]
Merge branch '0.10'

Conflicts:
docs/gst/gstreamer-sections.txt
gst/Makefile.am
gst/gst.c
gst/gst.h
gst/gstevent.c
gst/gstevent.h
gst/gstmessage.h
gst/gstquark.c
gst/gstquark.h
gst/gstquery.c
gst/gstquery.h
tests/check/Makefile.am

12 years agoMerge remote-tracking branch 'origin/0.10'
Sebastian Dröge [Mon, 2 Apr 2012 13:30:04 +0000 (15:30 +0200)]
Merge remote-tracking branch 'origin/0.10'

Conflicts:
libs/gst/base/gstbaseparse.c

12 years agobaseparse: always attempt to push if not-linked
Edward Hervey [Mon, 2 Apr 2012 13:13:24 +0000 (15:13 +0200)]
baseparse: always attempt to push if not-linked

This avoids ending up with plenty of pending data (since we'll only
 try to parse/push one frame from the incoming buffer).

Fixes increasing memory consumption when parsers aren't linked

Conflicts:

libs/gst/base/gstbaseparse.c

12 years agobaseparse: always attempt to push if not-linked
Edward Hervey [Mon, 2 Apr 2012 13:13:24 +0000 (15:13 +0200)]
baseparse: always attempt to push if not-linked

This avoids ending up with plenty of pending data (since we'll only
 try to parse/push one frame from the incoming buffer).

Fixes increasing memory consumption when parsers aren't linked

12 years agoTimeout is not used on W32
Руслан Ижбулатов [Sat, 31 Mar 2012 23:30:51 +0000 (03:30 +0400)]
Timeout is not used on W32

Fixes #673267

12 years agotrans: add transform_ip_on_passthrough
Wim Taymans [Mon, 2 Apr 2012 09:09:50 +0000 (11:09 +0200)]
trans: add transform_ip_on_passthrough

Add an option to control if transform_ip is called in passthrough mode or not.
for elements that don't want to look at the data in passthrough mode, this can
avoid some extra processing, mostly in subclasses.

12 years agogst-launch: add -c, --toc to print the toc
Stefan Sauer [Thu, 22 Mar 2012 07:36:02 +0000 (08:36 +0100)]
gst-launch: add -c, --toc to print the toc

Print the nested chapter and edition structure of the chapters message.

12 years agodocs: add overview of GstToc usage
Alexander Saprykin [Wed, 28 Mar 2012 19:15:41 +0000 (23:15 +0400)]
docs: add overview of GstToc usage

12 years agodocs: Add GstToc and GstTocSetter sections with related functions
Alexander Saprykin [Wed, 14 Mar 2012 17:14:23 +0000 (21:14 +0400)]
docs: Add GstToc and GstTocSetter sections with related functions

12 years agogstchecks: Add unit test for the GstTocSetter
Alexander Saprykin [Wed, 14 Mar 2012 17:13:22 +0000 (21:13 +0400)]
gstchecks: Add unit test for the GstTocSetter

12 years agogstchecks: Add unit test for the GstToc
Alexander Saprykin [Wed, 14 Mar 2012 17:12:22 +0000 (21:12 +0400)]
gstchecks: Add unit test for the GstToc

12 years agoAdd new GstTocSetter interface
Alexander Saprykin [Wed, 14 Mar 2012 16:45:35 +0000 (20:45 +0400)]
Add new GstTocSetter interface

12 years agoAdd new TOC query
Alexander Saprykin [Wed, 14 Mar 2012 16:42:56 +0000 (20:42 +0400)]
Add new TOC query

12 years agoAdd new TOC message
Alexander Saprykin [Wed, 14 Mar 2012 16:41:48 +0000 (20:41 +0400)]
Add new TOC message

12 years agoAdd new TOC and TOC select events
Alexander Saprykin [Wed, 14 Mar 2012 16:40:32 +0000 (20:40 +0400)]
Add new TOC and TOC select events

12 years agoAdd generic table of contents (TOC) support
Alexander Saprykin [Wed, 14 Mar 2012 16:01:51 +0000 (20:01 +0400)]
Add generic table of contents (TOC) support

12 years agobuffer: reuse more code
Wim Taymans [Sun, 1 Apr 2012 10:01:34 +0000 (12:01 +0200)]
buffer: reuse more code

12 years agobuffer: make function to find memory in a buffer
Wim Taymans [Sun, 1 Apr 2012 09:42:52 +0000 (11:42 +0200)]
buffer: make function to find memory in a buffer

Make a function to find the memory blocks for a region in a buffer.

12 years agochildproxy: fix more missing GST_OBJECT -> G_OBJECT use
Stefan Sauer [Sat, 31 Mar 2012 19:26:22 +0000 (21:26 +0200)]
childproxy: fix more missing GST_OBJECT -> G_OBJECT use

12 years agoadapter: use buffer_wrap
Wim Taymans [Sat, 31 Mar 2012 16:34:23 +0000 (18:34 +0200)]
adapter: use buffer_wrap

12 years agobuffer: add peek_memory method
Wim Taymans [Sat, 31 Mar 2012 15:10:35 +0000 (17:10 +0200)]
buffer: add peek_memory method

Add a peerk_memory method that simply fetches the memory at an offset without
refcounting or merging.

12 years agogrammar.y: fix childproxy code
Wim Taymans [Sat, 31 Mar 2012 10:00:56 +0000 (12:00 +0200)]
grammar.y: fix childproxy code

It takes GObject and not GstObject now

12 years agochildproxy: include the child name in the signal
Stefan Sauer [Fri, 30 Mar 2012 20:46:02 +0000 (22:46 +0200)]
childproxy: include the child name in the signal

12 years agoparser: update for childproxy api changes
Stefan Sauer [Fri, 30 Mar 2012 20:44:31 +0000 (22:44 +0200)]
parser: update for childproxy api changes

12 years agochildproxy: fix signal parameter types
Stefan Sauer [Fri, 30 Mar 2012 20:36:35 +0000 (22:36 +0200)]
childproxy: fix signal parameter types

12 years agochildproxy: use GObject instead of GstObject
Stefan Sauer [Fri, 30 Mar 2012 20:17:09 +0000 (22:17 +0200)]
childproxy: use GObject instead of GstObject

This makes it prossible to be used more widely. Fix implementations for the API
change.

12 years agochildproxy: make get_child_by_name virtual
Stefan Sauer [Fri, 30 Mar 2012 20:01:55 +0000 (22:01 +0200)]
childproxy: make get_child_by_name virtual

Allows implementations to use custom name->object mappings.

12 years agochildproxy: fix indentation
Stefan Sauer [Fri, 30 Mar 2012 20:01:26 +0000 (22:01 +0200)]
childproxy: fix indentation

12 years agobuffer: improve the buffer memory methods
Wim Taymans [Fri, 30 Mar 2012 16:04:51 +0000 (18:04 +0200)]
buffer: improve the buffer memory methods

gst_buffer_take_memory -> gst_buffer_insert_memory because insert is what the
method does.
Make all methods deal with ranges so that we can replace, merge, remove and map
a certain subset of the memory in a buffer. With the new methods we can make
some code nicer and reuse more code. Being able to deal with a subset of the
buffer memory allows us to optimize more cases later (most notably RTP headers
and payload that could be in different memory objects).
Make some more convenient macros that call the more generic range methods.

12 years agotypefindelement: plug caps leaks
Mark Nauwelaerts [Fri, 30 Mar 2012 14:53:09 +0000 (16:53 +0200)]
typefindelement: plug caps leaks

12 years agotypefindhelper: also unmap collected mapped buffers
Mark Nauwelaerts [Fri, 30 Mar 2012 14:53:05 +0000 (16:53 +0200)]
typefindhelper: also unmap collected mapped buffers

12 years agobasetransform: plug caps leak
Mark Nauwelaerts [Fri, 30 Mar 2012 14:53:00 +0000 (16:53 +0200)]
basetransform: plug caps leak

12 years agobaseparse: Rename ::event() to ::sink_event() for consistency
Sebastian Dröge [Fri, 30 Mar 2012 09:58:20 +0000 (11:58 +0200)]
baseparse: Rename ::event() to ::sink_event() for consistency