mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
uridecodebin: add the 'expose-all-streams' property from decodebin2
API: expose-all-streams https://bugzilla.gnome.org/show_bug.cgi?id=617868
This commit is contained in:
parent
ac4188bd54
commit
20d643ccda
1 changed files with 32 additions and 0 deletions
|
@ -101,6 +101,8 @@ struct _GstURIDecodeBin
|
||||||
gint pending;
|
gint pending;
|
||||||
|
|
||||||
gboolean async_pending; /* async-start has been emited */
|
gboolean async_pending; /* async-start has been emited */
|
||||||
|
|
||||||
|
gboolean expose_allstreams; /* Whether to expose unknow type streams or not */
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GstURIDecodeBinClass
|
struct _GstURIDecodeBinClass
|
||||||
|
@ -155,6 +157,7 @@ enum
|
||||||
#define DEFAULT_BUFFER_SIZE -1
|
#define DEFAULT_BUFFER_SIZE -1
|
||||||
#define DEFAULT_DOWNLOAD FALSE
|
#define DEFAULT_DOWNLOAD FALSE
|
||||||
#define DEFAULT_USE_BUFFERING FALSE
|
#define DEFAULT_USE_BUFFERING FALSE
|
||||||
|
#define DEFAULT_EXPOSE_ALL_STREAMS TRUE
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
@ -168,6 +171,7 @@ enum
|
||||||
PROP_BUFFER_DURATION,
|
PROP_BUFFER_DURATION,
|
||||||
PROP_DOWNLOAD,
|
PROP_DOWNLOAD,
|
||||||
PROP_USE_BUFFERING,
|
PROP_USE_BUFFERING,
|
||||||
|
PROP_EXPOSE_ALL_STREAMS,
|
||||||
PROP_LAST
|
PROP_LAST
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -364,6 +368,23 @@ gst_uri_decode_bin_class_init (GstURIDecodeBinClass * klass)
|
||||||
"Perform buffering on demuxed/parsed media",
|
"Perform buffering on demuxed/parsed media",
|
||||||
DEFAULT_USE_BUFFERING, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
DEFAULT_USE_BUFFERING, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GstURIDecodeBin::expose-all-streams
|
||||||
|
*
|
||||||
|
* Expose streams of unknown type.
|
||||||
|
*
|
||||||
|
* If set to %FALSE, then only the streams that can be decoded to the final
|
||||||
|
* caps (see 'caps' property) will have a pad exposed. Streams that do not
|
||||||
|
* match those caps but could have been decoded will not have decoder plugged
|
||||||
|
* in internally and will not have a pad exposed.
|
||||||
|
*
|
||||||
|
* Since: 0.10.30
|
||||||
|
*/
|
||||||
|
g_object_class_install_property (gobject_class, PROP_EXPOSE_ALL_STREAMS,
|
||||||
|
g_param_spec_boolean ("expose-all-streams", "Expose All Streams",
|
||||||
|
"Expose all streams, including those of unknown type or that don't match the 'caps' property",
|
||||||
|
DEFAULT_EXPOSE_ALL_STREAMS,
|
||||||
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
/**
|
/**
|
||||||
* GstURIDecodeBin::unknown-type:
|
* GstURIDecodeBin::unknown-type:
|
||||||
* @bin: The uridecodebin
|
* @bin: The uridecodebin
|
||||||
|
@ -502,6 +523,7 @@ gst_uri_decode_bin_init (GstURIDecodeBin * dec, GstURIDecodeBinClass * klass)
|
||||||
dec->buffer_size = DEFAULT_BUFFER_SIZE;
|
dec->buffer_size = DEFAULT_BUFFER_SIZE;
|
||||||
dec->download = DEFAULT_DOWNLOAD;
|
dec->download = DEFAULT_DOWNLOAD;
|
||||||
dec->use_buffering = DEFAULT_USE_BUFFERING;
|
dec->use_buffering = DEFAULT_USE_BUFFERING;
|
||||||
|
dec->expose_allstreams = DEFAULT_EXPOSE_ALL_STREAMS;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -584,6 +606,9 @@ gst_uri_decode_bin_set_property (GObject * object, guint prop_id,
|
||||||
case PROP_USE_BUFFERING:
|
case PROP_USE_BUFFERING:
|
||||||
dec->use_buffering = g_value_get_boolean (value);
|
dec->use_buffering = g_value_get_boolean (value);
|
||||||
break;
|
break;
|
||||||
|
case PROP_EXPOSE_ALL_STREAMS:
|
||||||
|
dec->expose_allstreams = g_value_get_boolean (value);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
break;
|
break;
|
||||||
|
@ -638,6 +663,9 @@ gst_uri_decode_bin_get_property (GObject * object, guint prop_id,
|
||||||
case PROP_USE_BUFFERING:
|
case PROP_USE_BUFFERING:
|
||||||
g_value_set_boolean (value, dec->use_buffering);
|
g_value_set_boolean (value, dec->use_buffering);
|
||||||
break;
|
break;
|
||||||
|
case PROP_EXPOSE_ALL_STREAMS:
|
||||||
|
g_value_set_boolean (value, dec->expose_allstreams);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
break;
|
break;
|
||||||
|
@ -1362,6 +1390,10 @@ make_decoder (GstURIDecodeBin * decoder)
|
||||||
if (decoder->caps)
|
if (decoder->caps)
|
||||||
g_object_set (decodebin, "caps", decoder->caps, NULL);
|
g_object_set (decodebin, "caps", decoder->caps, NULL);
|
||||||
|
|
||||||
|
/* Propagate expose-all-streams property */
|
||||||
|
g_object_set (decodebin, "expose-all-streams", decoder->expose_allstreams,
|
||||||
|
NULL);
|
||||||
|
|
||||||
if (!decoder->is_stream) {
|
if (!decoder->is_stream) {
|
||||||
/* propagate the use-buffering property but only when we are not already
|
/* propagate the use-buffering property but only when we are not already
|
||||||
* doing stream buffering with queue2. FIXME, we might want to do stream
|
* doing stream buffering with queue2. FIXME, we might want to do stream
|
||||||
|
|
Loading…
Reference in a new issue