You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
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:
@@ -34,8 +34,10 @@
|
|||||||
|
|
||||||
#include "libavformat/version.h"
|
#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.
|
* Callback for checking whether to abort blocking functions.
|
||||||
|
Reference in New Issue
Block a user