From ce8b789596f01ce8078997a8e835b7d29aa044f8 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Tue, 22 Aug 2017 16:52:17 -0300 Subject: [PATCH] Fix building the volume example Removing ambuiguity about what Application namespace we target --- samples/ExampleVolume.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ExampleVolume.cs b/samples/ExampleVolume.cs index 65992fc018..ef62782df4 100644 --- a/samples/ExampleVolume.cs +++ b/samples/ExampleVolume.cs @@ -13,7 +13,7 @@ namespace GstreamerSharp { static void Main(string[] args) { - Application.Init(ref args); + Gst.Application.Init(ref args); Element src = ElementFactory.Make("audiotestsrc"); Element convert = ElementFactory.Make("audioconvert");