diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-21 20:02:20 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-21 14:25:17 -0500 |
commit | 0ac8e2bf2bf3d636241bf2811018d9974687a63c (patch) | |
tree | 9746362b4f319490b2a718b7adfe6800c8290bdd /libavformat/avio.h | |
parent | 77eb5504d3b3e1047900382350e0bc5e0bfb16b5 (diff) | |
download | ffmpeg-0ac8e2bf2bf3d636241bf2811018d9974687a63c.tar.gz |
avio: make put_nbyte internal.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index f12b9f8127..41fe6fbeca 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -397,6 +397,7 @@ attribute_deprecated unsigned int get_be32(AVIOContext *s); attribute_deprecated uint64_t get_be64(AVIOContext *s); attribute_deprecated void put_byte(AVIOContext *s, int b); +attribute_deprecated void put_nbyte(AVIOContext *s, int b, int count); attribute_deprecated void put_buffer(AVIOContext *s, const unsigned char *buf, int size); attribute_deprecated void put_le64(AVIOContext *s, uint64_t val); attribute_deprecated void put_be64(AVIOContext *s, uint64_t val); @@ -421,7 +422,6 @@ AVIOContext *avio_alloc_context( int64_t (*seek)(void *opaque, int64_t offset, int whence)); void avio_w8(AVIOContext *s, int b); -void put_nbyte(AVIOContext *s, int b, int count); void avio_write(AVIOContext *s, const unsigned char *buf, int size); void avio_wl64(AVIOContext *s, uint64_t val); void avio_wb64(AVIOContext *s, uint64_t val); |