This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avcodec/utils: Simplify a condition that combines HAVE_NEON and ARCH_ARM
tags/n2.1
Diego Biurrun
12 years ago
parent
c18838f5eb
commit
e95930eda1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/utils.c
+ 1
- 1
libavcodec/utils.c
View File
@@ -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
Write
Preview
Loading…
Cancel
Save