Miam-Player  0.8.0
A nice music player
bswap.h File Reference
#include <stdint.h>
#include "libavutil/avconfig.h"
#include "attributes.h"

Go to the source code of this file.

Macros

#define AV_BSWAP16C(x)   (((x) << 8 & 0xff00) | ((x) >> 8 & 0x00ff))
 
#define AV_BSWAP32C(x)   (AV_BSWAP16C(x) << 16 | AV_BSWAP16C((x) >> 16))
 
#define AV_BSWAP64C(x)   (AV_BSWAP32C(x) << 32 | AV_BSWAP32C((x) >> 32))
 
#define AV_BSWAPC(s, x)   AV_BSWAP##s##C(x)
 
#define av_be2ne16(x)   av_bswap16(x)
 
#define av_be2ne32(x)   av_bswap32(x)
 
#define av_be2ne64(x)   av_bswap64(x)
 
#define av_le2ne16(x)   (x)
 
#define av_le2ne32(x)   (x)
 
#define av_le2ne64(x)   (x)
 
#define AV_BE2NEC(s, x)   AV_BSWAPC(s, x)
 
#define AV_LE2NEC(s, x)   (x)
 
#define AV_BE2NE16C(x)   AV_BE2NEC(16, x)
 
#define AV_BE2NE32C(x)   AV_BE2NEC(32, x)
 
#define AV_BE2NE64C(x)   AV_BE2NEC(64, x)
 
#define AV_LE2NE16C(x)   AV_LE2NEC(16, x)
 
#define AV_LE2NE32C(x)   AV_LE2NEC(32, x)
 
#define AV_LE2NE64C(x)   AV_LE2NEC(64, x)
 

Detailed Description

byte swapping routines

Macro Definition Documentation

◆ av_be2ne16

#define av_be2ne16 (   x)    av_bswap16(x)

◆ AV_BE2NE16C

#define AV_BE2NE16C (   x)    AV_BE2NEC(16, x)

◆ av_be2ne32

#define av_be2ne32 (   x)    av_bswap32(x)

◆ AV_BE2NE32C

#define AV_BE2NE32C (   x)    AV_BE2NEC(32, x)

◆ av_be2ne64

#define av_be2ne64 (   x)    av_bswap64(x)

◆ AV_BE2NE64C

#define AV_BE2NE64C (   x)    AV_BE2NEC(64, x)

◆ AV_BE2NEC

#define AV_BE2NEC (   s,
 
)    AV_BSWAPC(s, x)

◆ AV_BSWAP16C

#define AV_BSWAP16C (   x)    (((x) << 8 & 0xff00) | ((x) >> 8 & 0x00ff))

◆ AV_BSWAP32C

#define AV_BSWAP32C (   x)    (AV_BSWAP16C(x) << 16 | AV_BSWAP16C((x) >> 16))

◆ AV_BSWAP64C

#define AV_BSWAP64C (   x)    (AV_BSWAP32C(x) << 32 | AV_BSWAP32C((x) >> 32))

◆ AV_BSWAPC

#define AV_BSWAPC (   s,
 
)    AV_BSWAP##s##C(x)

◆ av_le2ne16

#define av_le2ne16 (   x)    (x)

◆ AV_LE2NE16C

#define AV_LE2NE16C (   x)    AV_LE2NEC(16, x)

◆ av_le2ne32

#define av_le2ne32 (   x)    (x)

◆ AV_LE2NE32C

#define AV_LE2NE32C (   x)    AV_LE2NEC(32, x)

◆ av_le2ne64

#define av_le2ne64 (   x)    (x)

◆ AV_LE2NE64C

#define AV_LE2NE64C (   x)    AV_LE2NEC(64, x)

◆ AV_LE2NEC

#define AV_LE2NEC (   s,
 
)    (x)