mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-01-27 06:54:33 +00:00
avcodec/utils: Simplify a condition that combines HAVE_NEON and ARCH_ARM
This commit is contained in:
parent
c18838f5eb
commit
e95930eda1
@ -160,7 +160,7 @@ void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
|
||||
s->height = height;
|
||||
}
|
||||
|
||||
#if (ARCH_ARM && HAVE_NEON) || ARCH_PPC || HAVE_MMX
|
||||
#if HAVE_NEON || ARCH_PPC || HAVE_MMX
|
||||
# define STRIDE_ALIGN 16
|
||||
#else
|
||||
# define STRIDE_ALIGN 8
|
||||
|
Loading…
x
Reference in New Issue
Block a user