diff options
author | Martin Storsjö <martin@martin.st> | 2011-12-30 11:38:05 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-01-05 23:56:52 +0200 |
commit | 32b83aeec1a129d6eef2e89c7f107c614dfb4574 (patch) | |
tree | 564aa1bbac6df55321d56f46f048144c7ad5ffa1 /libavformat/avio.h | |
parent | bb5b3940b08d8dad5b7e948e8f3b02cd2eb70716 (diff) | |
download | ffmpeg-32b83aeec1a129d6eef2e89c7f107c614dfb4574.tar.gz |
avio: Add an URLProtocol flag for indicating that a protocol uses network
This definition is in two files, since the definitions will move
to the private header at the next bump.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index dec2a5effe..e73264f4aa 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -146,6 +146,7 @@ typedef struct URLContext { } URLContext; #define URL_PROTOCOL_FLAG_NESTED_SCHEME 1 /*< The protocol name can be the first part of a nested protocol scheme */ +#define URL_PROTOCOL_FLAG_NETWORK 2 /*< The protocol uses network */ /** * @deprecated This struct is to be made private. Use the higher-level |