[FFmpeg-devel] [PATCH 1/3] avformat/avio: add AVIO_SEEKABLE_SLOW to indicate that a io context is slow at seeking

Michael Niedermayer michaelni at gmx.at
Wed Mar 26 17:59:00 CET 2014


Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
---
 libavformat/avio.h |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavformat/avio.h b/libavformat/avio.h
index defd617..fbb4ba9 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -36,6 +36,7 @@
 
 
 #define AVIO_SEEKABLE_NORMAL 0x0001 /**< Seeking works like for a local file */
+#define AVIO_SEEKABLE_SLOW   0x0100 /**< Seeking works but is slow (for example http) */
 
 /**
  * Callback for checking whether to abort blocking functions.
-- 
1.7.9.5



More information about the ffmpeg-devel mailing list