Browse Source

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.
tags/n3.3
Anton Khirnov 9 years ago
parent
commit
75c1db6152
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      libavformat/avio.h

+ 4
- 2
libavformat/avio.h 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.


Loading…
Cancel
Save