platform/upstream/gstreamer.git
10 years agosysmem: Only copy the requested part of memory instead of the complete source memory
Sebastian Dröge [Tue, 13 Aug 2013 11:06:50 +0000 (13:06 +0200)]
sysmem: Only copy the requested part of memory instead of the complete source memory

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

10 years agoquery: add Since markers for new API and add to exports file
Tim-Philipp Müller [Tue, 13 Aug 2013 11:11:19 +0000 (12:11 +0100)]
query: add Since markers for new API and add to exports file

10 years agoquery: fix annotation for gst_query_parse_uri
Andoni Morales Alastruey [Tue, 23 Jul 2013 14:25:27 +0000 (16:25 +0200)]
query: fix annotation for gst_query_parse_uri

10 years agoquery: add new redirection uri the URI query
Andoni Morales Alastruey [Fri, 19 Apr 2013 10:14:54 +0000 (12:14 +0200)]
query: add new redirection uri the URI query

10 years agoquery: add some missing 'transfer none' gi annotations
Thiago Santos [Mon, 12 Aug 2013 12:25:34 +0000 (09:25 -0300)]
query: add some missing 'transfer none' gi annotations

The current documentation is controverse, while it states that the
returned value is valid only while the query is is valid, which presumes
a 'transfer none' policy. But the tooltip for the 'out' annotation
states the default is 'transfer-full'.

Add the missing 'transfer none' annotations to fix this.

10 years agobytereader: Accelerate MPEG/H264 start code scanning
Nicolas Dufresne [Thu, 8 Aug 2013 10:08:31 +0000 (12:08 +0200)]
bytereader: Accelerate MPEG/H264 start code scanning

Accelerate MPEG/H264 start code scanning using Boyer-Moor bad character
heuristic.

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

10 years agopipeline: g-i: allow clock to be NULL in gst_pipeline_use_clock()
Tim-Philipp Müller [Sat, 10 Aug 2013 10:31:23 +0000 (11:31 +0100)]
pipeline: g-i: allow clock to be NULL in gst_pipeline_use_clock()

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

10 years agocontroller: fixes int overflow with properties that span +-INT_MAX
Adrian Pardini [Wed, 7 Aug 2013 17:17:28 +0000 (14:17 -0300)]
controller: fixes int overflow with properties that span +-INT_MAX

When the range for a property is defined as -INT_MAX-1 .. INT_MAX, like
the xpos in a videomixer the following expression in the macro
definitions of convert_g_value_to_##type (and the equivalent in
convert_value_to_##type)

