diff options
author | Mariusz SzczepaĆczyk <mszczepanczyk@gmail.com> | 2015-06-17 20:12:00 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-22 12:46:08 +0200 |
commit | 80e18bb4868a3e95e49b98bcabff25607e1b9679 (patch) | |
tree | 68051af4c9d956b036be7615562b1d4e257da90a /libavformat/url.h | |
parent | 8fb672b50ae3c5faf75889a2ed8a867af0ddc8a8 (diff) | |
download | ffmpeg-80e18bb4868a3e95e49b98bcabff25607e1b9679.tar.gz |
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.h | 2 |
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; /** |