# HG changeset patch # User alex # Date 1173186338 0 # Node ID d25576b9b50cb1175a8ae20347f2bce3420c0ad2 # Parent 9d7d21173e4fa5ae02a3a95854244d953d087fce add little endian 24bit read/write diff -r 9d7d21173e4f -r d25576b9b50c bytestream.h --- a/bytestream.h Mon Mar 05 10:04:53 2007 +0000 +++ b/bytestream.h Tue Mar 06 13:05:38 2007 +0000 @@ -33,6 +33,7 @@ }; DEF(le32, 4, AV_RL32, AV_WL32) +DEF(le24, 3, AV_RL24, AV_WL24) DEF(le16, 2, AV_RL16, AV_WL16) DEF(be32, 4, AV_RB32, AV_WB32) DEF(be24, 3, AV_RB24, AV_WB24)