# HG changeset patch # User bcoudurier # Date 1172976693 0 # Node ID 76be6cfd79588c04c8d14284439629c2d0fc0e6a # Parent 5464e5021a67a4e67c5a789ac7d86529f110d5c6 add bytestream_get/put_be24 functions diff -r 5464e5021a67 -r 76be6cfd7958 bytestream.h --- 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 )