Inheritance: IDisposable
コード例 #1
0
ファイル: VideoPlayer.cs プロジェクト: weimingtom/WarshipGirl
 public VideoPlayerBase(string file, bool asize = true)
 {
     FileName  = file;
     _autosize = asize;
     Decoder   = new VideoDecoder(BufferSize);
     Decoder.Open(FileName);
     if (_autosize)
     {
         Width  = Decoder.width;
         Height = Decoder.height;
     }
 }
コード例 #2
0
ファイル: VideoPlayer.cs プロジェクト: jxpxxzj/WarshipGirl
 public VideoPlayerBase(string file,bool asize=true)
 {
     FileName = file;
     _autosize = asize;
     Decoder = new VideoDecoder(BufferSize);
     Decoder.Open(FileName);
     if (_autosize)
     {
         Width = Decoder.width;
         Height = Decoder.height;
     }
 }