summaryrefslogtreecommitdiff
path: root/tools/gst-device-monitor.c
AgeCommit message (Collapse)AuthorFilesLines
2015-10-28tools: gst-device-monitor: fix two memory leaksNirbheek Chauhan1-1/+2
The removed GList link needs to be freed too, and the G_OPTION_REMAINING arguments need to be freed.
2015-10-02gstreamer: base: Fix memory leaks when context parse fails.Vineeth TM1-0/+2
When g_option_context_parse fails, context and error variables are not getting free'd which results in memory leaks. Free'ing the same. And replacing g_error_free with g_clear_error, which checks if the error being passed is not NULL and sets the variable to NULL on free'ing. https://bugzilla.gnome.org/show_bug.cgi?id=753852
2015-07-16tools: gst-device-monitor: fix props leakTim-Philipp Müller1-0/+1
CID 1311942
2015-07-15device-monitor: print device propertiesWim Taymans1-5/+22
2014-06-27tools: add gst-device-monitor-1.0 utilityTim-Philipp Müller1-0/+232
Just shows devices with basic info and exits. Or will wait for more devices to show up or be removed with the --follow option. It's also possible to pass filters as command line arguments in the form DEVICE_CLASSES or DEVICE_CLASSES:CAPS.