EnumResolution
Enumeration Resolution describes the resolution.
- Objective-C
- Swift
typedef NS_ENUM(NSInteger, DSResolution) { /** * Deprecated */ DSResolutionAuto = 0, /** * Set the video streaming to the 480P resolution. */ DSResolution480P = 1, /** * Set the video streaming to the 720P resolution. */ DSResolution720P = 2, /** * Set the video streaming to the 480P resolution. */ DSResolution1080P = 3, /** * Set the video streaming to the 4K resolution. */ DSResolution4K = 4 };public enum Resolution : Int{ /** * Deprecated */ auto = 0 /** * Set the video streaming to the 480P resolution. */ 480P = 1 /** * Set the video streaming to the 720P resolution. */ 720P = 2 /** * Set the video streaming to the 480P resolution. */ 1080P = 3 /** * Set the video streaming to the 4K resolution. */ 4K = 4 }