platform/upstream/gstreamer.git
13 years agooggdemux: Don't use gst_pad_alloc_buffer()
Vincent Penquerc'h [Wed, 22 Dec 2010 19:06:56 +0000 (19:06 +0000)]
oggdemux: Don't use gst_pad_alloc_buffer()

allocate buffers using gst_buffer_new_and_alloc() instead of
gst_pad_alloc_buffer_and_set_caps(), as the first one will
cause the pad to block, and we don't want that since that will
prevent subsequent pads from being fed if a block occurs at
start, when all pads must be fed for playback to start.

This fixes autoplugging of the tiger element and other things.

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

13 years agoencodebin: Also use "Formatter"s for container formats
Edward Hervey [Wed, 22 Dec 2010 17:12:14 +0000 (18:12 +0100)]
encodebin: Also use "Formatter"s for container formats

13 years agoencoding-target: Fix typo
Edward Hervey [Wed, 22 Dec 2010 17:19:48 +0000 (18:19 +0100)]
encoding-target: Fix typo

13 years agotag: exif: Fix unitialized data warning
Thiago Santos [Wed, 22 Dec 2010 13:32:03 +0000 (10:32 -0300)]
tag: exif: Fix unitialized data warning

Fixes a valgrind warning on jifmux tests on -bad caused by
unitialized bytes.

Fixes #637758

13 years agoencodebin: minor fix in error handling.
Alessandro Decina [Wed, 22 Dec 2010 12:56:12 +0000 (13:56 +0100)]
encodebin: minor fix in error handling.

Don't call gst_bin_remove (bin, <invalid pointer>).

13 years agopbutils: More gtk-doc annotations
Edward Hervey [Tue, 21 Dec 2010 17:51:29 +0000 (18:51 +0100)]
pbutils: More gtk-doc annotations

13 years agoplaybin2: delay stream-changed messages
Vincent Penquerc'h [Tue, 21 Dec 2010 10:26:40 +0000 (10:26 +0000)]
playbin2: delay stream-changed messages

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

13 years agoencoding-target: Ensure target names and categories are valid
Edward Hervey [Tue, 21 Dec 2010 15:33:50 +0000 (16:33 +0100)]
encoding-target: Ensure target names and categories are valid

13 years agodepay: update some docs
Wim Taymans [Tue, 21 Dec 2010 14:11:10 +0000 (15:11 +0100)]
depay: update some docs

13 years agortpdepayloade: add support for getting events
Wim Taymans [Tue, 21 Dec 2010 14:02:18 +0000 (15:02 +0100)]
rtpdepayloade: add support for getting events

Add support for intercepting sink events in the depayloader by adding a new
vmethod.

13 years agovorbisdec: keep timestamps when no decoded output
Wim Taymans [Tue, 21 Dec 2010 12:37:41 +0000 (13:37 +0100)]
vorbisdec: keep timestamps when no decoded output

Keep track of the timestamps even when we didn't generate decodable output.

13 years agovorbisdec: avoid using invalid timestamps
Wim Taymans [Tue, 21 Dec 2010 12:19:38 +0000 (13:19 +0100)]
vorbisdec: avoid using invalid timestamps

13 years agoseek: don't pause for live buffering messages
Wim Taymans [Tue, 21 Dec 2010 09:41:27 +0000 (10:41 +0100)]
seek: don't pause for live buffering messages

13 years agobasertppay: use RTP base time when invalid timestamps
Wim Taymans [Mon, 20 Dec 2010 17:29:15 +0000 (18:29 +0100)]
basertppay: use RTP base time when invalid timestamps

When we have an invalid running-time (because we clipped, for example) use the
RTP base time for timestamping instead of generating wrong RTP timestamps.

13 years agortppayload: copy applied rate to segment
Wim Taymans [Mon, 20 Dec 2010 17:28:14 +0000 (18:28 +0100)]
rtppayload: copy applied rate to segment

