Browse Source

add little endian 24bit read/write

Originally committed as revision 8269 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Alex Beregszaszi 19 years ago
parent
commit
1586238717
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      libavutil/intreadwrite.h

+ 8
- 0
libavutil/intreadwrite.h View File

@@ -78,6 +78,14 @@ struct unaligned_16 { uint16_t l; } __attribute__((packed));
((uint8_t*)(p))[0] = (d); \
((uint8_t*)(p))[1] = (d)>>8; }

#define AV_RL24(x) ((((uint8_t*)(x))[2] << 16) | \
(((uint8_t*)(x))[1] << 8) | \
((uint8_t*)(x))[0])
#define AV_WL24(p, d) { \
((uint8_t*)(p))[0] = (d); \
((uint8_t*)(p))[1] = (d)>>8; \
((uint8_t*)(p))[2] = (d)>>16; }

#define AV_RL32(x) ((((uint8_t*)(x))[3] << 24) | \
(((uint8_t*)(x))[2] << 16) | \
(((uint8_t*)(x))[1] << 8) | \


Loading…
Cancel
Save