From a254c5745b27eec28430402f49937d9505691f20 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 19 Jul 2005 14:41:08 +0000 Subject: kill duplicated get/put_be24() Originally committed as revision 4460 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/avio.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavformat/avio.h') 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); -- cgit v1.2.3