changeset 4622:76be6cfd7958 libavcodec

add bytestream_get/put_be24 functions
author bcoudurier
date Sun, 04 Mar 2007 02:51:33 +0000
parents 5464e5021a67
children e541c0dd35dd
files bytestream.h
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/bytestream.h	Sun Mar 04 02:26:20 2007 +0000
+++ b/bytestream.h	Sun Mar 04 02:51:33 2007 +0000
@@ -35,6 +35,7 @@
 DEF(le32, 4, AV_RL32, AV_WL32)
 DEF(le16, 2, AV_RL16, AV_WL16)
 DEF(be32, 4, AV_RB32, AV_WB32)
+DEF(be24, 3, AV_RB24, AV_WB24)
 DEF(be16, 2, AV_RB16, AV_WB16)
 DEF(byte, 1, AV_RB8 , AV_WB8 )