AVIO_FLAG_DIRECT

Use direct mode. avio_read and avio_write should if possible be satisfied directly instead of going through a buffer, and avio_seek will always call the underlying seek function directly.

extern (C) @nogc nothrow
enum AVIO_FLAG_DIRECT = 0x8000;

Meta