changeset 4626:d25576b9b50c libavcodec

add little endian 24bit read/write
author alex
date Tue, 06 Mar 2007 13:05:38 +0000
parents 9d7d21173e4f
children e112ff86e261
files bytestream.h
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)