platform/upstream/gstreamer.git
15 years agowin32: update windows files via make win32-update
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).

15 years agogitignore: ignore more
Tim-Philipp Müller [Fri, 6 Mar 2009 10:03:31 +0000 (10:03 +0000)]
gitignore: ignore more

15 years agoFix build on Mac OS X
Julien Moutte [Fri, 6 Mar 2009 09:37:38 +0000 (10:37 +0100)]
Fix build on Mac OS X

15 years agodecodebin2: don't stay connected to notify::caps after negotiation
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.

15 years agortsp: fix parsing of 'now-' ranges.
Wim Taymans [Thu, 5 Mar 2009 12:48:37 +0000 (13:48 +0100)]
rtsp: fix parsing of 'now-' ranges.

--

15 years agoexamples: add some more sprinkle examples
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.

15 years agodocs: add appsrc symbols to standard section
Wim Taymans [Thu, 5 Mar 2009 10:57:40 +0000 (11:57 +0100)]
docs: add appsrc symbols to standard section

--

15 years agoadder: add variants for unsigned to fix warnings for unneeded check
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.

15 years agosubparse: use the right variable in debug log, encoding is not yet initialized
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

15 years agov4l: add a fixme for broken code, that someone who has a v4l tuner device should fix
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

15 years agoaudioresample: add missing break in event handling, remove dead code
Stefan Kost [Thu, 5 Mar 2009 08:39:33 +0000 (10:39 +0200)]
audioresample: add missing break in event handling, remove dead code

15 years agortsp: do some more cleanup in _close
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.

15 years agortsp: fix the memory management of the url
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.

15 years agoRTSP: Add support for server tunneling
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()

15 years agortsp: add new defines for tunneling
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.

15 years agortsp: remove , from last enum member
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.

15 years agosubparse: Convert regex code to GRegex code
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>
15 years agortsp: remove debugging g_message
Wim Taymans [Mon, 2 Mar 2009 15:13:33 +0000 (16:13 +0100)]
rtsp: remove debugging g_message

--

15 years agoRTSP: add support for Quicktime tunneled RTSP
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()

15 years agoRTSP: parse rtsph uris as RTSP tunneled over HTTP
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.

15 years agowin32: Add gst_rtsp_connection_get_url definition
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.

15 years agortsp: add _get_url method and separate sockets
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()

15 years agoapp: force automatic rebuild of gstapp-marshal.[ch] after previous change
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.

15 years agoBump glib requirement to 2.14
David Schleef [Sat, 28 Feb 2009 19:07:04 +0000 (11:07 -0800)]
Bump glib requirement to 2.14

15 years agogio: Use correct format modifier for size_t
LRN [Sat, 28 Feb 2009 18:37:53 +0000 (19:37 +0100)]
gio: Use correct format modifier for size_t

Fixes bug #573528.

15 years agortspconnection: Use correct types for some functions on Win32
LRN [Sat, 28 Feb 2009 18:35:33 +0000 (19:35 +0100)]
rtspconnection: Use correct types for some functions on Win32

Fixes bug #573529.

15 years agortspconnection: Fix warning about using unitialized value.
Edward Hervey [Sat, 28 Feb 2009 12:11:59 +0000 (13:11 +0100)]
rtspconnection: Fix warning about using unitialized value.

15 years agoriff: Add more codec mappings.
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

15 years agoalsa: release pcminfo after the strdup
Stefan Kost [Fri, 27 Feb 2009 09:14:25 +0000 (11:14 +0200)]
alsa: release pcminfo after the strdup

15 years agortsprange: don't leak the range in case of parsing error.
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().

15 years agoalsa: cleanup name lookup.
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.

15 years agosubparse: don't leak line, if flushing
Stefan Kost [Thu, 26 Feb 2009 14:09:03 +0000 (16:09 +0200)]
subparse: don't leak line, if flushing

15 years agogiosink: reflow error handling to not leak uri
Stefan Kost [Thu, 26 Feb 2009 14:03:39 +0000 (16:03 +0200)]
giosink: reflow error handling to not leak uri

15 years agoffmpegcolorspace: remove unused code/variables
Stefan Kost [Thu, 26 Feb 2009 13:53:10 +0000 (15:53 +0200)]
ffmpegcolorspace: remove unused code/variables

15 years agoximagesink: use GST_FLOW_NOT_NEGOTIATED for partial caps
Stefan Kost [Thu, 26 Feb 2009 10:10:47 +0000 (12:10 +0200)]
ximagesink: use GST_FLOW_NOT_NEGOTIATED for partial caps

15 years agoapp: add callbacks to appsrc, cleanups
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()

