Enum LogCategory

java.lang.Object
java.lang.Enum<LogCategory>
com.github.kokorin.jaffree.LogCategory
All Implemented Interfaces:
Serializable, Comparable<LogCategory>, java.lang.constant.Constable

public enum LogCategory extends Enum<LogCategory>
Log categories declared by ffmpeg as AVClassCategory.
  • Enum Constant Details

    • NA

      public static final LogCategory NA
    • INPUT

      public static final LogCategory INPUT
    • OUTPUT

      public static final LogCategory OUTPUT
    • MUXER

      public static final LogCategory MUXER
    • DEMUXER

      public static final LogCategory DEMUXER
    • ENCODER

      public static final LogCategory ENCODER
    • DECODER

      public static final LogCategory DECODER
    • FILTER

      public static final LogCategory FILTER
    • BITSTREAM_FILTER

      public static final LogCategory BITSTREAM_FILTER
    • SWSCALER

      public static final LogCategory SWSCALER
    • SWRESAMPLER

      public static final LogCategory SWRESAMPLER
    • DEVICE_VIDEO_OUTPUT

      public static final LogCategory DEVICE_VIDEO_OUTPUT
    • DEVICE_VIDEO_INPUT

      public static final LogCategory DEVICE_VIDEO_INPUT
    • DEVICE_AUDIO_OUTPUT

      public static final LogCategory DEVICE_AUDIO_OUTPUT
    • DEVICE_AUDIO_INPUT

      public static final LogCategory DEVICE_AUDIO_INPUT
    • DEVICE_OUTPUT

      public static final LogCategory DEVICE_OUTPUT
    • DEVICE_INPUT

      public static final LogCategory DEVICE_INPUT
    • NB

      public static final LogCategory NB
  • Method Details

    • values

      public static LogCategory[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static LogCategory valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • fromCode

      public static LogCategory fromCode(int code)
      Returns LogCategory with specified code.
      Parameters:
      code - category code
      Returns:
      LogCategory or null