예제 #1
0
 internal void get_audiostream(uint ind, ref audiostreaminfo info)
 {
     Imports._player_get_audiostream(this._player, ind, ref info);
 }
예제 #2
0
 public AudioStream(MoviePlayer player, int n)
 {
     this.Player = player;
     this.info   = new audiostreaminfo();
     player.get_audiostream((uint)n, ref info);
 }
예제 #3
0
 private AudioStream(AudioStream def, IntPtr stream)
 {
     this.Player = def.Player;
     this.info   = def.info;
     this.stream = stream;
 }
예제 #4
0
 public static extern void _player_get_audiostream(IntPtr player, uint ind, ref audiostreaminfo info);