Fix building the volume example

Removing ambuiguity about what Application namespace we target
This commit is contained in:
Thibault Saunier 2017-08-22 16:52:17 -03:00
parent 7e8ee12304
commit ce8b789596

View file

@ -13,7 +13,7 @@ namespace GstreamerSharp
{ {
static void Main(string[] args) static void Main(string[] args)
{ {
Application.Init(ref args); Gst.Application.Init(ref args);
Element src = ElementFactory.Make("audiotestsrc"); Element src = ElementFactory.Make("audiotestsrc");
Element convert = ElementFactory.Make("audioconvert"); Element convert = ElementFactory.Make("audioconvert");