From 8386a11aae9c44272d5154b211b39d59d6a7a11c Mon Sep 17 00:00:00 2001 From: Stephan Sundermann Date: Fri, 11 Oct 2013 21:59:29 +0200 Subject: [PATCH] NavigationAdapter: Added ParseCommand --- sources/custom/NavigationQuery.cs | 43 +++++++++++++++++++++++++++++++ sources/gstreamer-sharp.metadata | 3 +++ 2 files changed, 46 insertions(+) create mode 100644 sources/custom/NavigationQuery.cs diff --git a/sources/custom/NavigationQuery.cs b/sources/custom/NavigationQuery.cs new file mode 100644 index 0000000000..0338c1fa9c --- /dev/null +++ b/sources/custom/NavigationQuery.cs @@ -0,0 +1,43 @@ +// Copyright (C) 2013 Stephan Sundermann +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + +namespace Gst.Video { + + using System; + using System.Runtime.InteropServices; + + public partial class NavigationAdapter { + + public static bool ParseCommands (Gst.Query query, out NavigationCommand[] cmds) { + uint len; + + cmds = null; + if (!QueryParseCommandsLength (query, out len)) + return false; + + cmds = new NavigationCommand[len]; + + for (uint i = 0; i < len; i++) { + NavigationCommand cmd; + + if (!QueryParseCommandsNth (query, i, out cmd)) + return false; + cmds[i] = cmd; + } + + return true; + } + } +} \ No newline at end of file diff --git a/sources/gstreamer-sharp.metadata b/sources/gstreamer-sharp.metadata index 804e72c885..84e4eb0b7b 100644 --- a/sources/gstreamer-sharp.metadata +++ b/sources/gstreamer-sharp.metadata @@ -112,6 +112,9 @@ along with this program. If not, see . 1 1 + + out + out 1