Enum IOOptions
Flags representing different input/output operations that can be performed on a stream or file. These flags can be combined using a bitwise OR, except for Read and Write, which are mutually exclusive.
Namespace: FFmpeg.IO
Assembly: FFmpeg.dll
Syntax
[Flags]
public enum IOOptions
Fields
| Name | Description |
|---|---|
| Read | Indicates that the stream or file is open for reading. Note: This flag cannot be combined with Write. |
| Seek | Indicates that the stream or file supports seeking. |
| Write | Indicates that the stream or file is open for writing. Note: This flag cannot be combined with Read. |