Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
device-monitor: Add argument to include devices from hidden providers
  • Loading branch information
TheMuso committed Mar 23, 2021
1 parent eb06907 commit ddf3e66
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/gst-device-monitor-1.0.1
Expand Up @@ -23,6 +23,9 @@ Print version and exit
.TP 8
.B \-f, \-\-follow
Don't exit after showing the initial device list, but wait for devices to be added or removed
.TP 8
.B \-i, \-\-include\-hidden
Include devices from hidden device providers.

.SH "EXAMPLES"
.l
Expand All @@ -33,6 +36,8 @@ Don't exit after showing the initial device list, but wait for devices to be add
.B gst\-device\-monitor\-1.0 Audio/Source
.TP 8
.B gst\-device\-monitor\-1.0 Video/Source:video/x-raw
.TP 8
.B gst-device-monitor-1.0 -s Audio/Sink

.SH "SEE ALSO"
.BR gst\-inspect\-1.0 (1),
Expand Down
4 changes: 4 additions & 0 deletions tools/gst-device-monitor.c
Expand Up @@ -287,13 +287,16 @@ main (int argc, char **argv)
GError *err = NULL;
gchar **arg, **args = NULL;
gboolean follow = FALSE;
gboolean include_hidden = FALSE;
GOptionContext *ctx;
GOptionEntry options[] = {
{"version", 0, 0, G_OPTION_ARG_NONE, &print_version,
N_("Print version information and exit"), NULL},
{"follow", 'f', 0, G_OPTION_ARG_NONE, &follow,
N_("Don't exit after showing the initial device list, but wait "
"for devices to added/removed."), NULL},
{"include-hidden", 'i', 0, G_OPTION_ARG_NONE, &include_hidden,
N_("Include devices from hidden device providers."), NULL},
{G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_STRING_ARRAY, &args, NULL},
{NULL}
};
Expand Down Expand Up @@ -340,6 +343,7 @@ main (int argc, char **argv)

app.loop = g_main_loop_new (NULL, FALSE);
app.monitor = gst_device_monitor_new ();
gst_device_monitor_set_show_all_devices (app.monitor, include_hidden);

bus = gst_device_monitor_get_bus (app.monitor);
app.bus_watch_id = gst_bus_add_watch (bus, bus_msg_handler, &app);
Expand Down

0 comments on commit ddf3e66

Please sign in to comment.