v = pspec->minimum + (g##type) ROUNDING_OP ((pspec->maximum - pspec->minimum) * s);

are converted to:

v = -2147483648 + (g##type) ROUNDING_OP ((2147483647 - -2147483648) * s);

(2147483647 - -2147483648) overflows to -1 and the net result is:

v = -2147483648 + (g##type) ROUNDING_OP (-1 * s);

so v only takes the values -2147483648 for s == 0 and 2147483647
for s == 1.

Rewriting the expression as minimum*(1-s) + maximum*s gives the correct
result in this case.

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

10 years agobuild: add subdir-objects to AM_INIT_AUTOMAKE
Lubosz Sarnecki [Fri, 2 Aug 2013 11:31:59 +0000 (13:31 +0200)]
build: add subdir-objects to AM_INIT_AUTOMAKE

Fixes warnings with automake 1.14

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

10 years agodesign: fix typo
Wim Taymans [Fri, 2 Aug 2013 14:21:45 +0000 (16:21 +0200)]
design: fix typo

10 years agoqueue2: Fix backwards seeks into undowloaded ranges
Sjoerd Simons [Mon, 29 Jul 2013 13:48:32 +0000 (15:48 +0200)]
queue2: Fix backwards seeks into undowloaded ranges

When in download buffering mode queue2 didn't check if a range offset is
in a undownloaded range before the currently in-progress range. Causing
seeks to an earlier offset to, well, take a while.

10 years agodocs: some small gtk-doc markup fixes
Kjartan Maraas [Tue, 30 Jul 2013 17:27:23 +0000 (19:27 +0200)]
docs: some small gtk-doc markup fixes

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

10 years agogst: register new color mode enum, fixing 'make check'
Kjartan Maraas [Tue, 30 Jul 2013 17:27:23 +0000 (19:27 +0200)]
gst: register new color mode enum, fixing 'make check'

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

10 years agotypefindhelper: Avoid using buffer_get_size in tight loops
Edward Hervey [Tue, 16 Apr 2013 17:04:48 +0000 (19:04 +0200)]
typefindhelper: Avoid using buffer_get_size in tight loops

Calling gst_buffer_get_size represented 2/3 of the cost of helper_find_peek
which was called whenever a typefindfunction wanted to peek at data.

We already know the size (from the GstMapInfo), so just use that.

10 years agopo: update translations
Tim-Philipp Müller [Mon, 29 Jul 2013 18:38:51 +0000 (19:38 +0100)]
po: update translations

10 years agocommon: revert accidental re-winding of common submodule
Tim-Philipp Müller [Mon, 29 Jul 2013 18:13:03 +0000 (19:13 +0100)]
common: revert accidental re-winding of common submodule

10 years agoquery: Clarify the estimated-total documentation
Sjoerd Simons [Fri, 26 Jul 2013 14:15:24 +0000 (16:15 +0200)]
query: Clarify the estimated-total documentation

Tweak the documentation slightly to clarify that the estimated-total in
a a Buffering query the total remaining time of a download, not the
total time for the complete download. Also indicate the unit used.

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

10 years agoqueue2: Forward the schedule query upstream
Sjoerd Simons [Fri, 26 Jul 2013 13:08:13 +0000 (15:08 +0200)]
queue2: Forward the schedule query upstream

When asked about the scheduling flags first check with upstream and
simply add the _SEEKABLE flag when using a temporary file as storage.

This enables the forwarding of _SEQUENTIAL and _BANDWIDTH_LIMITED from
sources if needed.

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

10 years agoBack to development
Sebastian Dröge [Mon, 29 Jul 2013 12:47:15 +0000 (14:47 +0200)]
Back to development

10 years agoRelease 1.1.3 1.1.3
Sebastian Dröge [Mon, 29 Jul 2013 11:34:53 +0000 (13:34 +0200)]
Release 1.1.3

10 years agoUpdate .po files
Sebastian Dröge [Mon, 29 Jul 2013 11:30:25 +0000 (13:30 +0200)]
Update .po files

10 years agobase: Fix handling of SEGMENT query
Sebastian Dröge [Mon, 29 Jul 2013 10:10:45 +0000 (12:10 +0200)]
base: Fix handling of SEGMENT query

The values should be in stream-time, and start/stop should not
be swapped for negative rates.

10 years agotypefind: Only advance offset by the number of bytes we actually read
Sebastian Dröge [Mon, 29 Jul 2013 09:05:09 +0000 (11:05 +0200)]
typefind: Only advance offset by the number of bytes we actually read

There might be a short read at EOS.

10 years agobaseparse: Implement SEGMENT query
Sebastian Dröge [Mon, 29 Jul 2013 08:48:30 +0000 (10:48 +0200)]
baseparse: Implement SEGMENT query

10 years agobuffer: fix Since: marker for new gst_buffer_extract_dup()
Tim-Philipp Müller [Fri, 26 Jul 2013 17:36:04 +0000 (18:36 +0100)]
buffer: fix Since: marker for new gst_buffer_extract_dup()

10 years agoclock: debug the clock return values
Wim Taymans [Fri, 26 Jul 2013 10:19:32 +0000 (12:19 +0200)]
clock: debug the clock return values

10 years agobaseparse: fix seqnum handling for seeks
Thiago Santos [Thu, 25 Jul 2013 15:20:14 +0000 (12:20 -0300)]
baseparse: fix seqnum handling for seeks

Use the same seqnum as the seek for flushes/segments that are
caused by the seek. Also do the same for segment events

Fixes #676242

11 years agoinfo: parse debug levels > 9
David Schleef [Wed, 24 Jul 2013 17:29:30 +0000 (10:29 -0700)]
info: parse debug levels > 9

11 years agovalue: Fix copy&paste mistakes in the bitmask function docs
Sebastian Dröge [Wed, 24 Jul 2013 14:57:46 +0000 (16:57 +0200)]
value: Fix copy&paste mistakes in the bitmask function docs

11 years agobasesink: Don't shadow variables that are set inside our scope and then used outside...
Sebastian Dröge [Wed, 24 Jul 2013 09:21:27 +0000 (11:21 +0200)]
basesink: Don't shadow variables that are set inside our scope and then used outside our scope

Fixes uninitialized use of these variables.

11 years agotests: Remove other interface structs from the ABI tests too
Sebastian Dröge [Wed, 24 Jul 2013 08:30:25 +0000 (10:30 +0200)]
tests: Remove other interface structs from the ABI tests too

11 years agotests: Remove GstTagSetter from ABI checks
Thiago Santos [Fri, 15 Oct 2010 16:16:59 +0000 (13:16 -0300)]
tests: Remove GstTagSetter from ABI checks

Interfaces can have new members added without breaking ABI, so
remove it from the check.

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

11 years agolibcheck: Escape strings in the generated xml files
Thibault Saunier [Tue, 23 Jul 2013 19:39:53 +0000 (15:39 -0400)]
libcheck: Escape strings in the generated xml files

This is copy pasted from upstream libcheck

11 years agobasesink: Print some debug output if a stream-start event without group-id arrives
Sebastian Dröge [Tue, 23 Jul 2013 16:53:44 +0000 (18:53 +0200)]
basesink: Print some debug output if a stream-start event without group-id arrives

Ideally all elements would implement handling of that to get proper
stream-start message handling and other things.

11 years agoinput-selector: Fix missing pad activation notification
Arnaud Vrac [Mon, 22 Jul 2013 16:03:01 +0000 (18:03 +0200)]
input-selector: Fix missing pad activation notification

A new active pad might not be notified in some cases, which results
in the current track number not being set in playbin.

The active-pad notification is only sent in the chain and sink_event
functions, and only when the buffer or event that triggered the active
pad selection is from the newly activated pad. So in the other case
the notification will never be sent.

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

11 years agovalue: handle deserialisation of nonexistant enum value more gracefully
Tim-Philipp Müller [Mon, 22 Jul 2013 16:25:47 +0000 (17:25 +0100)]
value: handle deserialisation of nonexistant enum value more gracefully

11 years agoinputselector: Don't push new stream-start events on stream change unless they all...
Sebastian Dröge [Mon, 22 Jul 2013 12:12:18 +0000 (14:12 +0200)]
inputselector: Don't push new stream-start events on stream change unless they all have group ids

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

11 years agotypefind: Use new group-id in stream-start event
Sebastian Dröge [Mon, 22 Jul 2013 10:06:29 +0000 (12:06 +0200)]
typefind: Use new group-id in stream-start event

11 years agobase: Use new group-id field in stream-start event and message
Sebastian Dröge [Mon, 22 Jul 2013 10:06:08 +0000 (12:06 +0200)]
base: Use new group-id field in stream-start event and message

11 years agobin: Use the new group-id field of the stream-start message for stream-start message...
Sebastian Dröge [Mon, 22 Jul 2013 09:42:18 +0000 (11:42 +0200)]
bin: Use the new group-id field of the stream-start message for stream-start message aggregation

If all stream-start messages had a group id (for backwards compatibility),
we only consider a stream started if all had the same group id.

In 2.0 we should make the group id mandatory.

11 years agogst: Add new group-id field to the stream-start event
Sebastian Dröge [Mon, 22 Jul 2013 09:41:35 +0000 (11:41 +0200)]
gst: Add new group-id field to the stream-start event

All streams that have the same group id are supposed to be played
together, i.e. all streams inside a container file should have the
same group id but different stream ids. The group id should change
each time the stream is started, resulting in different group ids
each time a file is played for example.

11 years agocommon: revert accidental change of common submodule
Tim-Philipp Müller [Thu, 18 Jul 2013 22:29:49 +0000 (23:29 +0100)]
common: revert accidental change of common submodule

11 years agogst: Add some more Since: 1.2
Sebastian Dröge [Thu, 18 Jul 2013 12:39:42 +0000 (14:39 +0200)]
gst: Add some more Since: 1.2

11 years agoinfo: Add some Since: 1.2
Sebastian Dröge [Thu, 18 Jul 2013 12:34:31 +0000 (14:34 +0200)]
info: Add some Since: 1.2

11 years agoinfo: Add debug color mode option
Руслан Ижбулатов [Thu, 18 Jul 2013 11:10:10 +0000 (15:10 +0400)]
info: Add debug color mode option

This allows to explicitely set the debug output color
mode to UNIX on every platform, enable it (use platform
default color mode) or enable it.

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

11 years agoinfo: Fix black and underline coloring on W32
Руслан Ижбулатов [Wed, 18 Apr 2012 10:35:32 +0000 (14:35 +0400)]
info: Fix black and underline coloring on W32

Fixes #674320

11 years agoinfo: Cut down src file names for MinGW too
Руслан Ижбулатов [Wed, 18 Apr 2012 10:12:16 +0000 (14:12 +0400)]
info: Cut down src file names for MinGW too

Fixes #674320

11 years agogst-uninstalled: Fix gst-plugins-gl in uninstalled setup
Nicola Murino [Tue, 16 Jul 2013 15:47:45 +0000 (17:47 +0200)]
gst-uninstalled: Fix gst-plugins-gl in uninstalled setup

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

11 years agoadapter: Take account of the skip in gst_adapter_take_buffer_fast()
Olivier Crête [Tue, 16 Jul 2013 19:35:08 +0000 (15:35 -0400)]
adapter: Take account of the skip in gst_adapter_take_buffer_fast()

Include regression test

11 years agoadapter: Add function to return buffer composed of multiple memories
Olivier Crête [Mon, 15 Jul 2013 19:41:44 +0000 (15:41 -0400)]
adapter: Add function to return buffer composed of multiple memories

API: gst_adapter_take_fast()

11 years agoquery: Don't assert if no context is set in the query
Sebastian Dröge [Tue, 16 Jul 2013 14:24:38 +0000 (16:24 +0200)]
query: Don't assert if no context is set in the query

11 years agobenchmarks: ignore new benchmark binary
Tim-Philipp Müller [Tue, 16 Jul 2013 13:47:05 +0000 (14:47 +0100)]
benchmarks: ignore new benchmark binary

11 years agoquery: sprinkle some Since 1.2 markers in docs
Tim-Philipp Müller [Tue, 16 Jul 2013 13:46:15 +0000 (14:46 +0100)]
query: sprinkle some Since 1.2 markers in docs

11 years agotimeprovider: g-i: allow None as address for gst_net_time_provider_new()
Tim-Philipp Müller [Tue, 16 Jul 2013 13:44:03 +0000 (14:44 +0100)]
timeprovider: g-i: allow None as address for gst_net_time_provider_new()

11 years agoelement: Return an empty GstContext if none was set yet
Sebastian Dröge [Tue, 16 Jul 2013 13:34:57 +0000 (15:34 +0200)]
element: Return an empty GstContext if none was set yet

11 years agoquery: Add gst_query_has_context_type()
Sebastian Dröge [Tue, 16 Jul 2013 13:16:16 +0000 (15:16 +0200)]
query: Add gst_query_has_context_type()

11 years agomultiqueue: only block serialized query when it's safe
Sebastian Dröge [Tue, 16 Jul 2013 09:36:50 +0000 (11:36 +0200)]
multiqueue: only block serialized query when it's safe

We must be certain that we don't cause a deadlock when blocking the serialized
queries. One such deadlock can happen when we are buffering and downstream is
blocked in preroll and a serialized query arrives. Downstream will not unblock
(and allow our query to execute) until we complete buffering and buffering will
not complete until we can answer the query..

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

11 years agopad: A newly activated pad should be marked as needing reconfiguration
Sebastian Dröge [Mon, 15 Jul 2013 09:36:18 +0000 (11:36 +0200)]
pad: A newly activated pad should be marked as needing reconfiguration

11 years agoRevert "pad: Don't consider flushing pads as needing reconfiguration"
Sebastian Dröge [Mon, 15 Jul 2013 09:32:54 +0000 (11:32 +0200)]
Revert "pad: Don't consider flushing pads as needing reconfiguration"

This reverts commit 948a9d2f2b728f5fb60be45d47a818cebeb60c7d.

This is racy and trying to reconfigure and fail is still better
than not trying to reconfigure at all.

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

11 years agobasesrc: Leave the loop function faster if we're flushing
Sebastian Dröge [Mon, 15 Jul 2013 09:32:10 +0000 (11:32 +0200)]
basesrc: Leave the loop function faster if we're flushing

Especially don't even try to send stream-start event or try
to negotiate.

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

11 years agoinputselector: Deactivate and remove pad without the inputselector lock
Sebastian Dröge [Fri, 12 Jul 2013 08:08:26 +0000 (10:08 +0200)]
inputselector: Deactivate and remove pad without the inputselector lock

Otherwise we might get deadlocks caused by lock order inversion:
During the chain function the stream lock is first locked and then the
inputselector lock. During pad release we first locked the inputselector
lock and then deactivating the pad would lock the stream lock.

There's no reason why the inputselector lock should be required while
deactivating and removing the pad, it's only needed before.

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

11 years agoBack to development
Sebastian Dröge [Thu, 11 Jul 2013 14:57:06 +0000 (16:57 +0200)]
Back to development

11 years agoRelease 1.1.2 1.1.2
Sebastian Dröge [Thu, 11 Jul 2013 13:12:39 +0000 (15:12 +0200)]
Release 1.1.2

11 years agoUpdate .po files
Sebastian Dröge [Thu, 11 Jul 2013 13:11:27 +0000 (15:11 +0200)]
Update .po files

11 years agobin: Always forward clock-lost message if we're not a top-level bin
Sebastian Dröge [Wed, 10 Jul 2013 13:52:10 +0000 (15:52 +0200)]
bin: Always forward clock-lost message if we're not a top-level bin

This makes sure that no bin misses the clock-lost messages, independent
of the state, and could return an old, non-working clock from
gst_bin_provide_clock_func().

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

11 years agoinputselector: Keep previous active sinkpad around until we're done with it
Sebastian Dröge [Wed, 10 Jul 2013 12:30:31 +0000 (14:30 +0200)]
inputselector: Keep previous active sinkpad around until we're done with it

Otherwise we'll send a new segment event downstream for each buffer.

11 years agoallocator: fix type of gst_memory_alignment to match declaration
Tim-Philipp Müller [Mon, 8 Jul 2013 14:26:38 +0000 (15:26 +0100)]
allocator: fix type of gst_memory_alignment to match declaration

Fixes compiler warnings such as
gstallocator.c:61:8: error: conflicting types for 'gst_memory_alignment'
../gst/gstallocator.h:52:18: note: previous declaration of 'gst_memory_alignment' was here

11 years agopo: update POTFILES.in
Piotr Drąg [Fri, 5 Jul 2013 19:36:27 +0000 (21:36 +0200)]
po: update POTFILES.in

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

11 years agobasesrc: Do not lock a mutex that does not exist
Thibault Saunier [Fri, 5 Jul 2013 00:39:26 +0000 (20:39 -0400)]
basesrc: Do not lock a mutex that does not exist

The GST_LIVE_LOCK is on GstBaseSrc, not on its source pad.

11 years agobaseparse: reset PTS after seek
Wim Taymans [Wed, 3 Jul 2013 19:23:44 +0000 (21:23 +0200)]
baseparse: reset PTS after seek

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

11 years agoAdd few missing allow-none annotation
Nicolas Dufresne [Wed, 3 Jul 2013 17:03:49 +0000 (13:03 -0400)]
Add few missing allow-none annotation

11 years agogst-uninstalled: add new -bad mpegts lib
Tim-Philipp Müller [Wed, 3 Jul 2013 08:27:13 +0000 (09:27 +0100)]
gst-uninstalled: add new -bad mpegts lib

And remove signalprocessor/video libs from -bad which have gone
away or were merged into -base.

11 years agofunnel: Re-push all sticky events when buffers come from a different pad
Olivier Crête [Tue, 2 Jul 2013 00:35:21 +0000 (20:35 -0400)]
funnel: Re-push all sticky events when buffers come from a different pad

Don't special case segment/caps, just push all sticky events when they are
received on the currently active pad or when the active pad changes.

11 years agofunnel: Use default pad function for upstream event/queries
Olivier Crête [Tue, 2 Jul 2013 00:21:10 +0000 (20:21 -0400)]
funnel: Use default pad function for upstream event/queries

The default functions in 1.x already do the right thing

11 years agotests: Remove funnel pad_alloc test
Olivier Crête [Tue, 2 Jul 2013 00:18:58 +0000 (20:18 -0400)]
tests: Remove funnel pad_alloc test

11 years agocheck: Change stream_id parameter name to match GtkDoc
Olivier Crête [Tue, 2 Jul 2013 00:07:03 +0000 (20:07 -0400)]
check: Change stream_id parameter name to match GtkDoc

11 years agocheck: Added gst_check_setup_events_with_stream_id()
Jonas Holmberg [Mon, 1 Jul 2013 09:10:00 +0000 (11:10 +0200)]
check: Added gst_check_setup_events_with_stream_id()

Added a new function gst_check_setup_events_with_stream_id(), since
gst_check_setup_events() does not work with multiple pads.

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

11 years agopad: Don't consider flushing pads as needing reconfiguration
Sebastian Dröge [Sun, 30 Jun 2013 16:39:03 +0000 (18:39 +0200)]
pad: Don't consider flushing pads as needing reconfiguration

Renegotiation and reconfiguration will fail because all queries
and events won't be accepted by the pad if it's flushing. In the
best case this just causes unneeded work and spurious warnings in
the debug logs, in the worst case it causes elements to fail completely.

11 years agoqueue2: only block serialized query when it's safe
Wim Taymans [Mon, 24 Jun 2013 21:25:51 +0000 (23:25 +0200)]
queue2: only block serialized query when it's safe

We must be certain that we don't cause a deadlock when blocking the serialized
queries. One such deadlock can happen when we are buffering and downstream is
blocked in preroll and a serialized query arrives. Downstream will not unblock
(and allow our query to execute) until we complete buffering and buffering will
not complete until we can answer the query..

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

11 years agopad: Add a filter to the caps_query done by acceptcaps
Sjoerd Simons [Wed, 19 Jun 2013 10:30:47 +0000 (12:30 +0200)]
pad: Add a filter to the caps_query done by acceptcaps

Use the caps that the pad is asked to accept as filter for the query

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

11 years agobasetransform: optimize default acceptcaps implementation
Sjoerd Simons [Wed, 19 Jun 2013 10:19:02 +0000 (12:19 +0200)]
basetransform: optimize default acceptcaps implementation

Pass the fixed caps we're asked to accept as a filter for the caps
query, so we don't get a fully-expanded set of caps back (which we don't
need and can take a lot of time for intersection).

This reduces the time for camerabin to produce a second frame on a
logitech C910 camera from around 52 seconds to a bit less then 16
seconds on my system.

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

11 years agotaglist: Avoid combinatorial explosion when merging tags
Edward Hervey [Wed, 19 Jun 2013 07:19:53 +0000 (09:19 +0200)]
taglist: Avoid combinatorial explosion when merging tags

When appending/prepending tags, avoid re-creating (and copying) lists if we already
have one and instead just append/prepend the GValue to the list.

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

11 years agoqueue: Don't hold the queue mutex while doing serialized queries downstream
Sebastian Dröge [Wed, 19 Jun 2013 08:53:21 +0000 (10:53 +0200)]
queue: Don't hold the queue mutex while doing serialized queries downstream

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

11 years agobuffer: Add unit test for map_range()
Sebastian Dröge [Wed, 19 Jun 2013 08:45:45 +0000 (10:45 +0200)]
buffer: Add unit test for map_range()

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

11 years agobuffer: Fix wrong size/index handling when merging memory
Paul HENRYS [Wed, 19 Jun 2013 06:36:22 +0000 (08:36 +0200)]
buffer: Fix wrong size/index handling when merging memory

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

11 years agodocs: add missing file for doc-link check
Stefan Sauer [Tue, 18 Jun 2013 09:39:55 +0000 (11:39 +0200)]
docs: add missing file for doc-link check

11 years agotests: add stress test for buffers and pools
Wim Taymans [Mon, 17 Jun 2013 09:12:51 +0000 (11:12 +0200)]
tests: add stress test for buffers and pools

11 years agobasesink: call state change in all cases
Wim Taymans [Mon, 17 Jun 2013 08:25:20 +0000 (10:25 +0200)]
basesink: call state change in all cases

When we asynchronously go from READY to PLAYING, also call the
state change function so that subclasses can update their state for PLAYING.
Because the PREROLL lock is not recursive, we can't make this without
races and we must assume for now that the subclass can handle concurrent calls
to PAUSED->PLAYING and PLAYING->PAUSED. We can make this assumption because not
many elements actually do something in those state changes and the ones that
did would be broken even more without this change.

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

11 years agodocs: fix some external links
Stefan Sauer [Sun, 16 Jun 2013 13:07:35 +0000 (15:07 +0200)]
docs: fix some external links

11 years agodocs: check for broken links in docs
Stefan Sauer [Sun, 16 Jun 2013 12:45:08 +0000 (14:45 +0200)]
docs: check for broken links in docs

The check is done using curl (if available). It lists the curl exit code + http
status code (for those > 399) together with the use of the url in the code. The
check is not fatal.

11 years agodocs: change https to http urls
Stefan Sauer [Sun, 16 Jun 2013 11:05:21 +0000 (13:05 +0200)]
docs: change https to http urls

Thank you browser for needlessly changing to https for static doc pages.

11 years agodocs: update links to developer.gnome.org
Stefan Sauer [Sun, 16 Jun 2013 09:41:52 +0000 (11:41 +0200)]
docs: update links to developer.gnome.org

The URL layout has changed. Fix the links and comment out one paragraph where
the doc is gone.
Fixes #702135

11 years agostructure: Add gst_structure_new_from_string()
Sebastian Dröge [Fri, 14 Jun 2013 11:05:38 +0000 (13:05 +0200)]
structure: Add gst_structure_new_from_string()

Convenience API for bindings, gst_structure_from_string() returns
a tuple (structure, end_ptr) in bindings and is unintuitive to use
because of that.

11 years agogst: Don't intercept --help in gst_init()
Hans de Goede [Thu, 13 Jun 2013 06:36:23 +0000 (08:36 +0200)]
gst: Don't intercept --help in gst_init()

Before this patch gst_init would intercept --help, causing for example
cheese's --help to look like this:

[hans@shalem cheese]$ cheese --help
Usage:
  cheese [OPTION...] - GStreamer initialization

Help Options:
  -h, --help                        Show help options
  --help-all                        Show all help options
  --help-gst                        Show GStreamer Options

gst_init is the only gfoo_init function which does this.

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

11 years agogst-uninstalled: add uridownloader lib in -bad to search paths
Tim-Philipp Müller [Wed, 12 Jun 2013 08:45:56 +0000 (09:45 +0100)]
gst-uninstalled: add uridownloader lib in -bad to search paths

Even if it might not be around for long.

11 years agogst-launch: Remove unref that should not be there
Sebastian Dröge [Tue, 11 Jun 2013 08:25:02 +0000 (10:25 +0200)]
gst-launch: Remove unref that should not be there

We keep a reference to the context around all the time.

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

11 years agogst-launch: Improve GstContext handling
Sebastian Dröge [Sun, 9 Jun 2013 15:20:22 +0000 (17:20 +0200)]
gst-launch: Improve GstContext handling

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

11 years agowin32: Don't include gstcollectpads.c twice
Kim Lam [Fri, 7 Jun 2013 11:07:37 +0000 (13:07 +0200)]
win32: Don't include gstcollectpads.c twice

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

11 years agoinput-selector: send notify::active signal for input-selector pads.
Brendan Long [Fri, 31 May 2013 15:39:55 +0000 (09:39 -0600)]
input-selector: send notify::active signal for input-selector pads.

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

11 years agobasesrc: Only force-update the duration for dynamic sources when doing the DURATION...
Sebastian Dröge [Thu, 6 Jun 2013 14:46:12 +0000 (16:46 +0200)]
basesrc: Only force-update the duration for dynamic sources when doing the DURATION query

Doing it after every single create() is not very efficient and not necessary.
Especially on network file systems fstat() is not cached and causes network
traffic, making the source possibly unusable slow.

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