diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-07-19 14:41:08 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-07-19 14:41:08 +0000 |
commit | a254c5745b27eec28430402f49937d9505691f20 (patch) | |
tree | 5545b107bf5b9850189baf2c55451d2e45620d49 /libavformat/avio.h | |
parent | dd9f59160e4809fba631b555d4e6022e0b4340ec (diff) | |
download | ffmpeg-a254c5745b27eec28430402f49937d9505691f20.tar.gz |
kill duplicated get/put_be24()
Originally committed as revision 4460 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index bb9b4574f7..b8ef9db5eb 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -99,6 +99,7 @@ void put_le64(ByteIOContext *s, uint64_t val); void put_be64(ByteIOContext *s, uint64_t val); void put_le32(ByteIOContext *s, unsigned int val); void put_be32(ByteIOContext *s, unsigned int val); +void put_be24(ByteIOContext *s, unsigned int val); void put_le16(ByteIOContext *s, unsigned int val); void put_be16(ByteIOContext *s, unsigned int val); void put_tag(ByteIOContext *s, const char *tag); @@ -134,6 +135,7 @@ unsigned int get_le16(ByteIOContext *s); double get_be64_double(ByteIOContext *s); char *get_strz(ByteIOContext *s, char *buf, int maxlen); unsigned int get_be16(ByteIOContext *s); +unsigned int get_be24(ByteIOContext *s); unsigned int get_be32(ByteIOContext *s); uint64_t get_be64(ByteIOContext *s); |