summaryrefslogtreecommitdiff
path: root/libavformat/dashenc.c
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/dashenc.c
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/dashenc.c')
-rw-r--r--libavformat/dashenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
index 07f191e2a2..ebbdfd627c 100644
--- a/libavformat/dashenc.c
+++ b/libavformat/dashenc.c
@@ -1845,7 +1845,7 @@ static void dashenc_delete_file(AVFormatContext *s, char *filename) {
av_dict_free(&http_opts);
ff_format_io_close(s, &out);
} else {
- int res = avpriv_io_delete(filename);
+ int res = ffurl_delete(filename);
if (res < 0) {
char errbuf[AV_ERROR_MAX_STRING_SIZE];
av_strerror(res, errbuf, sizeof(errbuf));