diff avio.h @ 937:a887adfe9dc5 libavformat

add a Creative VOC (de)muxer
author aurel
date Thu, 09 Feb 2006 22:52:23 +0000
parents da1d5db0ce5c
children bfea7dcd2698
line wrap: on
line diff
--- a/avio.h	Wed Feb 08 17:35:44 2006 +0000
+++ b/avio.h	Thu Feb 09 22:52:23 2006 +0000
@@ -99,6 +99,7 @@
 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_le24(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);
@@ -127,6 +128,7 @@
 int get_buffer(ByteIOContext *s, unsigned char *buf, int size);
 int get_partial_buffer(ByteIOContext *s, unsigned char *buf, int size);
 int get_byte(ByteIOContext *s);
+unsigned int get_le24(ByteIOContext *s);
 unsigned int get_le32(ByteIOContext *s);
 uint64_t get_le64(ByteIOContext *s);
 unsigned int get_le16(ByteIOContext *s);