Enum AVCodecFlagType

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      AIC
      H.263 advanced intra coding / MPEG-4 AC prediction.
      BITEXACT
      Use only bitexact functions (except (I)DCT).
      CGOP
      Closed GOP.
      EMU_EDGE
      Do not draw edges.
      GLOBAL_HEADER
      Place global headers in extradata instead of every keyframe.
      GMC
      Use gmc.
      GRAY
      Only decode/encode grayscale.
      ILDCT
      Use interlaced DCT.
      ILME
      Interlaced motion estimation.
      INPUT_PRESERVED
      Use internal 2-pass ratecontrol in first pass mode.
      LOOP
      Use loop filter.
      LOW_DELAY
      Force low delay.
      MV0
      Always try a mb with mv="0,0".
      MV4
      Use four motion vectors per macroblock (MPEG-4).
      NAQ  
      OUTPUT_CORRUPT
      Output even potentially corrupted frames.
      PASS1  
      PASS2
      Use internal 2-pass ratecontrol in second pass mode.
      PSNR
      Error[?] variables will be set during encoding.
      QPEL
      Use 1/4-pel motion compensation.
      QSCALE
      Use fixed qscale.
      TRUNCATED
      Normalize adaptive quantization.
      UNALIGNED
      Allow decoders to produce unaligned output.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static AVCodecFlagType findByName​(java.lang.String name)  
      java.lang.String getName()  
      static AVCodecFlagType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static AVCodecFlagType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • UNALIGNED

        public static final AVCodecFlagType UNALIGNED
        Allow decoders to produce unaligned output.
      • MV4

        public static final AVCodecFlagType MV4
        Use four motion vectors per macroblock (MPEG-4).
      • QPEL

        public static final AVCodecFlagType QPEL
        Use 1/4-pel motion compensation.
      • MV0

        public static final AVCodecFlagType MV0
        Always try a mb with mv="0,0".
      • INPUT_PRESERVED

        public static final AVCodecFlagType INPUT_PRESERVED
        Use internal 2-pass ratecontrol in first pass mode.
      • PASS2

        public static final AVCodecFlagType PASS2
        Use internal 2-pass ratecontrol in second pass mode.
      • GRAY

        public static final AVCodecFlagType GRAY
        Only decode/encode grayscale.
      • EMU_EDGE

        public static final AVCodecFlagType EMU_EDGE
        Do not draw edges.
      • PSNR

        public static final AVCodecFlagType PSNR
        Error[?] variables will be set during encoding.
      • TRUNCATED

        public static final AVCodecFlagType TRUNCATED
        Normalize adaptive quantization.
      • LOW_DELAY

        public static final AVCodecFlagType LOW_DELAY
        Force low delay.
      • GLOBAL_HEADER

        public static final AVCodecFlagType GLOBAL_HEADER
        Place global headers in extradata instead of every keyframe.
      • BITEXACT

        public static final AVCodecFlagType BITEXACT
        Use only bitexact functions (except (I)DCT).
      • AIC

        public static final AVCodecFlagType AIC
        H.263 advanced intra coding / MPEG-4 AC prediction.
      • ILME

        public static final AVCodecFlagType ILME
        Interlaced motion estimation.
      • OUTPUT_CORRUPT

        public static final AVCodecFlagType OUTPUT_CORRUPT
        Output even potentially corrupted frames.
    • Method Detail

      • values

        public static AVCodecFlagType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AVCodecFlagType c : AVCodecFlagType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AVCodecFlagType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface NamedType
      • findByName

        public static AVCodecFlagType findByName​(java.lang.String name)