diff options
author | Martin Storsjö <martin@martin.st> | 2011-02-28 15:39:17 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-03-06 23:29:39 +0100 |
commit | f3bea9915fdc87c3f5b635fcfe0250a28e2b1a88 (patch) | |
tree | 815b2c8981bcb4e1083e5657c4eaad45d3e0955b | |
parent | 391a1327bd076c25c2b2509ab7ae0081c443b94e (diff) | |
download | ffmpeg-streaming-f3bea9915fdc87c3f5b635fcfe0250a28e2b1a88.zip ffmpeg-streaming-f3bea9915fdc87c3f5b635fcfe0250a28e2b1a88.tar.gz |
URLProtocol: Add a flags field
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-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 be15f8a..fd18f0d 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -295,6 +295,7 @@ typedef struct URLProtocol { int (*url_get_file_handle)(URLContext *h); int priv_data_size; const AVClass *priv_data_class; + int flags; } URLProtocol; #if FF_API_REGISTER_PROTOCOL |