gstreamer/subprojects/gstreamer-sharp/sources/generated/Gst.PbUtils/Global.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

590 lines
30 KiB
C#
Raw Normal View History

2018-01-29 18:56:49 +00:00
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gst.PbUtils {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
#region Autogenerated code
public partial class Global {
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gst_codec_utils_aac_caps_set_level_and_profile(IntPtr caps, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex=2)]byte[] audio_config, uint len);
2018-01-29 18:56:49 +00:00
public static bool CodecUtilsAacCapsSetLevelAndProfile(Gst.Caps caps, byte[] audio_config) {
uint len = (uint)(audio_config == null ? 0 : audio_config.Length);
2018-01-29 18:56:49 +00:00
bool raw_ret = gst_codec_utils_aac_caps_set_level_and_profile(caps == null ? IntPtr.Zero : caps.Handle, audio_config, len);
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern uint gst_codec_utils_aac_get_channels([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] audio_config, uint len);
2018-01-29 18:56:49 +00:00
public static uint CodecUtilsAacGetChannels(byte[] audio_config) {
uint len = (uint)(audio_config == null ? 0 : audio_config.Length);
2018-01-29 18:56:49 +00:00
uint raw_ret = gst_codec_utils_aac_get_channels(audio_config, len);
uint ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern int gst_codec_utils_aac_get_index_from_sample_rate(uint rate);
public static int CodecUtilsAacGetIndexFromSampleRate(uint rate) {
int raw_ret = gst_codec_utils_aac_get_index_from_sample_rate(rate);
int ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_aac_get_level([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] audio_config, uint len);
2018-01-29 18:56:49 +00:00
public static string CodecUtilsAacGetLevel(byte[] audio_config) {
uint len = (uint)(audio_config == null ? 0 : audio_config.Length);
2018-01-29 18:56:49 +00:00
IntPtr raw_ret = gst_codec_utils_aac_get_level(audio_config, len);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_aac_get_profile([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] audio_config, uint len);
2018-01-29 18:56:49 +00:00
public static string CodecUtilsAacGetProfile(byte[] audio_config) {
uint len = (uint)(audio_config == null ? 0 : audio_config.Length);
2018-01-29 18:56:49 +00:00
IntPtr raw_ret = gst_codec_utils_aac_get_profile(audio_config, len);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern uint gst_codec_utils_aac_get_sample_rate([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] audio_config, uint len);
2018-01-29 18:56:49 +00:00
public static uint CodecUtilsAacGetSampleRate(byte[] audio_config) {
uint len = (uint)(audio_config == null ? 0 : audio_config.Length);
2018-01-29 18:56:49 +00:00
uint raw_ret = gst_codec_utils_aac_get_sample_rate(audio_config, len);
uint ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern uint gst_codec_utils_aac_get_sample_rate_from_index(uint sr_idx);
public static uint CodecUtilsAacGetSampleRateFromIndex(uint sr_idx) {
uint raw_ret = gst_codec_utils_aac_get_sample_rate_from_index(sr_idx);
uint ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_caps_from_mime_codec(IntPtr codecs_field);
2018-01-29 18:56:49 +00:00
public static Gst.Caps CodecUtilsCapsFromMimeCodec(string codecs_field) {
IntPtr native_codecs_field = GLib.Marshaller.StringToPtrGStrdup (codecs_field);
IntPtr raw_ret = gst_codec_utils_caps_from_mime_codec(native_codecs_field);
Gst.Caps ret = raw_ret == IntPtr.Zero ? null : (Gst.Caps) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Caps), true);
GLib.Marshaller.Free (native_codecs_field);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_caps_get_mime_codec(IntPtr caps);
public static string CodecUtilsCapsGetMimeCodec(Gst.Caps caps) {
IntPtr raw_ret = gst_codec_utils_caps_get_mime_codec(caps == null ? IntPtr.Zero : caps.Handle);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gst_codec_utils_h264_caps_set_level_and_profile(IntPtr caps, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex=2)]byte[] sps, uint len);
public static bool CodecUtilsH264CapsSetLevelAndProfile(Gst.Caps caps, byte[] sps) {
uint len = (uint)(sps == null ? 0 : sps.Length);
2018-01-29 18:56:49 +00:00
bool raw_ret = gst_codec_utils_h264_caps_set_level_and_profile(caps == null ? IntPtr.Zero : caps.Handle, sps, len);
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_h264_get_level([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] sps, uint len);
2018-01-29 18:56:49 +00:00
public static string CodecUtilsH264GetLevel(byte[] sps) {
uint len = (uint)(sps == null ? 0 : sps.Length);
2018-01-29 18:56:49 +00:00
IntPtr raw_ret = gst_codec_utils_h264_get_level(sps, len);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern byte gst_codec_utils_h264_get_level_idc(IntPtr level);
public static byte CodecUtilsH264GetLevelIdc(string level) {
IntPtr native_level = GLib.Marshaller.StringToPtrGStrdup (level);
byte raw_ret = gst_codec_utils_h264_get_level_idc(native_level);
byte ret = raw_ret;
GLib.Marshaller.Free (native_level);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_h264_get_profile([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] sps, uint len);
2018-01-29 18:56:49 +00:00
public static string CodecUtilsH264GetProfile(byte[] sps) {
uint len = (uint)(sps == null ? 0 : sps.Length);
2018-01-29 18:56:49 +00:00
IntPtr raw_ret = gst_codec_utils_h264_get_profile(sps, len);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gst_codec_utils_h264_get_profile_flags_level([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] codec_data, uint len, out byte profile, out byte flags, out byte level);
public static bool CodecUtilsH264GetProfileFlagsLevel(byte[] codec_data, out byte profile, out byte flags, out byte level) {
uint len = (uint)(codec_data == null ? 0 : codec_data.Length);
bool raw_ret = gst_codec_utils_h264_get_profile_flags_level(codec_data, len, out profile, out flags, out level);
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gst_codec_utils_h265_caps_set_level_tier_and_profile(IntPtr caps, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex=2)]byte[] profile_tier_level, uint len);
2018-01-29 18:56:49 +00:00
public static bool CodecUtilsH265CapsSetLevelTierAndProfile(Gst.Caps caps, byte[] profile_tier_level) {
uint len = (uint)(profile_tier_level == null ? 0 : profile_tier_level.Length);
2018-01-29 18:56:49 +00:00
bool raw_ret = gst_codec_utils_h265_caps_set_level_tier_and_profile(caps == null ? IntPtr.Zero : caps.Handle, profile_tier_level, len);
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_h265_get_level([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] profile_tier_level, uint len);
2018-01-29 18:56:49 +00:00
public static string CodecUtilsH265GetLevel(byte[] profile_tier_level) {
uint len = (uint)(profile_tier_level == null ? 0 : profile_tier_level.Length);
2018-01-29 18:56:49 +00:00
IntPtr raw_ret = gst_codec_utils_h265_get_level(profile_tier_level, len);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern byte gst_codec_utils_h265_get_level_idc(IntPtr level);
public static byte CodecUtilsH265GetLevelIdc(string level) {
IntPtr native_level = GLib.Marshaller.StringToPtrGStrdup (level);
byte raw_ret = gst_codec_utils_h265_get_level_idc(native_level);
byte ret = raw_ret;
GLib.Marshaller.Free (native_level);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_h265_get_profile([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] profile_tier_level, uint len);
2018-01-29 18:56:49 +00:00
public static string CodecUtilsH265GetProfile(byte[] profile_tier_level) {
uint len = (uint)(profile_tier_level == null ? 0 : profile_tier_level.Length);
2018-01-29 18:56:49 +00:00
IntPtr raw_ret = gst_codec_utils_h265_get_profile(profile_tier_level, len);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_h265_get_tier([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] profile_tier_level, uint len);
2018-01-29 18:56:49 +00:00
public static string CodecUtilsH265GetTier(byte[] profile_tier_level) {
uint len = (uint)(profile_tier_level == null ? 0 : profile_tier_level.Length);
2018-01-29 18:56:49 +00:00
IntPtr raw_ret = gst_codec_utils_h265_get_tier(profile_tier_level, len);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gst_codec_utils_mpeg4video_caps_set_level_and_profile(IntPtr caps, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex=2)]byte[] vis_obj_seq, uint len);
2018-01-29 18:56:49 +00:00
public static bool CodecUtilsMpeg4videoCapsSetLevelAndProfile(Gst.Caps caps, byte[] vis_obj_seq) {
uint len = (uint)(vis_obj_seq == null ? 0 : vis_obj_seq.Length);
2018-01-29 18:56:49 +00:00
bool raw_ret = gst_codec_utils_mpeg4video_caps_set_level_and_profile(caps == null ? IntPtr.Zero : caps.Handle, vis_obj_seq, len);
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_mpeg4video_get_level([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] vis_obj_seq, uint len);
2018-01-29 18:56:49 +00:00
public static string CodecUtilsMpeg4videoGetLevel(byte[] vis_obj_seq) {
uint len = (uint)(vis_obj_seq == null ? 0 : vis_obj_seq.Length);
2018-01-29 18:56:49 +00:00
IntPtr raw_ret = gst_codec_utils_mpeg4video_get_level(vis_obj_seq, len);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_codec_utils_mpeg4video_get_profile([MarshalAs(UnmanagedType.LPArray, SizeParamIndex=1)]byte[] vis_obj_seq, uint len);
2018-01-29 18:56:49 +00:00
public static string CodecUtilsMpeg4videoGetProfile(byte[] vis_obj_seq) {
uint len = (uint)(vis_obj_seq == null ? 0 : vis_obj_seq.Length);
2018-01-29 18:56:49 +00:00
IntPtr raw_ret = gst_codec_utils_mpeg4video_get_profile(vis_obj_seq, len);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_codec_utils_opus_create_caps(uint rate, byte channels, byte channel_mapping_family, byte stream_count, byte coupled_count, byte[] channel_mapping);
public static Gst.Caps CodecUtilsOpusCreateCaps(uint rate, byte channels, byte channel_mapping_family, byte stream_count, byte coupled_count, byte[] channel_mapping) {
IntPtr raw_ret = gst_codec_utils_opus_create_caps(rate, channels, channel_mapping_family, stream_count, coupled_count, channel_mapping);
Gst.Caps ret = raw_ret == IntPtr.Zero ? null : (Gst.Caps) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Caps), true);
return ret;
}
public static Gst.Caps CodecUtilsOpusCreateCaps(uint rate, byte channels, byte channel_mapping_family, byte stream_count, byte coupled_count) {
return CodecUtilsOpusCreateCaps (rate, channels, channel_mapping_family, stream_count, coupled_count, null);
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_codec_utils_opus_create_caps_from_header(IntPtr header, IntPtr comments);
public static Gst.Caps CodecUtilsOpusCreateCapsFromHeader(Gst.Buffer header, Gst.Buffer comments) {
IntPtr raw_ret = gst_codec_utils_opus_create_caps_from_header(header == null ? IntPtr.Zero : header.Handle, comments == null ? IntPtr.Zero : comments.Handle);
Gst.Caps ret = raw_ret == IntPtr.Zero ? null : (Gst.Caps) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Caps), true);
return ret;
}
public static Gst.Caps CodecUtilsOpusCreateCapsFromHeader(Gst.Buffer header) {
return CodecUtilsOpusCreateCapsFromHeader (header, null);
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_codec_utils_opus_create_header(uint rate, byte channels, byte channel_mapping_family, byte stream_count, byte coupled_count, byte[] channel_mapping, ushort pre_skip, short output_gain);
public static Gst.Buffer CodecUtilsOpusCreateHeader(uint rate, byte channels, byte channel_mapping_family, byte stream_count, byte coupled_count, byte[] channel_mapping, ushort pre_skip, short output_gain) {
IntPtr raw_ret = gst_codec_utils_opus_create_header(rate, channels, channel_mapping_family, stream_count, coupled_count, channel_mapping, pre_skip, output_gain);
Gst.Buffer ret = raw_ret == IntPtr.Zero ? null : (Gst.Buffer) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Buffer), true);
return ret;
}
public static Gst.Buffer CodecUtilsOpusCreateHeader(uint rate, byte channels, byte channel_mapping_family, byte stream_count, byte coupled_count, ushort pre_skip, short output_gain) {
return CodecUtilsOpusCreateHeader (rate, channels, channel_mapping_family, stream_count, coupled_count, null, pre_skip, output_gain);
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gst_codec_utils_opus_parse_caps(IntPtr caps, out uint rate, out byte channels, out byte channel_mapping_family, out byte stream_count, out byte coupled_count, [MarshalAs(UnmanagedType.LPArray, SizeConst=256)]out byte[] channel_mapping);
public static bool CodecUtilsOpusParseCaps(Gst.Caps caps, out uint rate, out byte channels, out byte channel_mapping_family, out byte stream_count, out byte coupled_count, out byte[] channel_mapping) {
bool raw_ret = gst_codec_utils_opus_parse_caps(caps == null ? IntPtr.Zero : caps.Handle, out rate, out channels, out channel_mapping_family, out stream_count, out coupled_count, out channel_mapping);
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gst_codec_utils_opus_parse_header(IntPtr header, out uint rate, out byte channels, out byte channel_mapping_family, out byte stream_count, out byte coupled_count, [MarshalAs(UnmanagedType.LPArray, SizeConst=256)]out byte[] channel_mapping, out ushort pre_skip, out short output_gain);
public static bool CodecUtilsOpusParseHeader(Gst.Buffer header, out uint rate, out byte channels, out byte channel_mapping_family, out byte stream_count, out byte coupled_count, out byte[] channel_mapping, out ushort pre_skip, out short output_gain) {
bool raw_ret = gst_codec_utils_opus_parse_header(header == null ? IntPtr.Zero : header.Handle, out rate, out channels, out channel_mapping_family, out stream_count, out coupled_count, out channel_mapping, out pre_skip, out output_gain);
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_encoding_list_all_targets(IntPtr categoryname);
public static Gst.PbUtils.EncodingTarget[] EncodingListAllTargets(string categoryname) {
IntPtr native_categoryname = GLib.Marshaller.StringToPtrGStrdup (categoryname);
IntPtr raw_ret = gst_encoding_list_all_targets(native_categoryname);
Gst.PbUtils.EncodingTarget[] ret = (Gst.PbUtils.EncodingTarget[]) GLib.Marshaller.ListPtrToArray (raw_ret, typeof(GLib.List), true, true, typeof(Gst.PbUtils.EncodingTarget));
GLib.Marshaller.Free (native_categoryname);
return ret;
}
public static Gst.PbUtils.EncodingTarget[] EncodingListAllTargets() {
return EncodingListAllTargets (null);
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_encoding_list_available_categories();
public static string[] EncodingListAvailableCategories() {
IntPtr raw_ret = gst_encoding_list_available_categories();
string[] ret = (string[]) GLib.Marshaller.ListPtrToArray (raw_ret, typeof(GLib.List), true, true, typeof(string));
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern bool gst_install_plugins_installation_in_progress();
public static bool InstallPluginsInstallationInProgress() {
bool raw_ret = gst_install_plugins_installation_in_progress();
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_install_plugins_return_get_name(int _ret);
public static string InstallPluginsReturnGetName(Gst.PbUtils.InstallPluginsReturn _ret) {
IntPtr raw_ret = gst_install_plugins_return_get_name((int) _ret);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern bool gst_install_plugins_supported();
public static bool InstallPluginsSupported() {
bool raw_ret = gst_install_plugins_supported();
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern bool gst_is_missing_plugin_message(IntPtr msg);
public static bool IsMissingPluginMessage(Gst.Message msg) {
bool raw_ret = gst_is_missing_plugin_message(msg == null ? IntPtr.Zero : msg.Handle);
bool ret = raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_decoder_installer_detail_new(IntPtr decode_caps);
public static string MissingDecoderInstallerDetailNew(Gst.Caps decode_caps) {
IntPtr raw_ret = gst_missing_decoder_installer_detail_new(decode_caps == null ? IntPtr.Zero : decode_caps.Handle);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_decoder_message_new(IntPtr element, IntPtr decode_caps);
public static Gst.Message MissingDecoderMessageNew(Gst.Element element, Gst.Caps decode_caps) {
IntPtr raw_ret = gst_missing_decoder_message_new(element == null ? IntPtr.Zero : element.Handle, decode_caps == null ? IntPtr.Zero : decode_caps.Handle);
Gst.Message ret = raw_ret == IntPtr.Zero ? null : (Gst.Message) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Message), true);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_element_installer_detail_new(IntPtr factory_name);
public static string MissingElementInstallerDetailNew(string factory_name) {
IntPtr native_factory_name = GLib.Marshaller.StringToPtrGStrdup (factory_name);
IntPtr raw_ret = gst_missing_element_installer_detail_new(native_factory_name);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
GLib.Marshaller.Free (native_factory_name);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_element_message_new(IntPtr element, IntPtr factory_name);
public static Gst.Message MissingElementMessageNew(Gst.Element element, string factory_name) {
IntPtr native_factory_name = GLib.Marshaller.StringToPtrGStrdup (factory_name);
IntPtr raw_ret = gst_missing_element_message_new(element == null ? IntPtr.Zero : element.Handle, native_factory_name);
Gst.Message ret = raw_ret == IntPtr.Zero ? null : (Gst.Message) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Message), true);
GLib.Marshaller.Free (native_factory_name);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_encoder_installer_detail_new(IntPtr encode_caps);
public static string MissingEncoderInstallerDetailNew(Gst.Caps encode_caps) {
IntPtr raw_ret = gst_missing_encoder_installer_detail_new(encode_caps == null ? IntPtr.Zero : encode_caps.Handle);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_encoder_message_new(IntPtr element, IntPtr encode_caps);
public static Gst.Message MissingEncoderMessageNew(Gst.Element element, Gst.Caps encode_caps) {
IntPtr raw_ret = gst_missing_encoder_message_new(element == null ? IntPtr.Zero : element.Handle, encode_caps == null ? IntPtr.Zero : encode_caps.Handle);
Gst.Message ret = raw_ret == IntPtr.Zero ? null : (Gst.Message) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Message), true);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_plugin_message_get_description(IntPtr msg);
public static string MissingPluginMessageGetDescription(Gst.Message msg) {
IntPtr raw_ret = gst_missing_plugin_message_get_description(msg == null ? IntPtr.Zero : msg.Handle);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_plugin_message_get_installer_detail(IntPtr msg);
public static string MissingPluginMessageGetInstallerDetail(Gst.Message msg) {
IntPtr raw_ret = gst_missing_plugin_message_get_installer_detail(msg == null ? IntPtr.Zero : msg.Handle);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_uri_sink_installer_detail_new(IntPtr protocol);
public static string MissingUriSinkInstallerDetailNew(string protocol) {
IntPtr native_protocol = GLib.Marshaller.StringToPtrGStrdup (protocol);
IntPtr raw_ret = gst_missing_uri_sink_installer_detail_new(native_protocol);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
GLib.Marshaller.Free (native_protocol);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_uri_sink_message_new(IntPtr element, IntPtr protocol);
public static Gst.Message MissingUriSinkMessageNew(Gst.Element element, string protocol) {
IntPtr native_protocol = GLib.Marshaller.StringToPtrGStrdup (protocol);
IntPtr raw_ret = gst_missing_uri_sink_message_new(element == null ? IntPtr.Zero : element.Handle, native_protocol);
Gst.Message ret = raw_ret == IntPtr.Zero ? null : (Gst.Message) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Message), true);
GLib.Marshaller.Free (native_protocol);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_uri_source_installer_detail_new(IntPtr protocol);
public static string MissingUriSourceInstallerDetailNew(string protocol) {
IntPtr native_protocol = GLib.Marshaller.StringToPtrGStrdup (protocol);
IntPtr raw_ret = gst_missing_uri_source_installer_detail_new(native_protocol);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
GLib.Marshaller.Free (native_protocol);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_missing_uri_source_message_new(IntPtr element, IntPtr protocol);
public static Gst.Message MissingUriSourceMessageNew(Gst.Element element, string protocol) {
IntPtr native_protocol = GLib.Marshaller.StringToPtrGStrdup (protocol);
IntPtr raw_ret = gst_missing_uri_source_message_new(element == null ? IntPtr.Zero : element.Handle, native_protocol);
Gst.Message ret = raw_ret == IntPtr.Zero ? null : (Gst.Message) GLib.Opaque.GetOpaque (raw_ret, typeof (Gst.Message), true);
GLib.Marshaller.Free (native_protocol);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern bool gst_pb_utils_add_codec_description_to_tag_list(IntPtr taglist, IntPtr codec_tag, IntPtr caps);
public static bool PbUtilsAddCodecDescriptionToTagList(Gst.TagList taglist, string codec_tag, Gst.Caps caps) {
IntPtr native_codec_tag = GLib.Marshaller.StringToPtrGStrdup (codec_tag);
bool raw_ret = gst_pb_utils_add_codec_description_to_tag_list(taglist == null ? IntPtr.Zero : taglist.Handle, native_codec_tag, caps == null ? IntPtr.Zero : caps.Handle);
bool ret = raw_ret;
GLib.Marshaller.Free (native_codec_tag);
return ret;
}
public static bool PbUtilsAddCodecDescriptionToTagList(Gst.TagList taglist, Gst.Caps caps) {
return PbUtilsAddCodecDescriptionToTagList (taglist, null, caps);
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gst_pb_utils_get_caps_description_flags(IntPtr caps);
public static Gst.PbUtils.PbUtilsCapsDescriptionFlags PbUtilsGetCapsDescriptionFlags(Gst.Caps caps) {
int raw_ret = gst_pb_utils_get_caps_description_flags(caps == null ? IntPtr.Zero : caps.Handle);
Gst.PbUtils.PbUtilsCapsDescriptionFlags ret = (Gst.PbUtils.PbUtilsCapsDescriptionFlags) raw_ret;
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_pb_utils_get_codec_description(IntPtr caps);
public static string PbUtilsGetCodecDescription(Gst.Caps caps) {
IntPtr raw_ret = gst_pb_utils_get_codec_description(caps == null ? IntPtr.Zero : caps.Handle);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_pb_utils_get_decoder_description(IntPtr caps);
public static string PbUtilsGetDecoderDescription(Gst.Caps caps) {
IntPtr raw_ret = gst_pb_utils_get_decoder_description(caps == null ? IntPtr.Zero : caps.Handle);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_pb_utils_get_element_description(IntPtr factory_name);
public static string PbUtilsGetElementDescription(string factory_name) {
IntPtr native_factory_name = GLib.Marshaller.StringToPtrGStrdup (factory_name);
IntPtr raw_ret = gst_pb_utils_get_element_description(native_factory_name);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
GLib.Marshaller.Free (native_factory_name);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_pb_utils_get_encoder_description(IntPtr caps);
public static string PbUtilsGetEncoderDescription(Gst.Caps caps) {
IntPtr raw_ret = gst_pb_utils_get_encoder_description(caps == null ? IntPtr.Zero : caps.Handle);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_pb_utils_get_file_extension_from_caps(IntPtr caps);
public static string PbUtilsGetFileExtensionFromCaps(Gst.Caps caps) {
IntPtr raw_ret = gst_pb_utils_get_file_extension_from_caps(caps == null ? IntPtr.Zero : caps.Handle);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_pb_utils_get_sink_description(IntPtr protocol);
public static string PbUtilsGetSinkDescription(string protocol) {
IntPtr native_protocol = GLib.Marshaller.StringToPtrGStrdup (protocol);
IntPtr raw_ret = gst_pb_utils_get_sink_description(native_protocol);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
GLib.Marshaller.Free (native_protocol);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_pb_utils_get_source_description(IntPtr protocol);
public static string PbUtilsGetSourceDescription(string protocol) {
IntPtr native_protocol = GLib.Marshaller.StringToPtrGStrdup (protocol);
IntPtr raw_ret = gst_pb_utils_get_source_description(native_protocol);
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
GLib.Marshaller.Free (native_protocol);
return ret;
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern void gst_pb_utils_init();
public static void PbUtilsInit() {
gst_pb_utils_init();
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern void gst_plugins_base_version(out uint major, out uint minor, out uint micro, out uint nano);
public static void PluginsBaseVersion(out uint major, out uint minor, out uint micro, out uint nano) {
gst_plugins_base_version(out major, out minor, out micro, out nano);
}
[DllImport("gstpbutils-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_plugins_base_version_string();
public static string PluginsBaseVersionString() {
IntPtr raw_ret = gst_plugins_base_version_string();
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
return ret;
}
#endregion
}
}