Wim Taymans [Thu, 19 Mar 2009 18:03:25 +0000 (19:03 +0100)]
playbin2: remove the group cond + cleanups
Remove the group GCond that we used for waiting for groups to finish because we
use pad blocking on the selectors and counters instead for waiting for the
groups to complete.
remove the obsolete about_to_finish variable set while emiting the
about-to-finish signal and fix some old comments.
We don't need to take the playbin lock when querying the uridecodebin.
Wim Taymans [Wed, 18 Mar 2009 09:45:50 +0000 (10:45 +0100)]
icles: print better error and warning messages
--
Sebastian Dröge [Tue, 17 Mar 2009 21:53:44 +0000 (22:53 +0100)]
rtsp: Use GLib base64 functions and deprecate gst_rtsp_base64_encode
This also fixes another instance of CVE-2008-4316.
Wim Taymans [Tue, 17 Mar 2009 18:53:44 +0000 (19:53 +0100)]
oggdemux: report -1 for duration in push mode
In push mode we must return TRUE from the duration query with a value of -1
meaning that we know that we don't know the duration.
Wim Taymans [Tue, 17 Mar 2009 18:09:02 +0000 (19:09 +0100)]
decodebin2: add extra dynamic ref for demuxers
When we make a group connected to a demuxer, keep an extra dynamic refcount for
the group which is only decremented when no_more_pads or a multiqueue overrun is
detected. This way we avoid a race between exposing the group while more dynamic
refs are added from new pads.
Fixes #575588.
Wim Taymans [Tue, 17 Mar 2009 14:39:23 +0000 (15:39 +0100)]
playbin2: sync state of the sink correctly
Sync the state of the newly added chains to the state of the parent sink element
to avoid lost async-start messages. Fixes cdda:// async-done message storm.
Wim Taymans [Tue, 17 Mar 2009 10:54:40 +0000 (11:54 +0100)]
playbin2: return NOT_LINKED for unselected streams
When streams are not selected in the selector, return NOT_LINKED so that
upstream elements can skip decoding. Only do this for audio and video pads
because for text streams the overhead is smaller and they could come from
external files.
Wim Taymans [Tue, 17 Mar 2009 10:51:58 +0000 (11:51 +0100)]
playbin: set custom text sink properties
Set the custom sink async=FALSE to not make it participate in preroll because we
are dealing with sparse streams.
Try to set sync=TRUE on the custom text sink.
Wim Taymans [Tue, 17 Mar 2009 10:30:58 +0000 (11:30 +0100)]
example: use appsink instead of fakesink
Use appsink instead of fakesink to get the subtitles.
Make things more pretty.
Wim Taymans [Tue, 17 Mar 2009 10:24:00 +0000 (11:24 +0100)]
examples: add example of intercepting subtitles
Add an example of how to install a custom sink for receiving subtitles in
playbin2.
Wim Taymans [Tue, 17 Mar 2009 10:03:57 +0000 (11:03 +0100)]
tests: fix include in the appsink test
Fix dist by doing the right include.
Wim Taymans [Mon, 16 Mar 2009 15:42:18 +0000 (16:42 +0100)]
playbin2: don't try to set invalid stream numbers
Fix a problem with setting the stream numbers because we check for the wrong
range.
See #575239.
Wim Taymans [Mon, 16 Mar 2009 15:16:30 +0000 (16:16 +0100)]
playbin2: release the shutdown lock
Release the shutdown lock when we wait for other groups to complete or else we
have a deadlock when the other group completes and tries to grab the shutdown
lock.
Fixes #575550.
Wim Taymans [Mon, 16 Mar 2009 14:31:44 +0000 (15:31 +0100)]
examples: fix g_object_set() value type.
Make sure we cast the length value as a gint64 to the vararg g_object_set() just
incase sizeof(gsize) != sizeof(gint64).
Tim-Philipp Müller [Sun, 15 Mar 2009 19:57:36 +0000 (19:57 +0000)]
typefinding: make flac typefinder return lower probability for frame headers
The flac frame header typefinder overstates the likelihood of a match, leading
to false positives with e.g. aac streams and PDF files. Reduce probabilty
returned from LIKELY to POSSIBLE for the frame header matchin code.
Fixes #574939.
Tim-Philipp Müller [Wed, 11 Mar 2009 12:59:05 +0000 (12:59 +0000)]
typefinding: improve image/bmp typefinder
Detect more variations and also bail out in more cases where the values
don't make sense. Furthermore, add width/height and bpp to the caps,
because we can.
Jan Schmidt [Fri, 13 Mar 2009 15:22:42 +0000 (15:22 +0000)]
check: Ignore alsamixer in the states test too
Jan Schmidt [Fri, 13 Mar 2009 15:22:11 +0000 (15:22 +0000)]
v4lsrc: Fix some valgrind warnings about leaked memory and uninitialised data.
Wim Taymans [Fri, 13 Mar 2009 15:19:41 +0000 (16:19 +0100)]
rtsp: fix resolving of hostnames
We were returning a pointer to a stack variable with the resolved hostname,
which doesn't work.
return a copy of the resolved ip address instead.
Fixes #575256.
Wim Taymans [Fri, 13 Mar 2009 14:29:29 +0000 (15:29 +0100)]
vorbisparse: be smarter when queueing headers
Look at the first buffer byte to see if a buffer is a header instead of counting
packets.
Wim Taymans [Fri, 13 Mar 2009 14:27:51 +0000 (15:27 +0100)]
theoraparse: be smarter when queuing headers
Look at the first byte of the buffer data (if we can) to decide if the packet is
a header packet or not instead of counting packets.
Wim Taymans [Fri, 13 Mar 2009 14:26:40 +0000 (15:26 +0100)]
oggdemux: add some debug info
Add some debug info to log when the seek worked.
Wim Taymans [Fri, 13 Mar 2009 14:14:37 +0000 (15:14 +0100)]
appsrc: release lock in _eos flushing case
Release the mutex when we are flushing in gst_app_src_end_of_stream()
Fixes #574964.
Jan Schmidt [Fri, 13 Mar 2009 11:49:10 +0000 (11:49 +0000)]
vorbisdec: Avoid an unnecessary memory allocation in vorbiscomment handling.
Jan Schmidt [Fri, 13 Mar 2009 11:48:28 +0000 (11:48 +0000)]
theoradec: Avoid an unnecessary memory allocation in vorbiscomment handling.
Wim Taymans [Thu, 12 Mar 2009 17:27:25 +0000 (18:27 +0100)]
playbin2: fix raw elements like cdda://
Fix a fixme with a one liner and make cd playback work again.
Wim Taymans [Thu, 12 Mar 2009 16:47:41 +0000 (17:47 +0100)]
playbin2: improve subtitle handling
Add property to playbin2 to configure a custom sink that receives the raw
subtitle buffers instead of using a textoverlay.
Improve the property finding code to make it more usable.
Use property find code to find async properties in custom sinks that are bins.
Improve text overlay code to gracefully handle missing elements.
Jan Schmidt [Tue, 24 Feb 2009 15:58:42 +0000 (15:58 +0000)]
vorbistag: Protect memory allocation calculation from overflow.
Patch by: Tomas Hoger <thoger@redhat.com> Fixes CVE-2009-0586
Jan Urbanski [Thu, 12 Mar 2009 11:34:20 +0000 (11:34 +0000)]
Spec: fix up deps
Wim Taymans [Wed, 11 Mar 2009 17:45:59 +0000 (18:45 +0100)]
rtsp: fix parsing of the timeout parameter
--
Wim Taymans [Wed, 11 Mar 2009 15:20:20 +0000 (16:20 +0100)]
rtsp: fix g_return condition
when parsing a data message, we require a data message.
Tim-Philipp Müller [Wed, 11 Mar 2009 13:33:33 +0000 (13:33 +0000)]
typefinding: flac typefinder fixes
Use scan context for initial peek as well. Peek 6 bytes in the initial
peek rather than 5 bytes, to match the length of the memcmp we're doing
on that data later. Return immediately when we found caps from looking
at the beginning of the data - no point in continuing to scan the next
64kB for something matching a frame header.
Wim Taymans [Wed, 11 Mar 2009 13:08:10 +0000 (14:08 +0100)]
rtsp: free the right string.
Free the key value before we remove the header item from the array. The item we
retrieved from the array is only valid until we remove it from the array.
Wim Taymans [Wed, 11 Mar 2009 13:07:05 +0000 (14:07 +0100)]
rtsp: keep track of amount of decoded bytes
Keep track of the actual amount of decoded bytes, which can be less than 3 when
we decode the last bits of a base64 message.
Stefan Kost [Tue, 10 Mar 2009 19:00:26 +0000 (21:00 +0200)]
adder: log details in getcaps like in setcaps
Tim-Philipp Müller [Tue, 10 Mar 2009 13:11:09 +0000 (13:11 +0000)]
win32: update MANIFEST, fixing 'make dist'
Jan Schmidt [Mon, 9 Mar 2009 23:12:00 +0000 (23:12 +0000)]
Automatic update of common submodule
From 7032163 to f8b3d91
Jonathan Matthew [Mon, 9 Mar 2009 15:19:40 +0000 (16:19 +0100)]
typefind: add photoshop typefind functions
Add photoshop typefind functions.
Fixes #574516.
Wim Taymans [Mon, 9 Mar 2009 14:46:21 +0000 (15:46 +0100)]
decodebin2: only remove pads that were added
Flag pads that were added so that we can see if we need to remove them later or
not.
Wim Taymans [Mon, 9 Mar 2009 12:53:41 +0000 (13:53 +0100)]
rtsp: only add ports when not using TCP
Only add the port numbers in the transport string when we are using udp or
multicast.
Wim Taymans [Mon, 9 Mar 2009 12:53:15 +0000 (13:53 +0100)]
rtsp: use gstreamer dump mem
--
Wim Taymans [Mon, 9 Mar 2009 12:51:48 +0000 (13:51 +0100)]
rtsp: use glib base64 encoder
--
Mark Nauwelaerts [Fri, 6 Mar 2009 18:28:37 +0000 (19:28 +0100)]
Unblock blocked ghostpads when shutting down. Fixes #574293.
Edward Hervey [Mon, 9 Mar 2009 09:03:13 +0000 (10:03 +0100)]
Riff: Add mapping for Fraps video codec.
Found through insanity testrun. Confirmed mapping in libavformat.
Edward Hervey [Mon, 9 Mar 2009 08:07:13 +0000 (09:07 +0100)]
riff: Add the 'DVR ' mapping for mpeg2video.
Found this in 3 files from the insanity suite and mapping is also present
in libavformat.
Edward Hervey [Mon, 9 Mar 2009 08:06:40 +0000 (09:06 +0100)]
typefind: Use the proper data pointer instead of poking random memory.
LRN [Sun, 8 Mar 2009 17:17:48 +0000 (18:17 +0100)]
rtsp: fix compilation on windows.
Remove unused variable when building for windows.
Fixes #574443.
Sebastian Dröge [Sun, 8 Mar 2009 11:03:22 +0000 (12:03 +0100)]
Automatic update of common submodule
From ffa738d to 7032163
Sebastian Dröge [Sun, 8 Mar 2009 10:19:00 +0000 (11:19 +0100)]
Automatic update of common submodule
From 3f13e4e to ffa738d
Sebastian Dröge [Sat, 7 Mar 2009 10:44:40 +0000 (11:44 +0100)]
Automatic update of common submodule
From 3c7456b to 3f13e4e
Sebastian Dröge [Sat, 7 Mar 2009 09:44:43 +0000 (10:44 +0100)]
Automatic update of common submodule
From 57c83f2 to 3c7456b
Wim Taymans [Fri, 6 Mar 2009 18:02:58 +0000 (19:02 +0100)]
theoradec: parse and use codec_data in the caps
Parse the codec_data in the caps and use this as the headers.
Fixes #574169.
Wim Taymans [Fri, 6 Mar 2009 17:53:17 +0000 (18:53 +0100)]
riff: add theora mapping
Add theora mappings. See #574169.
Wim Taymans [Fri, 6 Mar 2009 15:31:29 +0000 (16:31 +0100)]
rtsp: Add methods for getting the read/write fds
API:gst_rtsp_connection_get_readfd()
API:gst_rtsp_connection_get_writefd()
Tim-Philipp Müller [Fri, 6 Mar 2009 10:35:01 +0000 (10:35 +0000)]
win32: indent copied *-enumtypes.c files in make win32-update
Tim-Philipp Müller [Fri, 6 Mar 2009 10:35:56 +0000 (10:35 +0000)]
win32: update MANIFEST
Tim-Philipp Müller [Fri, 6 Mar 2009 10:30:28 +0000 (10:30 +0000)]
win32: fix configure logic for GST_INSTALL_PLUGINS_HELPER define
Tim-Philipp Müller [Fri, 6 Mar 2009 10:05:11 +0000 (10:05 +0000)]
win32: update windows files via make win32-update
Updates win32 files using the new system/hook, and defines HAVE_PROCESS_H,
which fixes the build of pbutils on windows (#574319).
Tim-Philipp Müller [Fri, 6 Mar 2009 10:03:31 +0000 (10:03 +0000)]
gitignore: ignore more
Julien Moutte [Fri, 6 Mar 2009 09:37:38 +0000 (10:37 +0100)]
Fix build on Mac OS X
Michael Smith [Thu, 5 Mar 2009 23:42:23 +0000 (15:42 -0800)]
decodebin2: don't stay connected to notify::caps after negotiation
Disconnect the notify::caps signal in our callback (it'll be re-added
if we're not, in fact, finished getting complete caps). Ensures that
caps changes mid-stream (e.g. from an mp3 that changes from
stereo->mono mid-file) don't cause us to try to add a new pad.
Wim Taymans [Thu, 5 Mar 2009 12:48:37 +0000 (13:48 +0100)]
rtsp: fix parsing of 'now-' ranges.
--
Wim Taymans [Thu, 5 Mar 2009 11:43:02 +0000 (12:43 +0100)]
examples: add some more sprinkle examples
Add some more sprinle examples and add some more comments.
See #574160.
Wim Taymans [Thu, 5 Mar 2009 10:57:40 +0000 (11:57 +0100)]
docs: add appsrc symbols to standard section
--
Stefan Kost [Thu, 5 Mar 2009 10:27:16 +0000 (12:27 +0200)]
adder: add variants for unsigned to fix warnings for unneeded check
For unsigned int out+in can't be < 0.
Stefan Kost [Thu, 5 Mar 2009 08:58:12 +0000 (10:58 +0200)]
subparse: use the right variable in debug log, encoding is not yet initialized
Stefan Kost [Thu, 5 Mar 2009 08:51:25 +0000 (10:51 +0200)]
v4l: add a fixme for broken code, that someone who has a v4l tuner device should fix
Stefan Kost [Thu, 5 Mar 2009 08:39:33 +0000 (10:39 +0200)]
audioresample: add missing break in event handling, remove dead code
Wim Taymans [Wed, 4 Mar 2009 15:24:01 +0000 (16:24 +0100)]
rtsp: do some more cleanup in _close
Do som more cleanup in gst_rtsp_connection_close() so that it's back into the
unconnected state as it was allocated.
Wim Taymans [Wed, 4 Mar 2009 15:11:20 +0000 (16:11 +0100)]
rtsp: fix the memory management of the url
Constify the url parameter in _create.
Make a copy of the url stored in the connection.
Free the url when the connection is freed.
Wim Taymans [Wed, 4 Mar 2009 11:21:29 +0000 (12:21 +0100)]
RTSP: Add support for server tunneling
Save the tunnelid in the connection. Add a method to retrieve the tunnelid so
that a server can store and match the id against other tunnel requests.
Fix the URI in the tunnel requests so that they contain the absolute uri and the
query string if any instead of just the hostname.
Transparently base64 decode the input stream when tunneling.
Add method to set the connection ip address so that it can be included in the
tunnel response.
Add method to connect the two tunnel requests.
Add two callbacks for the async mode to notify a tunnel start and tunnel
complete event.
Add method to reset the watch after the connection has been tunneled.
Various little refactoring to make more stuff reusable.
API: RTSP::gst_rtsp_connection_set_ip()
API: RTSP::gst_rtsp_connection_get_tunnelid()
API: RTSP::gst_rtsp_connection_do_tunnel()
API: RTSP::gst_rtsp_watch_reset()
Wim Taymans [Wed, 4 Mar 2009 11:18:00 +0000 (12:18 +0100)]
rtsp: add new defines for tunneling
Add two more result codes for tunneling support.
Wim Taymans [Wed, 4 Mar 2009 11:12:06 +0000 (12:12 +0100)]
rtsp: remove , from last enum member
Remove , from last enum member to improve compatibility with other compilers.
LRN [Sat, 28 Feb 2009 23:23:20 +0000 (15:23 -0800)]
subparse: Convert regex code to GRegex code
Fixes: #572993. Patch author prefers to use an alias, contact
ds if you actually need a real name.
Signed-off-by: David Schleef <ds@schleef.org>
Wim Taymans [Mon, 2 Mar 2009 15:13:33 +0000 (16:13 +0100)]
rtsp: remove debugging g_message
--
Wim Taymans [Mon, 2 Mar 2009 15:03:49 +0000 (16:03 +0100)]
RTSP: add support for Quicktime tunneled RTSP
Add support for tunneling RTSP over HTTP.
Fix documentation some more.
See also #573173.
API: RTSP:gst_rtsp_connection_is_tunneled()
API: RTSP:gst_rtsp_connection_set_tunneled()
Wim Taymans [Mon, 2 Mar 2009 14:48:56 +0000 (15:48 +0100)]
RTSP: parse rtsph uris as RTSP tunneled over HTTP
Add transport define for RTSP tunneled over HTTP.
Parse rtsph:// uris as tunneled HTTP over TCP.
API: GstRTSPLowerTrans::GST_RTSP_LOWER_TRANS_HTTP
See also #573173.
Edward Hervey [Mon, 2 Mar 2009 11:48:18 +0000 (12:48 +0100)]
win32: Add gst_rtsp_connection_get_url definition
No, I'm not wim's buildslave, seriously.
Wim Taymans [Mon, 2 Mar 2009 09:58:49 +0000 (10:58 +0100)]
rtsp: add _get_url method and separate sockets
Add gst_rtsp_connection_get_url() method.
Reserve space for 2 sockets, one for reading and one for writing. Use socket
pointers to select the read and write sockets. This should allow us to implement
tunneling over HTTP soon.
API: RTSP::gst_rtsp_connection_get_url()
Tim-Philipp Müller [Sun, 1 Mar 2009 18:31:17 +0000 (18:31 +0000)]
app: force automatic rebuild of gstapp-marshal.[ch] after previous change
The previous change to appsrc/appsink requires people to 'make clean'
to get the marshallers rebuilt (causing a build failure otherwise).
Change some lines in the .list file around to force a rebuild of
these files automatically.
David Schleef [Sat, 28 Feb 2009 19:07:04 +0000 (11:07 -0800)]
Bump glib requirement to 2.14
LRN [Sat, 28 Feb 2009 18:37:53 +0000 (19:37 +0100)]
gio: Use correct format modifier for size_t
Fixes bug #573528.
LRN [Sat, 28 Feb 2009 18:35:33 +0000 (19:35 +0100)]
rtspconnection: Use correct types for some functions on Win32
Fixes bug #573529.
Edward Hervey [Sat, 28 Feb 2009 12:11:59 +0000 (13:11 +0100)]
rtspconnection: Fix warning about using unitialized value.
Edward Hervey [Sat, 28 Feb 2009 11:41:28 +0000 (12:41 +0100)]
riff: Add more codec mappings.
This comes mostly from a review of ffmpeg/libavformat/riff.c
Stefan Kost [Fri, 27 Feb 2009 09:14:25 +0000 (11:14 +0200)]
alsa: release pcminfo after the strdup
Stefan Kost [Thu, 26 Feb 2009 15:38:47 +0000 (17:38 +0200)]
rtsprange: don't leak the range in case of parsing error.
Free the gstRTSPTimeRange if we don't return it. Also simplify
gst_rtsp_range_free() as it is valid to pass NULL to g_free().
Stefan Kost [Thu, 26 Feb 2009 14:47:39 +0000 (16:47 +0200)]
alsa: cleanup name lookup.
We can break, once we have a name to make sure, we won't read it ever twice.
Stefan Kost [Thu, 26 Feb 2009 14:09:03 +0000 (16:09 +0200)]
subparse: don't leak line, if flushing
Stefan Kost [Thu, 26 Feb 2009 14:03:39 +0000 (16:03 +0200)]
giosink: reflow error handling to not leak uri
Stefan Kost [Thu, 26 Feb 2009 13:53:10 +0000 (15:53 +0200)]
ffmpegcolorspace: remove unused code/variables
Stefan Kost [Thu, 26 Feb 2009 10:10:47 +0000 (12:10 +0200)]
ximagesink: use GST_FLOW_NOT_NEGOTIATED for partial caps
Wim Taymans [Thu, 26 Feb 2009 15:44:53 +0000 (16:44 +0100)]
app: add callbacks to appsrc, cleanups
Add a uri handler to appsink.
don't emit signals when we have installed callbacks on appsink.
Add callbacks to appsrc to replace the signals.
Add property to disable callbacks in appsrc, default to TRUE for backwards
compatibility but disable when callbacks are installed.
API: GstAppSrc::emit-signals
API: GstAppSrc::gst_app_src_set_emit_signals()
API: GstAppSrc::gst_app_src_get_emit_signals()
API: GstAppSrc::gst_app_src_set_callbacks()
Wim Taymans [Thu, 26 Feb 2009 10:42:44 +0000 (11:42 +0100)]
Appsink: add padding for callbacks + docs
Add some padding to the callbacks structure just to be safe.
Remove the now invisible marshaller methods from the docs.
Fix a comment in the unit test.
Edward Hervey [Thu, 26 Feb 2009 08:52:59 +0000 (09:52 +0100)]
win32: Add new libgstapp symbol
Stefan Kost [Thu, 26 Feb 2009 08:07:21 +0000 (10:07 +0200)]
docs: clean section.txt file.
Add appsrc/sink symbols to private, as they are covered in the libs docs.
Stefan Kost [Thu, 26 Feb 2009 08:06:23 +0000 (10:06 +0200)]
docs: fix random text after since: tag. Also fix class name to make the docs actual appear.
Stefan Kost [Thu, 26 Feb 2009 07:56:16 +0000 (09:56 +0200)]
docs: playbin2 has no stream-info
Stefan Kost [Thu, 26 Feb 2009 07:53:03 +0000 (09:53 +0200)]
docs: fix newly added interlace constants and plug holes in video format docs
Stefan Kost [Thu, 26 Feb 2009 07:35:43 +0000 (09:35 +0200)]
docs: don't put random stuff in tags.
Tags like Since: or Returns: can only be followed by more tags. gtk-doc has no
tag to append text again to the documentation body.