diff options
author | James Almer <jamrial@gmail.com> | 2017-03-21 17:04:44 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-03-21 17:04:44 -0300 |
commit | de36e98a16f495d051e301653115ebf99a7d7929 (patch) | |
tree | 845f2c5c9d6fac4ab618c00a743b89466f97877b | |
parent | 4de591e6fb7361bd417dcd9563672ed0ad8b361b (diff) | |
parent | 75c1db6152c7c90c7ce28c9adb945028e5512c4f (diff) | |
download | ffmpeg-de36e98a16f495d051e301653115ebf99a7d7929.tar.gz |
Merge commit '75c1db6152c7c90c7ce28c9adb945028e5512c4f'
* commit '75c1db6152c7c90c7ce28c9adb945028e5512c4f':
avio: cosmetics, prettify AVIO_SEEKABLE_NORMAL
Merged-by: James Almer <jamrial@gmail.com>
-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. |