summaryrefslogtreecommitdiff
path: root/libavformat/avio.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-02-20 15:03:29 +0100
committerRonald S. Bultje <rsbultje@gmail.com>2011-02-21 10:23:44 -0500
commit8d9ac969cb4ac3e3e18f6425703af4d7aec6c513 (patch)
tree8333fe0bee0dc759e7691ed503a78a309777ea25 /libavformat/avio.h
parent484a337cd7cd8bb180c4a1bd3321881f1c874a92 (diff)
avio: rename av_alloc_put_byte -> avio_alloc_context for consistency
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r--libavformat/avio.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h
index 060f06e6f2..4fb701696e 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -370,8 +370,17 @@ attribute_deprecated int init_put_byte(AVIOContext *s,
int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
int64_t (*seek)(void *opaque, int64_t offset, int whence));
+attribute_deprecated AVIOContext *av_alloc_put_byte(
+ unsigned char *buffer,
+ int buffer_size,
+ int write_flag,
+ void *opaque,
+ int (*read_packet)(void *opaque, uint8_t *buf, int buf_size),
+ int (*write_packet)(void *opaque, uint8_t *buf, int buf_size),
+ int64_t (*seek)(void *opaque, int64_t offset, int whence));
#endif
-AVIOContext *av_alloc_put_byte(
+
+AVIOContext *avio_alloc_context(
unsigned char *buffer,
int buffer_size,
int write_flag,