LiveVideoStatus.cs 532 B

12345678910111213
  1. namespace Vinno.vCloud.Common.FIS.LiveVideos
  2. {
  3. public enum LiveVideoStatus
  4. {
  5. Unknown = -1, //Unknown status, depends the handler.
  6. Success, //Status Success
  7. InvalidTerminalId, //The requested terminal's id is not this terminal/
  8. NoVideoInputDevice, // There is not video input device.
  9. VideoInputDeviceIoError, // the video device can not be opened.
  10. PushFailed, //Can not push video stream to the given url.
  11. DeviceIsInSetting // User is setting video device.
  12. }
  13. }