gstreamer/sources/generated/Gst.Rtp/RTPPayload.cs
Aaron Boxer 38a0731461 build: on Windows, use MSVC format for gst*, glib and gobject dlls
Generated files were generated using 'ninja -C build update-code'
except for libgstfft, which had to be updated manually
(see issue #25).

Note: with these changes, building on MS Windows will require
the msvc compiler - mingw will no longer work.
2019-11-18 14:19:39 -05:00

52 lines
931 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.RTPPayloadGType))]
public enum RTPPayload {
Pcmu = 0,
_1016 = 1,
G721 = 2,
Gsm = 3,
G723 = 4,
Dvi48000 = 5,
Dvi416000 = 6,
Lpc = 7,
Pcma = 8,
G722 = 9,
L16Stereo = 10,
L16Mono = 11,
Qcelp = 12,
Cn = 13,
Mpa = 14,
G728 = 15,
Dvi411025 = 16,
Dvi422050 = 17,
G729 = 18,
Cellb = 25,
Jpeg = 26,
Nv = 28,
H261 = 31,
Mpv = 32,
Mp2t = 33,
H263 = 34,
}
internal class RTPPayloadGType {
[DllImport ("gstrtp-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_rtp_payload_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (gst_rtp_payload_get_type ());
}
}
}
#endregion
}