summaryrefslogtreecommitdiff
path: root/libavformat/avio.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-01-10 12:18:29 +0100
committerAnton Khirnov <anton@khirnov.net>2021-05-22 15:27:55 +0200
commit9d4c018497c7fb989dc68baeaf53a04aa1d7bd01 (patch)
tree0607ddfda0fc315e53753781f19066d209dd3096 /libavformat/avio.h
parentf27e3ccf06ee19935d160164ca4a02f28cfc2a27 (diff)
avio: do not export avpriv_io_{move,delete}
They are private and not used by anything outside of lavf. There is no reason for them to be exported.
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r--libavformat/avio.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h
index d022820a6e..0b35409787 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -375,25 +375,6 @@ const char *avio_find_protocol_name(const char *url);
int avio_check(const char *url, int flags);
/**
- * Move or rename a resource.
- *
- * @note url_src and url_dst should share the same protocol and authority.
- *
- * @param url_src url to resource to be moved
- * @param url_dst new url to resource if the operation succeeded
- * @return >=0 on success or negative on error.
- */
-int avpriv_io_move(const char *url_src, const char *url_dst);
-
-/**
- * Delete a resource.
- *
- * @param url resource to be deleted.
- * @return >=0 on success or negative on error.
- */
-int avpriv_io_delete(const char *url);
-
-/**
* Open directory for reading.
*
* @param s directory read context. Pointer to a NULL pointer must be passed.