comparison bytestream.h @ 5144:e92146cec4a8 libavcodec

Remove unneeded semicolon.
author takis
date Fri, 15 Jun 2007 08:16:24 +0000
parents d25576b9b50c
children 4394344397d8
comparison
equal deleted inserted replaced
5143:151f6f3a507b 5144:e92146cec4a8
28 return read(*b - bytes);\ 28 return read(*b - bytes);\
29 }\ 29 }\
30 static av_always_inline void bytestream_put_ ##name(uint8_t **b, const unsigned int value){\ 30 static av_always_inline void bytestream_put_ ##name(uint8_t **b, const unsigned int value){\
31 write(*b, value);\ 31 write(*b, value);\
32 (*b) += bytes;\ 32 (*b) += bytes;\
33 }; 33 }
34 34
35 DEF(le32, 4, AV_RL32, AV_WL32) 35 DEF(le32, 4, AV_RL32, AV_WL32)
36 DEF(le24, 3, AV_RL24, AV_WL24) 36 DEF(le24, 3, AV_RL24, AV_WL24)
37 DEF(le16, 2, AV_RL16, AV_WL16) 37 DEF(le16, 2, AV_RL16, AV_WL16)
38 DEF(be32, 4, AV_RB32, AV_WB32) 38 DEF(be32, 4, AV_RB32, AV_WB32)