diff options
Diffstat (limited to 'src/libffmpeg/libavcodec/rpza.c')
-rw-r--r-- | src/libffmpeg/libavcodec/rpza.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/rpza.c b/src/libffmpeg/libavcodec/rpza.c index 675d7f34c..e002c14dd 100644 --- a/src/libffmpeg/libavcodec/rpza.c +++ b/src/libffmpeg/libavcodec/rpza.c @@ -54,6 +54,9 @@ typedef struct RpzaContext { } RpzaContext; +#undef BE_16 +#undef BE_32 + #define BE_16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1]) #define BE_32(x) ((((uint8_t*)(x))[0] << 24) | \ (((uint8_t*)(x))[1] << 16) | \ |