-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Based on #34814 by @LilyWangLL but tailored for RustDesk to build on arm64-ios, arm*-linux etc. Signed-off-by: Vasyl Gello <[email protected]>
- Loading branch information
1 parent
d8079ec
commit 83a712a
Showing
7 changed files
with
112 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c b/vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c | ||
index 33753f7..997775a 100644 | ||
--- a/vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c | ||
+++ b/vp9/encoder/arm/neon/vp9_diamond_search_sad_neon.c | ||
@@ -220,7 +220,7 @@ int vp9_diamond_search_sad_neon(const MACROBLOCK *x, | ||
// Look up the component cost of the residual motion vector | ||
{ | ||
uint32_t cost[4]; | ||
- int16_t __attribute__((aligned(16))) rowcol[8]; | ||
+ DECLARE_ALIGNED(16, int16_t, rowcol[8]); | ||
vst1q_s16(rowcol, v_diff_mv_w); | ||
|
||
// Note: This is a use case for gather instruction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
prefix=@LIBVPX_PREFIX@ | ||
# pkg-config file from libvpx v1.10.0 | ||
exec_prefix=${prefix} | ||
libdir=${prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: vpx | ||
Description: WebM Project VPx codec implementation | ||
Version: @LIBVPX_VERSION@ | ||
Requires: | ||
Conflicts: | ||
Libs: -L"${libdir}" -lvpx | ||
Cflags: -I"${includedir}" | ||
prefix=@LIBVPX_PREFIX@ | ||
exec_prefix=${prefix} | ||
libdir=${prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: vpx | ||
Description: WebM Project VPx codec implementation | ||
Version: @VERSION@ | ||
Requires: | ||
Conflicts: | ||
Libs: -L"${libdir}" -lvpx | ||
Cflags: -I"${includedir}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters