mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 05:31:15 +00:00
tools: gst-play: allow setting of flags in serialized foo+bar format
https://bugzilla.gnome.org/show_bug.cgi?id=751901
This commit is contained in:
parent
1c72c6ddce
commit
4f5a263381
1 changed files with 17 additions and 5 deletions
|
@ -138,7 +138,8 @@ gst_play_printf (const gchar * format, ...)
|
||||||
|
|
||||||
static GstPlay *
|
static GstPlay *
|
||||||
play_new (gchar ** uris, const gchar * audio_sink, const gchar * video_sink,
|
play_new (gchar ** uris, const gchar * audio_sink, const gchar * video_sink,
|
||||||
gboolean gapless, gdouble initial_volume, gboolean verbose, int flags)
|
gboolean gapless, gdouble initial_volume, gboolean verbose,
|
||||||
|
const gchar * flags_string)
|
||||||
{
|
{
|
||||||
GstElement *sink, *playbin;
|
GstElement *sink, *playbin;
|
||||||
GstPlay *play;
|
GstPlay *play;
|
||||||
|
@ -178,8 +179,19 @@ play_new (gchar ** uris, const gchar * audio_sink, const gchar * video_sink,
|
||||||
g_warning ("Couldn't create specified video sink '%s'", video_sink);
|
g_warning ("Couldn't create specified video sink '%s'", video_sink);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (flags)
|
if (flags_string != NULL) {
|
||||||
g_object_set (play->playbin, "flags", flags, NULL);
|
GParamSpec *pspec;
|
||||||
|
GValue val = { 0, };
|
||||||
|
|
||||||
|
pspec =
|
||||||
|
g_object_class_find_property (G_OBJECT_GET_CLASS (playbin), "flags");
|
||||||
|
g_value_init (&val, pspec->value_type);
|
||||||
|
if (gst_value_deserialize (&val, flags_string))
|
||||||
|
g_object_set_property (G_OBJECT (play->playbin), "flags", &val);
|
||||||
|
else
|
||||||
|
g_printerr ("Couldn't convert '%s' to playbin flags!\n", flags_string);
|
||||||
|
g_value_unset (&val);
|
||||||
|
}
|
||||||
|
|
||||||
if (verbose) {
|
if (verbose) {
|
||||||
play->deep_notify_id = g_signal_connect (play->playbin, "deep-notify",
|
play->deep_notify_id = g_signal_connect (play->playbin, "deep-notify",
|
||||||
|
@ -1107,7 +1119,6 @@ main (int argc, char **argv)
|
||||||
GstPlay *play;
|
GstPlay *play;
|
||||||
GPtrArray *playlist;
|
GPtrArray *playlist;
|
||||||
gboolean verbose = FALSE;
|
gboolean verbose = FALSE;
|
||||||
int flags = 0;
|
|
||||||
gboolean print_version = FALSE;
|
gboolean print_version = FALSE;
|
||||||
gboolean interactive = TRUE;
|
gboolean interactive = TRUE;
|
||||||
gboolean gapless = FALSE;
|
gboolean gapless = FALSE;
|
||||||
|
@ -1117,6 +1128,7 @@ main (int argc, char **argv)
|
||||||
gchar *audio_sink = NULL;
|
gchar *audio_sink = NULL;
|
||||||
gchar *video_sink = NULL;
|
gchar *video_sink = NULL;
|
||||||
gchar **uris;
|
gchar **uris;
|
||||||
|
gchar *flags = NULL;
|
||||||
guint num, i;
|
guint num, i;
|
||||||
GError *err = NULL;
|
GError *err = NULL;
|
||||||
GOptionContext *ctx;
|
GOptionContext *ctx;
|
||||||
|
@ -1124,7 +1136,7 @@ main (int argc, char **argv)
|
||||||
GOptionEntry options[] = {
|
GOptionEntry options[] = {
|
||||||
{"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
|
{"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
|
||||||
N_("Output status information and property notifications"), NULL},
|
N_("Output status information and property notifications"), NULL},
|
||||||
{"flags", 0, 0, G_OPTION_ARG_INT, &flags,
|
{"flags", 0, 0, G_OPTION_ARG_STRING, &flags,
|
||||||
N_("Control playback behaviour setting playbin 'flags' property"),
|
N_("Control playback behaviour setting playbin 'flags' property"),
|
||||||
NULL},
|
NULL},
|
||||||
{"version", 0, 0, G_OPTION_ARG_NONE, &print_version,
|
{"version", 0, 0, G_OPTION_ARG_NONE, &print_version,
|
||||||
|
|
Loading…
Reference in a new issue