avio: cosmetics, prettify AVIO_SEEKABLE_NORMAL

Move the doxy above the definition, change the value itself to the
(1 << n) pattern, which is more readable for flags.
This commit is contained in:
Anton Khirnov 2016-09-27 15:37:54 +02:00
parent 83548fe894
commit 75c1db6152
1 changed files with 4 additions and 2 deletions

View File

@ -34,8 +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.