Advertisement
Forage

Untitled

Sep 21st, 2011
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.21 KB | None | 0 0
  1. // This file was generated by the Gtk# code generator.
  2. // Any changes made will be lost if regenerated.
  3.  
  4. namespace Gst.PbUtils {
  5.  
  6.     using System;
  7.     using System.Collections;
  8.     using System.Runtime.InteropServices;
  9.  
  10. #region Autogenerated code
  11.     public partial class DiscovererAudioInfo {
  12.  
  13.         [DllImport("libgstpbutils-0.10.dll", CallingConvention = CallingConvention.Cdecl)]
  14.         static extern uint gst_discoverer_audio_info_get_channels(IntPtr raw);
  15.  
  16.         public uint Channels {
  17.             get {
  18.                 uint raw_ret = gst_discoverer_audio_info_get_channels(Handle);
  19.                 uint ret = raw_ret;
  20.                 return ret;
  21.             }
  22.         }
  23.  
  24.         [DllImport("libgstpbutils-0.10.dll", CallingConvention = CallingConvention.Cdecl)]
  25.         static extern IntPtr gst_discoverer_audio_info_get_type();
  26.  
  27.         public static new GLib.GType GType {
  28.             get {
  29.                 IntPtr raw_ret = gst_discoverer_audio_info_get_type();
  30.                 GLib.GType ret = new GLib.GType(raw_ret);
  31.                 return ret;
  32.             }
  33.         }
  34.  
  35.         [DllImport("libgstpbutils-0.10.dll", CallingConvention = CallingConvention.Cdecl)]
  36.         static extern uint gst_discoverer_audio_info_get_depth(IntPtr raw);
  37.  
  38.         public uint Depth {
  39.             get {
  40.                 uint raw_ret = gst_discoverer_audio_info_get_depth(Handle);
  41.                 uint ret = raw_ret;
  42.                 return ret;
  43.             }
  44.         }
  45.  
  46.         [DllImport("libgstpbutils-0.10.dll", CallingConvention = CallingConvention.Cdecl)]
  47.         static extern uint gst_discoverer_audio_info_get_bitrate(IntPtr raw);
  48.  
  49.         public uint Bitrate {
  50.             get {
  51.                 uint raw_ret = gst_discoverer_audio_info_get_bitrate(Handle);
  52.                 uint ret = raw_ret;
  53.                 return ret;
  54.             }
  55.         }
  56.  
  57.         [DllImport("libgstpbutils-0.10.dll", CallingConvention = CallingConvention.Cdecl)]
  58.         static extern uint gst_discoverer_audio_info_get_sample_rate(IntPtr raw);
  59.  
  60.         public uint SampleRate {
  61.             get {
  62.                 uint raw_ret = gst_discoverer_audio_info_get_sample_rate(Handle);
  63.                 uint ret = raw_ret;
  64.                 return ret;
  65.             }
  66.         }
  67.  
  68.         [DllImport("libgstpbutils-0.10.dll", CallingConvention = CallingConvention.Cdecl)]
  69.         static extern uint gst_discoverer_audio_info_get_max_bitrate(IntPtr raw);
  70.  
  71.         public uint MaxBitrate {
  72.             get {
  73.                 uint raw_ret = gst_discoverer_audio_info_get_max_bitrate(Handle);
  74.                 uint ret = raw_ret;
  75.                 return ret;
  76.             }
  77.         }
  78.  
  79. #endregion
  80.     }
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement