Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz SzczepaƄczyk <mszczepanczyk@gmail.com>2015-06-17 21:12:00 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-06-22 13:46:08 +0300
commit80e18bb4868a3e95e49b98bcabff25607e1b9679 (patch)
tree68051af4c9d956b036be7615562b1d4e257da90a /libavformat/url.h
parent8fb672b50ae3c5faf75889a2ed8a867af0ddc8a8 (diff)
lavf/avio: Extend API with avio_move() and avio_delete()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/url.h')
-rw-r--r--libavformat/url.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/url.h b/libavformat/url.h
index 1a845b77e7..99a3201cf6 100644
--- a/libavformat/url.h
+++ b/libavformat/url.h
@@ -90,6 +90,8 @@ typedef struct URLProtocol {
int (*url_open_dir)(URLContext *h);
int (*url_read_dir)(URLContext *h, AVIODirEntry **next);
int (*url_close_dir)(URLContext *h);
+ int (*url_delete)(URLContext *h);
+ int (*url_move)(URLContext *h_src, URLContext *h_dst);
} URLProtocol;
/**