diff options
author | Anton Khirnov <anton@khirnov.net> | 2020-01-10 12:18:29 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2021-05-22 15:27:55 +0200 |
commit | 9d4c018497c7fb989dc68baeaf53a04aa1d7bd01 (patch) | |
tree | 0607ddfda0fc315e53753781f19066d209dd3096 /libavformat/dashenc.c | |
parent | f27e3ccf06ee19935d160164ca4a02f28cfc2a27 (diff) | |
download | ffmpeg-9d4c018497c7fb989dc68baeaf53a04aa1d7bd01.tar.gz |
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.c | 2 |
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)); |