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