@ -229,11 +229,11 @@ union unaligned_16 { uint16_t l; } __attribute__((packed)) av_alias;
# endif
# endif
# ifndef AV_RB32
# ifndef AV_RB32
# define AV_RB32(x) \
# define AV_RB32(x) \
( ( ( ( const uint8_t * ) ( x ) ) [ 0 ] < < 24 ) | \
( ( ( uint32_t ) ( ( const uint8_t * ) ( x ) ) [ 0 ] < < 24 ) | \
( ( ( const uint8_t * ) ( x ) ) [ 1 ] < < 16 ) | \
( ( ( const uint8_t * ) ( x ) ) [ 1 ] < < 16 ) | \
( ( ( const uint8_t * ) ( x ) ) [ 2 ] < < 8 ) | \
( ( ( const uint8_t * ) ( x ) ) [ 2 ] < < 8 ) | \
( ( const uint8_t * ) ( x ) ) [ 3 ] )
( ( const uint8_t * ) ( x ) ) [ 3 ] )
# endif
# endif
# ifndef AV_WB32
# ifndef AV_WB32
# define AV_WB32(p, d) do { \
# define AV_WB32(p, d) do { \
@ -245,11 +245,11 @@ union unaligned_16 { uint16_t l; } __attribute__((packed)) av_alias;
# endif
# endif
# ifndef AV_RL32
# ifndef AV_RL32
# define AV_RL32(x) \
# define AV_RL32(x) \
( ( ( ( const uint8_t * ) ( x ) ) [ 3 ] < < 24 ) | \
( ( ( uint32_t ) ( ( const uint8_t * ) ( x ) ) [ 3 ] < < 24 ) | \
( ( ( const uint8_t * ) ( x ) ) [ 2 ] < < 16 ) | \
( ( ( const uint8_t * ) ( x ) ) [ 2 ] < < 16 ) | \
( ( ( const uint8_t * ) ( x ) ) [ 1 ] < < 8 ) | \
( ( ( const uint8_t * ) ( x ) ) [ 1 ] < < 8 ) | \
( ( const uint8_t * ) ( x ) ) [ 0 ] )
( ( const uint8_t * ) ( x ) ) [ 0 ] )
# endif
# endif
# ifndef AV_WL32
# ifndef AV_WL32
# define AV_WL32(p, d) do { \
# define AV_WL32(p, d) do { \