Exemplo n.º 1
0
 internal void get_videostream(uint ind, ref videostreaminfo info)
 {
     Imports._player_get_videostream(this._player, ind, ref info);
 }
Exemplo n.º 2
0
 public VideoStream(MoviePlayer player, int n)
 {
     this.Player = player;
     this.info   = new videostreaminfo();
     player.get_videostream((uint)n, ref info);
 }
Exemplo n.º 3
0
 private VideoStream(VideoStream def, IntPtr stream)
 {
     this.Player = def.Player;
     this.info   = def.info;
     this.stream = stream;
 }
Exemplo n.º 4
0
 public static extern void _player_get_videostream(IntPtr player, uint ind, ref videostreaminfo info);