[FFmpeg-cvslog] lavf: make avio_read_partial() public
wm4
git at videolan.org
Fri Sep 1 18:57:11 EEST 2017
ffmpeg | branch: master | wm4 <nfxjfg at googlemail.com> | Thu Aug 17 15:01:44 2017 +0200| [5d76674756806e3b458e484788775fcee34aac2a] | committer: wm4
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 at gentoo.org>
Merged from Libav commit 173b56218f39c64.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5d76674756806e3b458e484788775fcee34aac2a
---
doc/APIchanges | 3 +++
libavformat/avio.h | 9 +++++++++
libavformat/avio_internal.h | 8 --------
libavformat/aviobuf.c | 2 +-
libavformat/rawdec.c | 2 +-
libavformat/rtsp.c | 2 +-
libavformat/version.h | 2 +-
7 files changed, 16 insertions(+), 12 deletions(-)
diff --git a/doc/APIchanges b/doc/APIchanges
index 1e9b29fdbb..4effbf9364 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -15,6 +15,9 @@ libavutil: 2015-08-28
API changes, most recent first:
+2017-09-01 - xxxxxxx - lavf 57.81.100 - avio.h
+ Add avio_read_partial().
+
2017-09-01 - xxxxxxx - lavf 57.80.100 / 57.11.0 - avio.h
Add avio_context_free(). From now on it must be used for freeing AVIOContext.
diff --git a/libavformat/avio.h b/libavformat/avio.h
index 89ad5c04ea..f9c5972ada 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -599,6 +599,15 @@ void avio_flush(AVIOContext *s);
int avio_read(AVIOContext *s, unsigned char *buf, int size);
/**
+ * Read size bytes from AVIOContext into buf. Unlike avio_read(), this is allowed
+ * to read fewer bytes than requested. The missing bytes can be read in the next
+ * call. This always tries to read at least 1 byte.
+ * Useful to reduce latency in certain cases.
+ * @return number of bytes read or AVERROR
+ */
+int avio_read_partial(AVIOContext *s, unsigned char *buf, int size);
+
+/**
* @name Functions for reading from AVIOContext
* @{
*
diff --git a/libavformat/avio_internal.h b/libavformat/avio_internal.h
index fdb323c8f1..c01835df96 100644
--- a/libavformat/avio_internal.h
+++ b/libavformat/avio_internal.h
@@ -53,14 +53,6 @@ int ffio_init_context(AVIOContext *s,
*/
int ffio_read_indirect(AVIOContext *s, unsigned char *buf, int size, const unsigned char **data);
-/**
- * Read size bytes from AVIOContext into buf.
- * This reads at most 1 packet. If that is not enough fewer bytes will be
- * returned.
- * @return number of bytes read or AVERROR
- */
-int ffio_read_partial(AVIOContext *s, unsigned char *buf, int size);
-
void ffio_fill(AVIOContext *s, int b, int count);
static av_always_inline void ffio_wfourcc(AVIOContext *pb, const uint8_t *s)
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;
diff --git a/libavformat/rawdec.c b/libavformat/rawdec.c
index 876a6e6a75..e926549a60 100644
--- a/libavformat/rawdec.c
+++ b/libavformat/rawdec.c
@@ -43,7 +43,7 @@ int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
pkt->pos= avio_tell(s->pb);
pkt->stream_index = 0;
- ret = ffio_read_partial(s->pb, pkt->data, size);
+ ret = avio_read_partial(s->pb, pkt->data, size);
if (ret < 0) {
av_packet_unref(pkt);
return ret;
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 261e970b75..0bd72dc5ce 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -2136,7 +2136,7 @@ redo:
wait_end && wait_end < av_gettime_relative())
len = AVERROR(EAGAIN);
else
- len = ffio_read_partial(s->pb, rt->recvbuf, RECVBUF_SIZE);
+ len = avio_read_partial(s->pb, rt->recvbuf, RECVBUF_SIZE);
len = pick_stream(s, &rtsp_st, rt->recvbuf, len);
if (len > 0 && rtsp_st->transport_priv && rt->transport == RTSP_TRANSPORT_RTP)
ff_rtp_check_and_send_back_rr(rtsp_st->transport_priv, NULL, s->pb, len);
diff --git a/libavformat/version.h b/libavformat/version.h
index 0af524c16b..9cca76ee00 100644
--- a/libavformat/version.h
+++ b/libavformat/version.h
@@ -32,7 +32,7 @@
// Major bumping may affect Ticket5467, 5421, 5451(compatibility with Chromium)
// Also please add any ticket numbers that you believe might be affected here
#define LIBAVFORMAT_VERSION_MAJOR 57
-#define LIBAVFORMAT_VERSION_MINOR 80
+#define LIBAVFORMAT_VERSION_MINOR 81
#define LIBAVFORMAT_VERSION_MICRO 100
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
More information about the ffmpeg-cvslog
mailing list