diff options
author | wm4 <nfxjfg@googlemail.com> | 2017-08-17 15:01:44 +0200 |
---|---|---|
committer | wm4 <nfxjfg@googlemail.com> | 2017-09-01 17:56:33 +0200 |
commit | 5d76674756806e3b458e484788775fcee34aac2a (patch) | |
tree | 8565294bfa35d9205266e12d55fadf86926f0de4 /libavformat/aviobuf.c | |
parent | 877076ffa17bcf56badedc036cdc1adcd9f38b24 (diff) | |
download | ffmpeg-5d76674756806e3b458e484788775fcee34aac2a.tar.gz |
lavf: make avio_read_partial() public
Main use-case is proxying avio through a foreign I/O layer and a custom
AVIO context, without losing latency and performance characteristics.
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Merged from Libav commit 173b56218f39c64.
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r-- | libavformat/aviobuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 716c42eda9..636cb46161 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -703,7 +703,7 @@ int ffio_read_indirect(AVIOContext *s, unsigned char *buf, int size, const unsig } } -int ffio_read_partial(AVIOContext *s, unsigned char *buf, int size) +int avio_read_partial(AVIOContext *s, unsigned char *buf, int size) { int len; |