diff options
-rw-r--r-- | libavformat/avio.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 8040094423..cec7fd74d9 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -34,7 +34,10 @@ #include "libavformat/version.h" -#define AVIO_SEEKABLE_NORMAL 0x0001 /**< Seeking works like for a local file */ +/** + * Seeking works like for a local file. + */ +#define AVIO_SEEKABLE_NORMAL (1 << 0) /** * Callback for checking whether to abort blocking functions. |