mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/bytestream: check for AV_HAVE_BIGENDIAN instead of HAVE_BIGENDIAN
No need to include config.h for HAVE_BIGENDIAN when libavutil/avconfig.h is already included.
This commit is contained in:
parent
d84c2298e2
commit
a1a80a6c9c
|
@ -94,7 +94,7 @@ DEF(unsigned int, be24, 3, AV_RB24, AV_WB24)
|
||||||
DEF(unsigned int, be16, 2, AV_RB16, AV_WB16)
|
DEF(unsigned int, be16, 2, AV_RB16, AV_WB16)
|
||||||
DEF(unsigned int, byte, 1, AV_RB8 , AV_WB8)
|
DEF(unsigned int, byte, 1, AV_RB8 , AV_WB8)
|
||||||
|
|
||||||
#if HAVE_BIGENDIAN
|
#if AV_HAVE_BIGENDIAN
|
||||||
# define bytestream2_get_ne16 bytestream2_get_be16
|
# define bytestream2_get_ne16 bytestream2_get_be16
|
||||||
# define bytestream2_get_ne24 bytestream2_get_be24
|
# define bytestream2_get_ne24 bytestream2_get_be24
|
||||||
# define bytestream2_get_ne32 bytestream2_get_be32
|
# define bytestream2_get_ne32 bytestream2_get_be32
|
||||||
|
|
Loading…
Reference in New Issue