Beispiel #1
0
        public VideoDecoder(NvGpu gpu)
        {
            _gpu = gpu;

            _h264Decoder = new H264Decoder();
            _vp9Decoder  = new Vp9Decoder();
        }
Beispiel #2
0
        public VideoDecoder(NvGpu Gpu)
        {
            this.Gpu = Gpu;

            H264Decoder = new H264Decoder();
            Vp9Decoder  = new Vp9Decoder();
        }
Beispiel #3
0
 public VideoDecoder()
 {
     _h264Decoder = new H264Decoder();
     _vp9Decoder  = new Vp9Decoder();
 }