add plugins directory to default search path

This commit is contained in:
Viktor Anjin 2015-06-04 22:27:52 -07:00
parent 5e14d4bda4
commit fccb342c11

View file

@ -6,6 +6,11 @@
int main(int argc, char **argv)
{
gst_init (&argc, &argv);
GstRegistry *registry;
registry = gst_registry_get();
gst_registry_scan_path(registry, "./plugins");
QApplication app(argc, argv);
MainWindow wgt;