mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
31 lines
644 B
C#
31 lines
644 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace Gst.Rtp {
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
#region Autogenerated code
|
|
[GLib.GType (typeof (Gst.Rtp.RTPProfileGType))]
|
|
public enum RTPProfile {
|
|
|
|
Unknown = 0,
|
|
Avp = 1,
|
|
Savp = 2,
|
|
Avpf = 3,
|
|
Savpf = 4,
|
|
}
|
|
|
|
internal class RTPProfileGType {
|
|
[DllImport ("gstrtp-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
|
static extern IntPtr gst_rtp_profile_get_type ();
|
|
|
|
public static GLib.GType GType {
|
|
get {
|
|
return new GLib.GType (gst_rtp_profile_get_type ());
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
}
|