Use set_segment_full to copy all segment values to the segment structure.

13 years agotests: Update container-less profile checks
Edward Hervey [Tue, 21 Dec 2010 12:09:34 +0000 (13:09 +0100)]
tests: Update container-less profile checks

13 years agoencoding-profile: Add guard against profiles without format
Edward Hervey [Tue, 21 Dec 2010 12:08:15 +0000 (13:08 +0100)]
encoding-profile: Add guard against profiles without format

13 years agoencodebin: Fix usage of non-container profiles
Edward Hervey [Tue, 21 Dec 2010 12:07:27 +0000 (13:07 +0100)]
encodebin: Fix usage of non-container profiles

13 years agodocs: Update for videoscale class changes
Edward Hervey [Fri, 17 Dec 2010 15:10:53 +0000 (16:10 +0100)]
docs: Update for videoscale class changes

13 years agoAutomatic update of common submodule
Edward Hervey [Mon, 20 Dec 2010 16:46:48 +0000 (17:46 +0100)]
Automatic update of common submodule

From 169462a to 46445ad

13 years agogstdiscoverer: Don't leak tags
Edward Hervey [Sun, 19 Dec 2010 12:41:22 +0000 (13:41 +0100)]
gstdiscoverer: Don't leak tags

13 years agogst-discoverer: show global tags by default
Edward Hervey [Sun, 19 Dec 2010 12:22:23 +0000 (13:22 +0100)]
gst-discoverer: show global tags by default

13 years agortsp: Fix memory leaks in the gst_rtsp_url_decode_path_components() unit tests
Sebastian Dröge [Sun, 19 Dec 2010 08:53:08 +0000 (09:53 +0100)]
rtsp: Fix memory leaks in the gst_rtsp_url_decode_path_components() unit tests

13 years agoexamples: Fix encodebin example CFLAGS and LDFLAGS
Sebastian Dröge [Sat, 18 Dec 2010 19:47:00 +0000 (20:47 +0100)]
examples: Fix encodebin example CFLAGS and LDFLAGS

Previously it would only succeed to link if a new enough
libgstpbutils-0.10 was installed in the default library
search path.

13 years agoogg: implement packet duration query for kate streams
Vincent Penquerc'h [Fri, 17 Dec 2010 14:16:18 +0000 (14:16 +0000)]
ogg: implement packet duration query for kate streams

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

13 years agofix compile errors on macosx
Rob Clark [Sat, 18 Dec 2010 01:06:27 +0000 (19:06 -0600)]
fix compile errors on macosx

with i686-apple-darwin10-gcc-4.2.1:

encoding-profile.h:134: warning: type qualifiers ignored on function return type
encoding-profile.c:240: warning: type qualifiers ignored on function return type
gstencodebin.c: In function 'next_unused_stream_profile':
gstencodebin.c:454: warning: format '%d' expects type 'int', but argument 8 has type 'GType'
gstencodebin.c:464: warning: format '%d' expects type 'int', but argument 8 has type 'GType'

13 years agoaudioresample: corrected buffer duration calculation to account for nonzero initial...
Leo Singer [Fri, 17 Dec 2010 08:49:26 +0000 (00:49 -0800)]
audioresample: corrected buffer duration calculation to account for nonzero initial timestamp

Since we calculate timestamps by:

  timestamp = t0 + (out samples) / (out rate)

and durations by:

  duration = ((out samples) + (processed samples)) / (out rate) - timestamp

if t0 is nonzero, this would simplify to

  duration = t0 + (processed samples) / (out rate).

This duration is too large by the amount t0.  We should have done:

  duration = t0 + ((out samples) + (processed samples)) / (out rate) - timestamp

so that

  duration = (processed samples) / (out rate).

13 years agoaudioresample: changed num_gap_samples, num_nongap_samples from guint32 to guint64...
Leo Singer [Fri, 17 Dec 2010 04:40:33 +0000 (20:40 -0800)]
audioresample: changed num_gap_samples, num_nongap_samples from guint32 to guint64 so that gaps of greater than or equal to 2^32 samples do not cause integer overflow

13 years agoaudioresample: push half a history length, instead of a full history length, at end...
Leo Singer [Fri, 17 Dec 2010 04:38:31 +0000 (20:38 -0800)]
audioresample: push half a history length, instead of a full history length, at end-of-stream so that output segment and input segment have same duration

13 years agoaudioresample: renamed count_gap, count_nongap to more descriptive num_gap_samples...
Leo Singer [Fri, 17 Dec 2010 04:34:13 +0000 (20:34 -0800)]
audioresample: renamed count_gap, count_nongap to more descriptive num_gap_samples, num_nongap_samples

13 years agoaudioresample: replaced void* with gpointer
Leo Singer [Fri, 17 Dec 2010 04:32:07 +0000 (20:32 -0800)]
audioresample: replaced void* with gpointer

13 years agoaudioresample: initial filter transient discarded; unit tests passing
Leo Singer [Fri, 17 Dec 2010 04:30:24 +0000 (20:30 -0800)]
audioresample: initial filter transient discarded; unit tests passing

13 years agoRevert "Revert "audioresample: Add GAP flag support""
Leo Singer [Fri, 17 Dec 2010 04:09:58 +0000 (20:09 -0800)]
Revert "Revert "audioresample: Add GAP flag support""

This reverts commit 35c76b3409dde7f2dcc8232388a47a1b99b661a7.

Conflicts:

gst/audioresample/gstaudioresample.c
gst/audioresample/gstaudioresample.h

13 years agotimeoverlay: add missing break
Vincent Penquerc'h [Thu, 16 Dec 2010 10:26:43 +0000 (10:26 +0000)]
timeoverlay: add missing break

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

13 years agovideoscale: Change classification to Filter/Converter/Video/Scaler
Sebastian Dröge [Thu, 16 Dec 2010 09:11:43 +0000 (10:11 +0100)]
videoscale: Change classification to Filter/Converter/Video/Scaler

13 years agowin32: update the def file with the new rtsp api
Stefan Kost [Wed, 15 Dec 2010 21:47:29 +0000 (23:47 +0200)]
win32: update the def file with the new rtsp api

13 years agoadd gst_rtsp_url_decode_path_components
Andy Wingo [Wed, 15 Dec 2010 16:51:36 +0000 (17:51 +0100)]
add gst_rtsp_url_decode_path_components

* gst-libs/gst/rtsp/gstrtspurl.h:
* gst-libs/gst/rtsp/gstrtspurl.c (gst_rtsp_url_decode_path_components):
  New public function, returns a strv of uri-decoded path components.

* tests/check/Makefile.am:
* tests/check/libs/rtsp.c: Add tests.

13 years agowin32: update defs file
Wim Taymans [Wed, 15 Dec 2010 15:35:43 +0000 (16:35 +0100)]
win32: update defs file

13 years agortpbuffer: relax arrangement for RTP bufferlists
Wim Taymans [Wed, 15 Dec 2010 15:30:55 +0000 (16:30 +0100)]
rtpbuffer: relax arrangement for RTP bufferlists

Don't assume there are exactly 2 buffers but allow cases where the header and
payload are in 1 buffer or where the payload is in more buffers.

13 years agoAutomatic update of common submodule
Stefan Kost [Wed, 15 Dec 2010 12:55:34 +0000 (14:55 +0200)]
Automatic update of common submodule

From 20742ae to 169462a

13 years agobasedepay: add support for buffer lists in the depayloader
Wim Taymans [Wed, 15 Dec 2010 11:58:47 +0000 (12:58 +0100)]
basedepay: add support for buffer lists in the depayloader

Add support for buffer lists in the depayloader.

13 years agoexamples: encoding example
Edward Hervey [Mon, 13 Sep 2010 08:08:47 +0000 (10:08 +0200)]
examples: encoding example

Along with gstcapslist

13 years agogst: New encoding plugin
Edward Hervey [Fri, 13 Aug 2010 15:36:38 +0000 (17:36 +0200)]
gst: New encoding plugin

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

13 years agopbutils: New Profile library
Edward Hervey [Fri, 13 Aug 2010 15:27:52 +0000 (17:27 +0200)]
pbutils: New Profile library

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

13 years agoconfigure: use the -Bsymbolic-functions linker flag if supported
Stefan Kost [Wed, 15 Dec 2010 10:21:05 +0000 (12:21 +0200)]
configure: use the -Bsymbolic-functions linker flag if supported

This feature turns intra library calls into direct function calls and thus makes
them a little faster. The downside is that this causes problems for e.g.
LD_PRELOAD based tools. Thus add a configure option to turn it off.

13 years agotypefind: Add check for yuv4mpeg
David Schleef [Tue, 14 Dec 2010 08:16:13 +0000 (00:16 -0800)]
typefind: Add check for yuv4mpeg

13 years agopbutils: spell out two more container formats
Stefan Kost [Mon, 13 Dec 2010 16:05:41 +0000 (18:05 +0200)]
pbutils: spell out two more container formats

13 years agodiscoverer: query seekability
Stefan Kost [Mon, 13 Dec 2010 14:20:23 +0000 (16:20 +0200)]
discoverer: query seekability

Besides the duration we can also query the seekability of a stream. Use the new
API in the gst-discoverer tool.

API: gst_discoverer_info_get_seekable

13 years agoAutomatic update of common submodule
Stefan Kost [Mon, 13 Dec 2010 14:23:04 +0000 (16:23 +0200)]
Automatic update of common submodule

From 011bcc8 to 20742ae

13 years agotests: audioresample: adjust unit test to relaxed discont checking
Mark Nauwelaerts [Mon, 13 Dec 2010 12:04:40 +0000 (13:04 +0100)]
tests: audioresample: adjust unit test to relaxed discont checking

13 years agomake: move the design doc also on the Makefile.am level (for dist)
Stefan Kost [Mon, 13 Dec 2010 10:34:58 +0000 (12:34 +0200)]
make: move the design doc also on the Makefile.am level (for dist)

13 years agoaudioresample: relax discont checking slightly
Mark Nauwelaerts [Mon, 13 Dec 2010 09:05:00 +0000 (10:05 +0100)]
audioresample: relax discont checking slightly

13 years agoaudioresample: provide as much valid output ts and offset as valid input
Mark Nauwelaerts [Mon, 13 Dec 2010 08:56:04 +0000 (09:56 +0100)]
audioresample: provide as much valid output ts and offset as valid input

... by independently tracking time and offset, rather than having no offset
leading to no output ts.

13 years agotypefinders: name "aac" typefinder "audio/aac"
Stefan Kost [Mon, 13 Dec 2010 08:41:24 +0000 (10:41 +0200)]
typefinders: name "aac" typefinder "audio/aac"

This is in sync how we call the others.

13 years agodocs: move design doc to design folder
Stefan Kost [Mon, 13 Dec 2010 07:58:53 +0000 (09:58 +0200)]
docs: move design doc to design folder

13 years agovideotestsrc: Add a missing return statement
Zeeshan Ali (Khattak) [Sat, 11 Dec 2010 17:33:33 +0000 (19:33 +0200)]
videotestsrc: Add a missing return statement

13 years agodecodebin2: Deprecate new-decoded-pad and removed-decoded-pad signals
Sebastian Dröge [Sat, 11 Dec 2010 16:18:49 +0000 (17:18 +0100)]
decodebin2: Deprecate new-decoded-pad and removed-decoded-pad signals

They're really the same as pad-added and pad-removed from GstElement
and it doesn't make sense to have two signals for the same thing.

13 years agodecodebin2: Emit "remove-decoded-pad" signal when pads are removed from decodebin2
Sebastian Dröge [Sat, 11 Dec 2010 16:14:36 +0000 (17:14 +0100)]
decodebin2: Emit "remove-decoded-pad" signal when pads are removed from decodebin2

Fixes bug #636198.

13 years agoappsink: unset flushing flag when starting
Wim Taymans [Fri, 10 Dec 2010 17:57:56 +0000 (18:57 +0100)]
appsink: unset flushing flag when starting

When we start again after being stopped, clear the flushing flag or else
it will always be TRUE.

Fixes #636769

13 years agopbutils: Add/Fix some media descriptions
Edward Hervey [Thu, 9 Dec 2010 15:57:35 +0000 (16:57 +0100)]
pbutils: Add/Fix some media descriptions

Fixes #623413

13 years agoxvimagesink: Use gst_caps_can_intersect() instead of gst_caps_intersect()
Gavin Stark [Thu, 9 Dec 2010 07:40:25 +0000 (08:40 +0100)]
xvimagesink: Use gst_caps_can_intersect() instead of gst_caps_intersect()

Fixes a memory leak and bug #636827.

13 years agotypefinding: improve iso media typefinding
Mark Nauwelaerts [Wed, 8 Dec 2010 11:55:24 +0000 (12:55 +0100)]
typefinding: improve iso media typefinding

... by also considering compatible brands rather than only aiming at major brand
(of which there are a seemingly ever expanding great many).

13 years agotests: remove superflous ';' and reindent
Stefan Kost [Wed, 8 Dec 2010 10:28:32 +0000 (12:28 +0200)]
tests: remove superflous ';' and reindent

13 years agodocs: fix wrong use of Since: keyword
Stefan Kost [Wed, 8 Dec 2010 10:09:45 +0000 (12:09 +0200)]
docs: fix wrong use of Since: keyword

13 years agotests: add AC-3, E-AC-3 typefind tests
René Stadler [Tue, 7 Dec 2010 18:28:37 +0000 (20:28 +0200)]
tests: add AC-3, E-AC-3 typefind tests

13 years agotypefind: ignore AC-3 BSIDs 9, 10 and >16
René Stadler [Fri, 3 Dec 2010 15:33:40 +0000 (17:33 +0200)]
typefind: ignore AC-3 BSIDs 9, 10 and >16

These are reserved for future extensions which will not be backwards
compatible to E-AC-3.

13 years agotypefind: accept consecutive AC-3 frames of different sizes
René Stadler [Fri, 3 Dec 2010 14:54:21 +0000 (16:54 +0200)]
typefind: accept consecutive AC-3 frames of different sizes

This is perfectly valid and occurs in particular when there are
(in)dependent substreams present.

13 years agotypefind: remove useless masking in (E-)AC-3 typefinders
René Stadler [Fri, 3 Dec 2010 14:22:32 +0000 (16:22 +0200)]
typefind: remove useless masking in (E-)AC-3 typefinders

13 years agotypefind: stop scanning after suggesting E-AC-3 caps
René Stadler [Fri, 3 Dec 2010 14:14:15 +0000 (16:14 +0200)]
typefind: stop scanning after suggesting E-AC-3 caps

13 years agotypefind: fix E-AC-3 frame size parsing
René Stadler [Fri, 3 Dec 2010 16:08:58 +0000 (18:08 +0200)]
typefind: fix E-AC-3 frame size parsing

Frame size is given in words; it is already multiplied by two where
needed, so the left shift is superfluous. This extra multiplication
caused the code to inspect the third packet instead of the second,
which would fail for files where the second packet has a size
different from the first.

13 years agortsp: Move around the typedefs to make GIR happy
Edward Hervey [Tue, 7 Dec 2010 16:35:14 +0000 (17:35 +0100)]
rtsp: Move around the typedefs to make GIR happy

Otherwise it will generate they symbols as _GstRTSP* (with the leading
underscore).

13 years agotests: use GLib 2.22 API unconditionally
Tim-Philipp Müller [Sat, 4 Dec 2010 14:48:46 +0000 (14:48 +0000)]
tests: use GLib 2.22 API unconditionally

13 years agolibs: use GLib 2.22 API unconditionally
Tim-Philipp Müller [Sat, 4 Dec 2010 14:45:58 +0000 (14:45 +0000)]
libs: use GLib 2.22 API unconditionally

13 years agoAdd build system for Android
Benjamin Gaignard [Fri, 3 Dec 2010 16:41:18 +0000 (17:41 +0100)]
Add build system for Android

13 years agodefs: add new symbol
Wim Taymans [Fri, 3 Dec 2010 14:46:07 +0000 (15:46 +0100)]
defs: add new symbol

13 years agooggstream: additional tag extraction
Mark Nauwelaerts [Wed, 27 Oct 2010 11:49:41 +0000 (13:49 +0200)]
oggstream: additional tag extraction

... supporting theora, flac, speex, celt.

Fixes #629349.

13 years agooggstream: use separate tag extraction vfunction
Mark Nauwelaerts [Wed, 27 Oct 2010 10:08:25 +0000 (12:08 +0200)]
oggstream: use separate tag extraction vfunction

13 years agooggstream: refactor vorbis comment tag extraction
Mark Nauwelaerts [Wed, 27 Oct 2010 09:58:53 +0000 (11:58 +0200)]
oggstream: refactor vorbis comment tag extraction

13 years agooggdemux: plug some oggstream leaks
Mark Nauwelaerts [Wed, 27 Oct 2010 09:16:15 +0000 (11:16 +0200)]
oggdemux: plug some oggstream leaks

13 years agooggstream: streamline tag extraction and prevent some leaks
Mark Nauwelaerts [Wed, 27 Oct 2010 08:59:03 +0000 (10:59 +0200)]
oggstream: streamline tag extraction and prevent some leaks

13 years agooggdemux: send stream tags after newsegment and global tags
Mark Nauwelaerts [Wed, 27 Oct 2010 08:58:16 +0000 (10:58 +0200)]
oggdemux: send stream tags after newsegment and global tags

13 years agooggdemux: perform more (vorbis comment header) tag extractions
Sreerenj Balachandran [Tue, 14 Sep 2010 20:08:51 +0000 (23:08 +0300)]
oggdemux: perform more (vorbis comment header) tag extractions

In particular, move comment header parsing to gstoggstrem.c.
Thanks to Felipe Contreras.

Fixes #629349 (partially).

13 years agoriff: document omitted field in _gst_riff_strf_auds
Mark Nauwelaerts [Wed, 27 Oct 2010 08:20:15 +0000 (10:20 +0200)]
riff: document omitted field in _gst_riff_strf_auds

(aka WAVEFORMATEX)

13 years agooggstream: fix incorrect warning on skeleton headers
David Schleef [Mon, 11 Oct 2010 00:15:53 +0000 (17:15 -0700)]
oggstream: fix incorrect warning on skeleton headers

13 years agooggparse: Set DELTA_UNIT on buffers
David Schleef [Sun, 21 Nov 2010 03:02:50 +0000 (19:02 -0800)]
oggparse: Set DELTA_UNIT on buffers

13 years agotests: fix video library unit test and skip non-working YUV9/YVU9 parts for now
Tim-Philipp Müller [Fri, 3 Dec 2010 00:01:06 +0000 (00:01 +0000)]
tests: fix video library unit test and skip non-working YUV9/YVU9 parts for now

13 years agovideo: add missing break statement for the GST_VIDEO_FORMAT_RGB8_PALETTED case
Tim-Philipp Müller [Thu, 2 Dec 2010 23:49:31 +0000 (23:49 +0000)]
video: add missing break statement for the GST_VIDEO_FORMAT_RGB8_PALETTED case

13 years agogst-visualise: trim unused perl dependency
Evan Broder [Mon, 15 Nov 2010 20:02:07 +0000 (22:02 +0200)]
gst-visualise: trim unused perl dependency

Remove an unused perl module. Fixes #634522.

13 years agoplaybin2: add some logging for failure case
Stefan Kost [Mon, 1 Nov 2010 21:07:12 +0000 (23:07 +0200)]
playbin2: add some logging for failure case

13 years agoinputselector: log times in human readable form
Stefan Kost [Mon, 1 Nov 2010 21:06:21 +0000 (23:06 +0200)]
inputselector: log times in human readable form

13 years agoinputselector: more G_PARAM_STATIC_STRINGS use
Stefan Kost [Mon, 1 Nov 2010 20:44:16 +0000 (22:44 +0200)]
inputselector: more G_PARAM_STATIC_STRINGS use

13 years agoinputselector: move reoccuring logs to LOG and remove a double info
Stefan Kost [Mon, 1 Nov 2010 20:42:23 +0000 (22:42 +0200)]
inputselector: move reoccuring logs to LOG and remove a double info

Less debug spew in DEBUG category. No need to log pad again if we use
GST_LOG_OBJECT(pad,...).

13 years agolibgstrtsp: Fix typo in .pc to use for GIR
Edward Hervey [Thu, 2 Dec 2010 18:11:37 +0000 (19:11 +0100)]
libgstrtsp: Fix typo in .pc to use for GIR

13 years agodocs: Add a whole bunch of symbols that were unused to the proper sections
Edward Hervey [Thu, 2 Dec 2010 14:16:25 +0000 (15:16 +0100)]
docs: Add a whole bunch of symbols that were unused to the proper sections

13 years agosdp: only parse TTL for IP4 addresses
Wim Taymans [Wed, 10 Nov 2010 10:02:27 +0000 (11:02 +0100)]
sdp: only parse TTL for IP4 addresses

Only IP4 addresses can have a TTL in the address.

13 years agosdp: add method to check for multicast addresses
Wim Taymans [Wed, 10 Nov 2010 09:53:41 +0000 (10:53 +0100)]
sdp: add method to check for multicast addresses

Expose a previously internal method to check for multicast addresses.

See #634093

13 years agopbutils: Take nano version into account in GST_CHECK_PLUGINS_BASE_VERSION()
Sebastian Dröge [Wed, 3 Nov 2010 10:13:08 +0000 (11:13 +0100)]
pbutils: Take nano version into account in GST_CHECK_PLUGINS_BASE_VERSION()

If the nano is > 0 the current version should be handled the same as
micro + 1.

13 years agovideo: Add YUV9, YVU9 and IYU1 video formats
Sebastian Dröge [Wed, 3 Nov 2010 08:51:40 +0000 (09:51 +0100)]
video: Add YUV9, YVU9 and IYU1 video formats

API: GST_VIDEO_FORMAT_YUV9: planar 4:1:0 YUV
API: GST_VIDEO_FORMAT_YVU9: planar 4:1:0 YUV (chroma planes swapped)
API: GST_VIDEO_FORMAT_IYU1: packed 4:1:1 YUV (Cr-Y0-Y1-Cb-Y2-Y3)

13 years agovideo: Add 8-bit paletted RGB
Sebastian Dröge [Tue, 2 Nov 2010 10:57:09 +0000 (11:57 +0100)]
video: Add 8-bit paletted RGB

API: Add GST_VIDEO_FORMAT_RGB8_PALETTED
API: Add GST_VIDEO_CAPS_RGB8_PALETTED
API: Add gst_video_parse_caps_palette()

13 years agognomevfssrc: Remove dead assignment
Sebastian Dröge [Sun, 31 Oct 2010 18:17:28 +0000 (19:17 +0100)]
gnomevfssrc: Remove dead assignment