15 years agoAppsink: add padding for callbacks + docs
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.

15 years agowin32: Add new libgstapp symbol
Edward Hervey [Thu, 26 Feb 2009 08:52:59 +0000 (09:52 +0100)]
win32: Add new libgstapp symbol

15 years agodocs: clean section.txt file.
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.

15 years agodocs: fix random text after since: tag. Also fix class name to make the docs actual...
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.

15 years agodocs: playbin2 has no stream-info
Stefan Kost [Thu, 26 Feb 2009 07:56:16 +0000 (09:56 +0200)]
docs: playbin2 has no stream-info

15 years agodocs: fix newly added interlace constants and plug holes in video format docs
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

15 years agodocs: don't put random stuff in tags.
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.

15 years agoximagsink: do not access uninitialized height variable.
Stefan Kost [Fri, 6 Feb 2009 09:10:15 +0000 (11:10 +0200)]
ximagsink: do not access uninitialized height variable.

Exit like in xvimagesink, if we have partial caps.

15 years agoChange how win32/common/config.h is updated
David Schleef [Thu, 26 Feb 2009 04:26:05 +0000 (20:26 -0800)]
Change how win32/common/config.h is updated

Generate win32/common/config.h-new directly from config.h.in,
using shell variables in configure and some hard-coded information.
Change top-level makefile so that 'make win32-update' copies the
generated file to win32/common/config.h, which we keep in source
control.  It's kept in source control so that the git tree is
buildable from VS.

This change is similar to the one recently applied to GStreamer,
except that it adds a few -base specific defines.

15 years agoapp: add win32 .def file and only export functions we want exported
Tim-Philipp Müller [Wed, 25 Feb 2009 19:40:43 +0000 (19:40 +0000)]
app: add win32 .def file and only export functions we want exported

Add a .def file for win32 builds (and make check-exports).
Fix LDFLAGS in Makefile.am, so the usual export regexps are used (fixes #573165).
Make sure private marshaller functions aren't exported by prefixing them with __gst;
also rename gst_app_marshal_OBJECT__VOID to _BUFFER__VOID, make it static and add
a comment why we're not using glib-genmarshal for this one.

15 years agosprinkle: Add another example app
Wim Taymans [Wed, 25 Feb 2009 16:08:24 +0000 (17:08 +0100)]
sprinkle: Add another example app

Add an example app that dynamically adds and removes audiotestsrc elements from
adder.

15 years agoFixed a typo.
Peter Kjellerstedt [Wed, 25 Feb 2009 15:25:33 +0000 (16:25 +0100)]
Fixed a typo.

15 years agortsp, multifdsink: Unify the use of union gst_sockaddr.
Peter Kjellerstedt [Wed, 25 Feb 2009 10:31:02 +0000 (11:31 +0100)]
rtsp, multifdsink: Unify the use of union gst_sockaddr.

15 years agobuild: Update shave init statement for changes in common. Bump common.
Jan Schmidt [Wed, 25 Feb 2009 14:22:35 +0000 (14:22 +0000)]
build: Update shave init statement for changes in common. Bump common.

15 years agoxvimageink: protect buffer_alloc from shutdown
Wim Taymans [Wed, 25 Feb 2009 12:16:32 +0000 (13:16 +0100)]
xvimageink: protect buffer_alloc from shutdown

Use the pool_lock in the buffer_alloc function to detect shutdown. Avoids
crashes when the sink is shutdown.

15 years agoplaybin: use flushing pads instead of fakesink
Wim Taymans [Wed, 25 Feb 2009 11:43:53 +0000 (12:43 +0100)]
playbin: use flushing pads instead of fakesink

Use the flushing pads on playsink to terminate on shutdown instead of plugging
fakesinks. this should be a little cheaper.

15 years agoplaysink: Add FLUSHING pad type
Wim Taymans [Wed, 25 Feb 2009 11:42:20 +0000 (12:42 +0100)]
playsink: Add FLUSHING pad type

Make it possible to request a flushing pad from the playsink. We can eventually
use these flushing pads to quickly terminate the dataflow when we are shutting
down.

15 years agoAutomatic update of common submodule
Jan Schmidt [Wed, 25 Feb 2009 11:31:52 +0000 (11:31 +0000)]
Automatic update of common submodule

From 9cf8c9b to a6ce5c6

15 years agoriff: add fourcc for mpeg2-in-avi (as produced by mencoder)
Tim-Philipp Müller [Wed, 25 Feb 2009 09:52:38 +0000 (09:52 +0000)]
riff: add fourcc for mpeg2-in-avi (as produced by mencoder)

Fixes: #565777

15 years agostress-playbin: print the current uri
Wim Taymans [Wed, 25 Feb 2009 11:07:43 +0000 (12:07 +0100)]
stress-playbin: print the current uri

Print the current uri so that we can more easily see what uri caused a crash or
error.

15 years agoPrint the errors more clearly
Wim Taymans [Wed, 25 Feb 2009 10:07:20 +0000 (11:07 +0100)]
Print the errors more clearly

Print some more verbose messages when dealing with errors.

15 years agoRelease the group lock when setting states
Wim Taymans [Wed, 25 Feb 2009 09:08:29 +0000 (10:08 +0100)]
Release the group lock when setting states

Release the group lock while we perform the state changes on the uridecodebins
because that might trigger callbacks that we need to handle with the group lock
taken. Avoids a possible deadly embrace in some id3/flac files.
Fixes #567396.

15 years agoCombine finding and creating groups
Wim Taymans [Wed, 25 Feb 2009 09:05:38 +0000 (10:05 +0100)]
Combine finding and creating groups

Combine the search for the current group and optionally creating one into one
function so that we can avoid taking the lock multiple times.

15 years agoPlaybin2: Don't leave unused parameters in debug statements.
Edward Hervey [Wed, 25 Feb 2009 07:22:00 +0000 (08:22 +0100)]
Playbin2: Don't leave unused parameters in debug statements.

Fixes build on macosx

15 years agoRiff: Add fourcc for mpeg1-in-avi (as produced by mencoder)
Edward Hervey [Tue, 24 Feb 2009 09:33:05 +0000 (10:33 +0100)]
Riff: Add fourcc for mpeg1-in-avi (as produced by mencoder)

15 years agoAdd some G_UNLIKELY because we can
Wim Taymans [Tue, 24 Feb 2009 17:43:45 +0000 (18:43 +0100)]
Add some G_UNLIKELY because we can

Add a G_UNLIKELY when checking the shutdown variable.

15 years agomixer interface: Add flags to enhance mixer interfaces
Garret D'Amore [Tue, 24 Feb 2009 17:23:58 +0000 (17:23 +0000)]
mixer interface: Add flags to enhance mixer interfaces

This patch adds a few flags to the mixer and mixerctrl interface to
better support OSSv4 (and potentially other backends).

Patch By: Garret D'Amore <garrett.damore@sun.com>
Signed-Off-By: Jan Schmidt <jan.schmidt@sun.com>
API: GST_MIXER_FLAG_HAS_WHITELIST, GST_MIXER_FLAG_GROUPING,
API: GST_MIXER_TRACK_NO_RECORD, GST_MIXER_TRACK_NO_MUTE,
API: GST_MIXER_TRACK_WHITELIST

15 years agomultifdsink: Fix strict aliasing error using a union
Jan Schmidt [Tue, 24 Feb 2009 17:03:08 +0000 (17:03 +0000)]
multifdsink: Fix strict aliasing error using a union

15 years agortsp: Fix a strict aliasing warning
Jan Schmidt [Tue, 24 Feb 2009 16:49:40 +0000 (16:49 +0000)]
rtsp: Fix a strict aliasing warning

Fix strict aliasing warnings from casting a sockaddr_storage and
using it as a sockaddr_in6. Use a union instead.

15 years agoRemove .gitignore files from the docs tmpl dirs, that are killed by make clean.
Jan Schmidt [Tue, 24 Feb 2009 16:08:49 +0000 (16:08 +0000)]
Remove .gitignore files from the docs tmpl dirs, that are killed by make clean.

15 years agovorbis: Rename vorbis*.h to gstvorbis*.h to prevent name conflicts
Sebastian Dröge [Tue, 24 Feb 2009 13:36:39 +0000 (14:36 +0100)]
vorbis: Rename vorbis*.h to gstvorbis*.h to prevent name conflicts

15 years agoffmpegcolorspace: Add conversion from/to YVYU colorspace
Sebastian Dröge [Tue, 24 Feb 2009 13:06:38 +0000 (14:06 +0100)]
ffmpegcolorspace: Add conversion from/to YVYU colorspace

Fixes bug #572872.

15 years agoffmpegcolorspace: Add direct UYVY->GRAY8 conversion
Jonas Danielsson [Tue, 24 Feb 2009 12:42:01 +0000 (13:42 +0100)]
ffmpegcolorspace: Add direct UYVY->GRAY8 conversion

The conversion from UYVY to RGB24 and then to GRAY8
is quite slow. Fixes bug #569655.

15 years agoplaybin2: fix deadlock when shutting down. Fixes #572577.
Mark Nauwelaerts [Thu, 19 Feb 2009 16:16:51 +0000 (17:16 +0100)]
playbin2: fix deadlock when shutting down.  Fixes #572577.

15 years agostress-playbin: make more flexible, e.g. also useful for playbin2
Mark Nauwelaerts [Thu, 19 Feb 2009 16:15:18 +0000 (17:15 +0100)]
stress-playbin: make more flexible, e.g. also useful for playbin2

15 years agoMatch WSAStartup and WSACleanup correctly
Wim Taymans [Tue, 24 Feb 2009 11:11:00 +0000 (12:11 +0100)]
Match WSAStartup and WSACleanup correctly

Don't randomly call WSAStartup and WSACleanup but instead call the startup when
we create a connection and cleanup when we free it again. Because the internal
datastructure is refcounted, this should not cause any refcounting leaks when
the connection is managed correctly.
Fixes #562794.

15 years agoplaybin2/playsink: Set audiotee to PAUSED state in all cases. Fixes #565105.
Mark Nauwelaerts [Wed, 18 Feb 2009 10:59:58 +0000 (11:59 +0100)]
playbin2/playsink: Set audiotee to PAUSED state in all cases.  Fixes #565105.

15 years agoAdd srcdir to includes for out-of-source builds
David Flynn [Mon, 23 Feb 2009 18:57:42 +0000 (10:57 -0800)]
Add srcdir to includes for out-of-source builds

When you use gstreamer uninstalled and build outside
the source tree, the includes need to be specified for
both the source tree and the build tree.

Signed-off-by: David Schleef <ds@schleef.org>
15 years agoUse shave for the build output
Jan Schmidt [Sun, 22 Feb 2009 17:23:52 +0000 (17:23 +0000)]
Use shave for the build output

15 years agowin32: Add new symbol to libgstrtsp.def
Edward Hervey [Mon, 23 Feb 2009 11:17:07 +0000 (12:17 +0100)]
win32: Add new symbol to libgstrtsp.def

15 years agoAdd method for handling server requests
Wim Taymans [Mon, 23 Feb 2009 09:57:08 +0000 (10:57 +0100)]
Add method for handling server requests

Add a receive_request so that extensions can react to server requests.

15 years agoCorrectly cast to GstBuffer * before passing to gst_buffer_(copy|unref)
Sebastian Dröge [Sun, 22 Feb 2009 18:20:40 +0000 (19:20 +0100)]
Correctly cast to GstBuffer * before passing to gst_buffer_(copy|unref)

15 years agotheoraparse: Use the correct unref functions
Sebastian Dröge [Sun, 22 Feb 2009 18:19:04 +0000 (19:19 +0100)]
theoraparse: Use the correct unref functions

15 years agox(v)imagesink: Correctly cast to GstBuffer * before passing to gst_buffer_unref()
Sebastian Dröge [Sun, 22 Feb 2009 18:18:41 +0000 (19:18 +0100)]
x(v)imagesink: Correctly cast to GstBuffer * before passing to gst_buffer_unref()

15 years agotagdemux: Unref the actual buffer instead of the memory address of the buffer
Sebastian Dröge [Sun, 22 Feb 2009 18:12:00 +0000 (19:12 +0100)]
tagdemux: Unref the actual buffer instead of the memory address of the buffer

15 years agoAutomatic update of common submodule
Jan Schmidt [Sun, 22 Feb 2009 15:47:53 +0000 (15:47 +0000)]
Automatic update of common submodule

From 5d7c9cc to 9cf8c9b

15 years agowin32/common: Update .def files for recent API addition
Edward Hervey [Sun, 22 Feb 2009 13:49:29 +0000 (14:49 +0100)]
win32/common: Update .def files for recent API addition

15 years agotests: Fix indentation
Edward Hervey [Sun, 22 Feb 2009 12:43:35 +0000 (13:43 +0100)]
tests: Fix indentation

15 years agolibs/video: Fix gst_video_format_new_caps* functions.
Edward Hervey [Sun, 22 Feb 2009 12:42:33 +0000 (13:42 +0100)]
libs/video: Fix gst_video_format_new_caps* functions.

Only add a 'interlaced=True' property to caps *IF* it is interlaced, else
don't add anything.

15 years agoAutomatic update of common submodule
David Schleef [Sat, 21 Feb 2009 19:13:36 +0000 (11:13 -0800)]
Automatic update of common submodule

From 80c627d to 5d7c9cc

15 years agoImprove key/value parsing
Wim Taymans [Fri, 20 Feb 2009 16:26:40 +0000 (17:26 +0100)]
Improve key/value parsing

Improve header field parsing by keeping a ref to the key/value instead of
copying it into a local variable.

15 years agoAdd trailing \0 to message length
Wim Taymans [Fri, 20 Feb 2009 11:35:53 +0000 (12:35 +0100)]
Add trailing \0 to message length

We always put a trailing 0 at the end of the message body. Reflect this fact in
the length of the message.

15 years agoDon't parse headers for data messages
Wim Taymans [Fri, 20 Feb 2009 08:50:15 +0000 (09:50 +0100)]
Don't parse headers for data messages

Don't try to parse the headers on a data message because they don't have
headers.

15 years agotheoraenc: Add property for speed level control
Benjamin M. Schwartz [Thu, 19 Feb 2009 20:18:29 +0000 (12:18 -0800)]
theoraenc: Add property for speed level control

Add property "speed-level" to control the amount of motion searching
the encoder does.  This is only available in libtheora >= 1.0 and
will silently fail with earlier libraries.  Fixes: #572275.

Signed-off-by: David Schleef <ds@schleef.org>
15 years agovideo: Fix 'Since' tags
Edward Hervey [Thu, 19 Feb 2009 16:40:45 +0000 (17:40 +0100)]
video: Fix 'Since' tags

15 years agovideo: Add flags for interlaced video along with convenience methods for interlaced...
Edward Hervey [Mon, 26 Jan 2009 09:30:53 +0000 (10:30 +0100)]
video: Add flags for interlaced video along with convenience methods for interlaced caps.

These three flags allow all know combinations of interlaced formats. They should
only be used when the caps contain 'interlaced=True'.

Fixes #163577 (yes, it's a 4 year old bug).

15 years agoMake RTSPConnection opaque and rename RTSPChannel
Wim Taymans [Thu, 19 Feb 2009 14:51:52 +0000 (15:51 +0100)]
Make RTSPConnection opaque and rename RTSPChannel

Make the RTSPConnection object opaque so that we can extend it in the future.

Rename GstRTSPChannel to GstRTSPWatch to avoid confusing with the RTSP channels.

15 years agoAdd some more mappings for h264 in riff
Edward Hervey [Mon, 26 Jan 2009 09:31:14 +0000 (10:31 +0100)]
Add some more mappings for h264 in riff

15 years agoAdd new RTSP symbols to def files
Wim Taymans [Thu, 19 Feb 2009 09:49:56 +0000 (10:49 +0100)]
Add new RTSP symbols to def files

Add the new RTSP symbols to the windows def file.

15 years agoAdd method to install callbacks on appsink
Wim Taymans [Thu, 19 Feb 2009 09:44:31 +0000 (10:44 +0100)]
Add method to install callbacks on appsink

Based on pacth by Martin Samuelsson <martin dot samuelsson at axis dot com>
Fixes #571299.

Add gst_app_sink_set_callbacks() to install a set of callbacks. This is a more
performant alternative to connecting to the signals.

Add a unit test for appsink.

Clean up some of the appsink docs.

API: GstAppSink::gst_app_sink_set_callbacks()

15 years agoAdd RTSP accept method
Wim Taymans [Wed, 18 Feb 2009 17:46:35 +0000 (18:46 +0100)]
Add RTSP accept method

Add a method to accept a connection on a socket and create a GstRTSPConnection
for it.

API: gst_rtsp_connection_accept()

15 years agoAdd RTSP channel object for async io
Wim Taymans [Wed, 18 Feb 2009 16:42:59 +0000 (17:42 +0100)]
Add RTSP channel object for async io

Add a GstRTSPChannel object that wraps a GSource around the RTSP connection so
that the connection can be monitored from a maincontext. This allows us to
operate in ASYNC mode, which is handy when building a server.

Rework the old code to use the async code under the hood.

API: gst_rtsp_channel_new()
API: gst_rtsp_channel_unref()
API: gst_rtsp_channel_attach()
API: gst_rtsp_channel_queue_message()

15 years agoaudioresample: Add locking to protect the resampling context
Sebastian Dröge [Sun, 15 Feb 2009 06:30:17 +0000 (07:30 +0100)]
audioresample: Add locking to protect the resampling context

When setting the quality/filter-length while PLAYING the
resampling context will be destroyed and created again in
some cases, which will cause crashes in the transform function
if it's called at that time.

15 years agoffmpegcolorspace/videotestsrc: Use v308 instead of V308
Sebastian Dröge [Fri, 13 Feb 2009 09:10:25 +0000 (10:10 +0100)]
ffmpegcolorspace/videotestsrc: Use v308 instead of V308