Esempio n. 1
0
        public MediaManager()
        {
            _vpxDecoder = new VPXEncoder();
            _vpxDecoder.InitDecoder();

            _imageConverter = new ImageConvert();
        }
Esempio n. 2
0
        public MediaManager()
        {
            _vpxDecoder = new VPXEncoder();
            _vpxDecoder.InitDecoder();

            _imageConverter = new ImageConvert();
        }
Esempio n. 3
0
        public event Action <string> OnLocalVideoError = delegate { };       // Fires when there is an error communicating with the local webcam.
        //public event Action<string> OnRemoteVideoError;

        public MediaManager(bool useVideo = false)
        {
            _useVideo = useVideo;

            if (_useVideo == true)
            {
                _vpxDecoder = new VPXEncoder();
                _vpxDecoder.InitDecoder();

                _imageConverter = new ImageConvert();
            }
        }
Esempio n. 4
0
        /// <summary>
        /// This class manages different media renderers that can be included in a call, e.g. audio and video.
        /// </summary>
        /// <param name="dispatcher">Need a UI dispatcher so tasks can be executed on the UI thread. For example this object
        /// gets created when a button is clicked on and is therefore owned by the UI thread. When a call transfer completes the
        /// resources need to be closed without any UI interaction. In that case need to marshal cak to the UI thread.</param>
        /// <param name="useVideo">Set to true if the current call is going to be using video.</param>
        public MediaManager(Dispatcher dispatcher, bool useVideo = false)
        {
            _dispatcher = dispatcher;
            _useVideo   = useVideo;

            if (_useVideo)
            {
                _vpxDecoder = new VPXEncoder();
                _vpxDecoder.InitDecoder();

                _imageConverter = new ImageConvert();
            }
        }