示例#1
0
 private AudioStream(AudioStream def, IntPtr stream)
 {
     this.Player = def.Player;
     this.info   = def.info;
     this.stream = stream;
 }
示例#2
0
 private VideoStream(VideoStream def, IntPtr stream)
 {
     this.Player = def.Player;
     this.info   = def.info;
     this.stream = stream;
 }
示例#3
0
 public AudioStream(MoviePlayer player, int n)
 {
     this.Player = player;
     this.info   = new audiostreaminfo();
     player.get_audiostream((uint)n, ref info);
 }
示例#4
0
 public VideoStream(MoviePlayer player, int n)
 {
     this.Player = player;
     this.info   = new videostreaminfo();
     player.get_videostream((uint)n, ref info);
 }