mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 04:00:37 +00:00
Make Gst.Version a static class
This commit is contained in:
parent
867973a0bf
commit
c073068ad4
2 changed files with 14 additions and 31 deletions
|
@ -77,18 +77,6 @@ namespace Gst
|
|||
}
|
||||
}
|
||||
|
||||
private static Version version = null;
|
||||
|
||||
public static Version Version {
|
||||
get {
|
||||
if(version == null) {
|
||||
version = new Version();
|
||||
}
|
||||
|
||||
return version;
|
||||
}
|
||||
}
|
||||
|
||||
[DllImport("gstreamer-0.10")]
|
||||
private static extern void gst_init(ref int argc, ref IntPtr argv);
|
||||
|
||||
|
|
|
@ -12,27 +12,22 @@ using System.Runtime.InteropServices;
|
|||
|
||||
namespace Gst
|
||||
{
|
||||
public class Version
|
||||
public static class Version
|
||||
{
|
||||
private uint major;
|
||||
private uint minor;
|
||||
private uint micro;
|
||||
private uint nano;
|
||||
private string version_string;
|
||||
private static uint major;
|
||||
private static uint minor;
|
||||
private static uint micro;
|
||||
private static uint nano;
|
||||
private static string version_string;
|
||||
|
||||
internal Version()
|
||||
static Version()
|
||||
{
|
||||
gst_version(out major, out minor, out micro, out nano);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return String.Format("{0}.{1}.{2}.{3}", major, minor, micro, nano);
|
||||
}
|
||||
|
||||
public string Description {
|
||||
public static string Description {
|
||||
get {
|
||||
if(version_string == null) {
|
||||
if (version_string == null) {
|
||||
IntPtr version_string_ptr = gst_version_string();
|
||||
version_string = GLib.Marshaller.Utf8PtrToString(version_string_ptr);
|
||||
}
|
||||
|
@ -41,19 +36,19 @@ namespace Gst
|
|||
}
|
||||
}
|
||||
|
||||
public uint Major {
|
||||
public static uint Major {
|
||||
get { return major; }
|
||||
}
|
||||
|
||||
public uint Minor {
|
||||
public static uint Minor {
|
||||
get { return minor; }
|
||||
}
|
||||
|
||||
public uint Micro {
|
||||
public static uint Micro {
|
||||
get { return micro; }
|
||||
}
|
||||
|
||||
public uint Nano {
|
||||
public static uint Nano {
|
||||
get { return nano; }
|
||||
}
|
||||
|
||||
|
@ -63,4 +58,4 @@ namespace Gst
|
|||
[DllImport("gstreamer-0.10")]
|
||||
private static extern IntPtr gst_version_string();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue