Documentation
Table of contents

Enumeration VideoFrameQuality

VideoFrameQuality describes the quality of video frames.

  • JavaScript
  • Android
  • Objective-C
  • Swift
  • C++
  • C#
  • Python
enum EnumVideoFrameQuality {
   /**The frame quality is measured to be high.*/
   VFQ_HIGH = 0,
   /**The frame quality is measured to be low.*/
   VFQ_LOW = 1,
   /**The frame quality is unknown.*/
   VFQ_UNKNOWN = 2
}
@Retention(RetentionPolicy.CLASS)
public @interface EnumVideoFrameQuality {
   /**The frame quality is measured to be high.*/
   public static final int VFQ_HIGH = 0;
   /**The frame quality is measured to be low.*/
   public static final int VFQ_LOW = 1;
   /**The frame quality is unknown.*/
   public static final int VFQ_UNKNOWN = 2;
}
typedef NS_ENUM(NSInteger, DSVideoFrameQuality)
{
   /**The frame quality is measured to be high.*/
   VideoFrameQualityHigh,
   /**The frame quality is measured to be low.*/
   VideoFrameQualityLow,
   /**The frame quality is unknown.*/
   VideoFrameQualityUnknown
};
public enum VideoFrameQuality : Int
{
   /**The frame quality is measured to be high.*/
   high,
   /**The frame quality is measured to be low.*/
   low,
   /**The frame quality is unknown.*/
   unknown
}
typedef enum VideoFrameQuality {
   /**The frame quality is measured to be high.*/
   VFQ_HIGH,
   /**The frame quality is measured to be low.*/
   VFQ_LOW,
   /**The frame quality is unknown.*/
   VFQ_UNKNOWN
} VideoFrameQuality;
public enum EnumVideoFrameQuality
{
    /**The frame quality is measured to be high.*/
    VFQ_HIGH,
    /**The frame quality is measured to be low.*/
    VFQ_LOW,
    /**The frame quality is unknown.*/
    VFQ_UNKNOWN
}
class EnumVideoFrameQuality(IntEnum):
    #The frame quality is measured to be high.
    VFQ_HIGH
    #The frame quality is measured to be low.
    VFQ_LOW
    #The frame quality is unknown.
    VFQ_UNKNOWN

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article:

latest version

    Change +