Enum OptionType
Represents the different types of options available in the FFmpeg library.
Namespace: FFmpeg.Options
Assembly: FFmpeg.dll
Syntax
public enum OptionType
Fields
| Name | Description |
|---|---|
| ArrayFlag | Indicates that the option type is an array of the described type. |
| Binary | Binary data, with length specified by an integer following a pointer. |
| BinaryArray | An array of binary data. |
| Bool | A boolean value (true/false). |
| BoolArray | An array of boolean values. |
| ChannelLayout | A channel layout. |
| ChannelLayoutArray | An array of channel layouts. |
| Color | A color value. |
| ColorArray | An array of color values. |
| Constant | A constant value. |
| ConstantArray | An array of constants. |
| Dictionary | A dictionary of key-value pairs. |
| DictionaryArray | An array of dictionary values. |
| Double | A double-precision floating-point value. |
| DoubleArray | An array of double-precision floating-point values. |
| Duration | A duration value. |
| DurationArray | An array of duration values. |
| Flags | A set of bit flags. |
| Float | A single-precision floating-point value. |
| FloatArray | An array of single-precision floating-point values. |
| ImageSize | An image size, where the offset points to two consecutive integers. |
| ImageSizeArray | An array of image sizes. |
| Int32 | A 32-bit integer value. |
| Int32Array | An array of 32-bit integers. |
| Int64 | A 64-bit integer value. |
| Int64Array | An array of 64-bit integers. |
| PixelFormat | A pixel format. |
| PixelFormatArray | An array of pixel formats. |
| Rational | A rational number, represented as a pair of integers (numerator and denominator). |
| RationalArray | An array of rational numbers. |
| SampleFormat | A sample format. |
| SampleFormatArray | An array of sample formats. |
| String | A string of characters. |
| StringArray | An array of strings. |
| UInt32 | An unsigned integer value. |
| UInt32Array | An array of unsigned integer values. |
| UInt64 | A 64-bit unsigned integer value. |
| UInt64Array | An array of 64-bit unsigned integers. |
| VideoRate | A video rate, where the offset points to an _AVRational structure. |
| VideoRateArray | An array of video rates. |