summaryrefslogtreecommitdiff
path: root/libavformat/avio.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r--libavformat/avio.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h
index fa71d20d59..43d94db790 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -385,6 +385,7 @@ attribute_deprecated AVIOContext *av_alloc_put_byte(
* @{
*/
attribute_deprecated int get_buffer(AVIOContext *s, unsigned char *buf, int size);
+attribute_deprecated int get_partial_buffer(AVIOContext *s, unsigned char *buf, int size);
attribute_deprecated int get_byte(AVIOContext *s);
attribute_deprecated unsigned int get_le16(AVIOContext *s);
attribute_deprecated unsigned int get_le24(AVIOContext *s);
@@ -498,14 +499,6 @@ void put_flush_packet(AVIOContext *s);
*/
int avio_read(AVIOContext *s, unsigned char *buf, int size);
-/**
- * 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 get_partial_buffer(AVIOContext *s, unsigned char *buf, int size);
-
/** @note return 0 if EOF, so you cannot use it if EOF handling is
necessary */
int avio_r8 (AVIOContext *s);