Table of contents

Enumeration VideoFrameQuality

VideoFrameQuality describes the quality of video frames.

  • Objective-C
  • Swift
typedef NS_ENUM(NSInteger, DSFrameQuality)
{
   /**The frame quality is measured to be high.*/
   FrameQualityHIGH,
   /**The frame quality is measured to be low.*/
   FrameQualityLOW,
   /**The frame quality is unknown.*/
   FrameQualityUNKNOWN
};
public enum VideoFrameQuality : Int
{
   /**The frame quality is measured to be high.*/
   case high
   /**The frame quality is measured to be low.*/
   case low
   /**The frame quality is unknown.*/
   case unknown
}

This page is compatible for: