Old put_/get_() functions
[I/O Read/Write]

The following functions are deprecated. More...

Functions

attribute_deprecated int get_buffer (AVIOContext *s, unsigned char *buf, int size)
attribute_deprecated int get_partial_buffer (AVIOContext *s, unsigned char *buf, int size)
attribute_deprecated int get_byte (AVIOContext *s)
attribute_deprecated unsigned int get_le16 (AVIOContext *s)
attribute_deprecated unsigned int get_le24 (AVIOContext *s)
attribute_deprecated unsigned int get_le32 (AVIOContext *s)
attribute_deprecated uint64_t get_le64 (AVIOContext *s)
attribute_deprecated unsigned int get_be16 (AVIOContext *s)
attribute_deprecated unsigned int get_be24 (AVIOContext *s)
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)
attribute_deprecated void put_le32 (AVIOContext *s, unsigned int val)
attribute_deprecated void put_be32 (AVIOContext *s, unsigned int val)
attribute_deprecated void put_le24 (AVIOContext *s, unsigned int val)
attribute_deprecated void put_be24 (AVIOContext *s, unsigned int val)
attribute_deprecated void put_le16 (AVIOContext *s, unsigned int val)
attribute_deprecated void put_be16 (AVIOContext *s, unsigned int val)
attribute_deprecated void put_tag (AVIOContext *s, const char *tag)

Detailed Description

The following functions are deprecated.

Use the "avio_"-prefixed functions instead.


Function Documentation

attribute_deprecated unsigned int get_be16 ( AVIOContext s  ) 
attribute_deprecated unsigned int get_be24 ( AVIOContext s  ) 
attribute_deprecated unsigned int get_be32 ( AVIOContext s  ) 
attribute_deprecated uint64_t get_be64 ( AVIOContext s  ) 
attribute_deprecated int get_buffer ( AVIOContext s,
unsigned char *  buf,
int  size 
)

Definition at line 375 of file aviobuf.c.

attribute_deprecated int get_byte ( AVIOContext s  ) 

Definition at line 371 of file aviobuf.c.

Referenced by get_len().

attribute_deprecated unsigned int get_le16 ( AVIOContext s  ) 
attribute_deprecated unsigned int get_le24 ( AVIOContext s  ) 
attribute_deprecated unsigned int get_le32 ( AVIOContext s  ) 
attribute_deprecated uint64_t get_le64 ( AVIOContext s  ) 
attribute_deprecated int get_partial_buffer ( AVIOContext s,
unsigned char *  buf,
int  size 
)

Definition at line 379 of file aviobuf.c.

attribute_deprecated void put_be16 ( AVIOContext s,
unsigned int  val 
)
attribute_deprecated void put_be24 ( AVIOContext s,
unsigned int  val 
)
attribute_deprecated void put_be32 ( AVIOContext s,
unsigned int  val 
)
attribute_deprecated void put_be64 ( AVIOContext s,
uint64_t  val 
)
attribute_deprecated void put_buffer ( AVIOContext s,
const unsigned char *  buf,
int  size 
)

Definition at line 387 of file aviobuf.c.

attribute_deprecated void put_byte ( AVIOContext s,
int  b 
)

Definition at line 383 of file aviobuf.c.

attribute_deprecated void put_le16 ( AVIOContext s,
unsigned int  val 
)
attribute_deprecated void put_le24 ( AVIOContext s,
unsigned int  val 
)
attribute_deprecated void put_le32 ( AVIOContext s,
unsigned int  val 
)
attribute_deprecated void put_le64 ( AVIOContext s,
uint64_t  val 
)
attribute_deprecated void put_nbyte ( AVIOContext s,
int  b,
int  count 
)

Definition at line 391 of file aviobuf.c.

attribute_deprecated void put_tag ( AVIOContext s,
const char *  tag 
)

Definition at line 552 of file aviobuf.c.