diff options
author | Pierre-Anthony Lemieux <pal@palemieux.com> | 2021-12-14 16:35:14 -0800 |
---|---|---|
committer | Zane van Iperen <zane@zanevaniperen.com> | 2021-12-19 00:35:24 +1000 |
commit | c8b5f2848dcdc7103a5b85c50c4c3082382d1f82 (patch) | |
tree | 699e92914d599952d1bff0c485387175ad1cb694 /libavformat/avio_internal.h | |
parent | a8a7c5d502a851d16c4668e03bff12d0e16c32b8 (diff) | |
download | ffmpeg-c8b5f2848dcdc7103a5b85c50c4c3082382d1f82.tar.gz |
avformat/aviobuf: ffio_copy_url_options
Signed-off-by: Pierre-Anthony Lemieux <pal@palemieux.com>
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavformat/avio_internal.h')
-rw-r--r-- | libavformat/avio_internal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/avio_internal.h b/libavformat/avio_internal.h index 187433f283..1f5e3d474b 100644 --- a/libavformat/avio_internal.h +++ b/libavformat/avio_internal.h @@ -206,6 +206,12 @@ int ffio_fdopen(AVIOContext **s, URLContext *h); */ URLContext *ffio_geturlcontext(AVIOContext *s); + +/** + * Read url related dictionary options from the AVIOContext and write to the given dictionary + */ +int ffio_copy_url_options(AVIOContext* pb, AVDictionary** avio_opts); + /** * Open a write-only fake memory stream. The written data is not stored * anywhere - this is only used for measuring the amount of data |