Arun Raghavan
387f533a07
pulsesink: Fix deadlock if connecting to PA fails
...
Commit dd4ec22e
introduced a deadlock in the failure path while trying
to connect to PulseAudio. This makes sure we drop the lock on the
resource mutex to avoid this.
https://bugzilla.gnome.org/show_bug.cgi?id=644510
2011-03-11 23:19:34 +05:30
Stefan Kost
9bfa7defdf
tests: order state-test blacklist and add jack elements
...
Jack audio src/sink elements recently got moved from bad and should be excluded
from the test (like the other device specific source and sinks).
Fixes #644288
2011-03-11 17:01:03 +02:00
Sebastian Dröge
9e44fff3db
dvdemux: Chain up to the parent class' ::send_event for non-seek events
2011-03-11 13:48:33 +01:00
Sebastian Dröge
bc6c1bbbab
dvdemux: Fix refcount issues with the seek event
...
Fixes bug #642963 .
2011-03-11 13:48:32 +01:00
Tim-Philipp Müller
14e1d9de3d
docs: fix pulsesink gtk-doc markup
2011-03-11 09:54:36 +00:00
Philippe Normand
9544622674
jack: fix build against jack 0.120.2
...
jack_port_get_total_latency() has been deprecated in favor of
jack_port_get_latency_range().
https://bugzilla.gnome.org/show_bug.cgi?id=644477
2011-03-11 09:48:36 +00:00
Stefan Kost
32afdea96d
spectrum: more comments and tune and logging
2011-03-10 14:29:25 +02:00
Stefan Kost
1a32265b51
spectrum: avoid unneccesary extra fft runs
...
Before it was possible that we run an extra fft when the time for sending a new
message is due. Only do this if we have not run the fft for the interval at all.
2011-03-10 14:15:42 +02:00
Stefan Kost
f1785b0e4a
spectrum: only scale the vectors that we are processing
...
Phase is not produced by default, so lets not scale it unconditionally to save a
few cycles.
2011-03-10 14:12:01 +02:00
Stefan Kost
5bf267c485
spectrum: put number of channels to instance variable
...
When freeing data the format might have changed. Thus we need to remember for
which format we allocated memory.
2011-03-10 14:10:25 +02:00
Stefan Kost
dc1fe1d77f
spectrum: update doc review stamp
2011-03-10 10:27:41 +02:00
Stefan Kost
b792b100e2
spectrum: use function pointers for data readers
...
Don't check the format for each sample frame to read. We can make that decission
in _setup already. This is still not ideal as we call the function per frame.
Ideally we determine how many samples we can copy and have a loop in the input
reader. As an alternative we might also consider to use the fft variants for the
various formats and not convert to float for all cases - we would still need to
mix or deinterleave though.
2011-03-10 10:27:41 +02:00
Mark Nauwelaerts
2738917852
rtspsrc: improve recovery from failed seek
...
In case server-side fails to perform seek, i.e. PLAY at non-zero requested
position, recovery so far would arrange for streaming to continue, albeit
having lost position tracking in the process. So, query position prior
to seek and use upon failed seek.
2011-03-09 17:18:09 +01:00
Mark Nauwelaerts
6bc1aa0e59
jitterbuffer: handle position query
2011-03-09 17:18:08 +01:00
Stefan Kost
c622477a92
spectrum: multi-channel support
...
Add a boolean multi-channel property with a default of FALSE. When set to TRUE
the element won't mix all input channels to mono, but instead run a FFT on each
channel. In that case the result message would contain a 2 dimensional array
of channel x data for magnitude and phase.
API: GstSpectrum:multi-channel
https://bugzilla.gnome.org/show_bug.cgi?id=593482
2011-03-09 17:01:47 +02:00
Stefan Kost
832aac534a
spectrum: more xrefs in the docs
2011-03-09 17:00:58 +02:00
Stefan Kost
65f4c4b3e6
spectrum: factor out the code that accumulated samples into the ring-buffer
...
Use a separate function to read a sample frame into a ringbuffer slot. In the
future we can use format-specific function pointer to avoid the reoccuring
format checks.
2011-03-09 17:00:58 +02:00
Stefan Kost
5b9028c52c
spectrum: pull format to temp var to improve readability of lines using it
2011-03-09 17:00:58 +02:00
Stefan Kost
b60675acaf
spectrum: code cleanup for copying data to ring-buffer
...
Rename fp to is_float and restructure if-else part for handling the different formats.
2011-03-09 17:00:58 +02:00
Stefan Kost
787aca6898
spectrum: add a GstSpecrtumChannel context structure
...
We now keep the fft data that is related to one channel in a separate structure
to prepare for multichannel support. We also refactor the code to operate more
often on the channel context.
2011-03-09 17:00:57 +02:00
Stefan Kost
2fd09ebd89
spectrum: call the instance var spectrum instead of filter
2011-03-09 17:00:57 +02:00
Stefan Kost
d8d6a3b79e
spectrum: don't value we already took from the gvalue
2011-03-09 17:00:57 +02:00
Tim-Philipp Müller
d0c5b86727
Merge ad-hoc release branch '0.10.28'
2011-03-08 16:33:44 +00:00
Tim-Philipp Müller
a4e1b18b65
Release 0.10.28
...
Ad-hoc release to fix build issue with newer kernels.
2011-03-08 15:47:52 +00:00
Tim-Philipp Müller
545774d7d0
v4l2: remove unnecessary linux/videodev.h include
...
Causes compilation issues with newer kernel headers where the old
v4l interface has been removed.
https://bugzilla.gnome.org/show_bug.cgi?id=643716
2011-03-08 14:39:25 +00:00
Mark Nauwelaerts
1f7f434df6
jitterbuffer: also estimate eos if very near eos
2011-03-07 16:56:43 +01:00
Mark Nauwelaerts
3c9a4239bf
jitterbuffer: avoid trying to buffer more than is available.
...
That is, in case of short (or near eos of) stream, deadlock (until timeout)
would occur trying to buffer more than is yet forthcoming.
2011-03-07 16:56:18 +01:00
Mark Nauwelaerts
f84b8a69cb
jitterbuffer: reset element base_time upon flush
...
... to arrange for properly scheduled timeout (following seek).
2011-03-07 11:07:12 +01:00
Sebastian Dröge
1a8aa16612
cairooverlay: Add a bus handler to the example to handle EOS/ERROR/WARNING
...
Also clean up the pipeline properly.
2011-03-07 10:54:22 +01:00
Sebastian Dröge
7f85827bf7
examples: Always dist the cairo example
2011-03-07 10:47:23 +01:00
Sebastian Dröge
8b9183c633
cairooverlay: Use LDADD instead of LDFLAGS for libs and add $(GST_LIBS)
2011-03-07 10:46:12 +01:00
Jon Nordby
92808b1010
cairooverlay: Remove unnecessary gtk/gtk-x11 use in example.
...
This removes code, and allows the example to be used on any platform.
Fixes bug #643981 .
2011-03-07 10:44:48 +01:00
David Schleef
910a6f0c96
v4l2: Use #ifdefs for V4L2_PIX_FMT_PJPG
...
It's only recently added to kernel headers.
2011-03-04 18:38:39 -08:00
Mark Nauwelaerts
b69c605c2c
wavparse: tune output max buffer size to material
...
... to avoid ending up with tons of short time buffers for e.g. high sample
rate audio.
2011-03-04 18:43:29 +01:00
Stefan Kost
89914439b7
pulsesink: add a doc example for setting stream-properties
2011-03-04 15:50:49 +02:00
Stefan Kost
edfa99ef31
pulsesink: fix the xml in the docs
2011-03-04 15:50:49 +02:00
Tim-Philipp Müller
0cd62a10ad
v4l2: remove unnecessary linux/videodev.h include
...
Causes compilation issues with newer kernel headers where the old
v4l interface has been removed.
https://bugzilla.gnome.org/show_bug.cgi?id=643716
2011-03-03 17:37:19 +00:00
Sebastian Dröge
08232b470e
cairooverlay: The example always requires gtk-x11
...
Check for gtk-x11 and only build the example if it's available.
2011-03-02 23:21:15 +01:00
Sebastian Dröge
fdbdbfefd2
cairooverlay: Some minor cleanup
2011-03-02 23:14:36 +01:00
Sebastian Dröge
6810b1bab9
docs: Update inspected plugin data
2011-03-02 23:09:21 +01:00
Jon Nordby
32dff9df75
cairooverlay: Add generic Cairo overlay video element.
...
Allows applications to connect to the "draw" signal of
the element and do their custom drawing there.
Includes an example application demonstrating usage.
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=595520
2011-03-02 22:55:52 +01:00
Stefan Kost
3ec3bed497
monoscope: don't leak the monoscope_state data
...
The monoscope_close() implementation was empty.
2011-03-02 13:01:45 +02:00
Stefan Kost
7bc3344131
monoscope: we have 64 colors, don't access colors[64]
...
Fixes remaining invalid read.
2011-03-02 13:01:45 +02:00
Mark Nauwelaerts
0ffd4ff8c0
qtdemux: arrange for non-fatal error when parsing non-vital parts
2011-03-02 10:26:46 +01:00
Stefan Kost
d2ee8b979d
monoscope: stack needs to be size+1 as we put a end-marker into it
...
Valgrind is still complaining about one bad read, but this takes care of the
crash mentioned in the comment and in bug #564122 .
2011-03-02 10:56:33 +02:00
Stefan Kost
4e9daf0e49
example: fix the variable name for the ip-address
...
Fix the name in the launch pipeline and use a value of "localhost" by default.
2011-03-01 22:40:19 +02:00
Mark Nauwelaerts
1ccadf5c30
configure.ac: cygwin/mingw; enable plugin linking to static lib
...
Useful for DirectX plugin(s).
Fixes #642507 .
2011-02-28 19:23:46 +01:00
Mark Nauwelaerts
ac6535560e
configure.ac: export plugin description more platform independent
...
Fixes #642504 .
2011-02-28 19:13:41 +01:00
Mark Nauwelaerts
a48fffedbf
Automatic update of common submodule
...
From 1de7f6a to 6aec6b9
2011-02-28 18:32:54 +01:00
Philip Jägenstedt
dd4ec22e7e
pulsesink: release pa_shared_resource_mutex before pa_threaded_mainloop_wait
...
Not doing so can result in a deadlock when two threads enter
gst_pulseringbuffer_open_device at the same time, as
pa_threaded_mainloop_wait releases the mainloop lock while waiting,
allowing another thread to take it, resulting in a deadlock as two
threads waits for the lock the other is holding.
https://bugzilla.gnome.org/show_bug.cgi?id=643087
2011-02-28 16:20:22 +05:30