-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix ffmpeg compilation for rtd1296 architecture #3119
Closed
Closed
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
3249405
[FFMPEG] Fix compilation for rtd1296 (except x264)
m4tt075 6f1a7d6
[FFMPEG] Fix x264 compilation for rdt1296
m4tt075 db2261c
[FFMPEG] Enable neon for ARMv7 and ARMv8 and increment SPK version
m4tt075 4f3523f
[FFMPEG] Upgrade nasm to 2.13.02 to fix x264 compilation on x86 and x…
m4tt075 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,3 +1,3 @@ | ||
bin:bin/x264 | ||
lnk:lib/libx264.so | ||
lib:lib/libx264.so.148 | ||
lib:lib/libx264.so.152 |
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,3 +1,3 @@ | ||
x264-snapshot-20170730-2245-stable.tar.bz2 SHA1 115c685bb6d8e1155a53e9c925d4975e0493ae95 | ||
x264-snapshot-20170730-2245-stable.tar.bz2 SHA256 241b934ff8670905f9a707ddfc12589342a9ca27bcb883dc2a4f0de9d9789be3 | ||
x264-snapshot-20170730-2245-stable.tar.bz2 MD5 ccdf7e4d4a1320ea40430859a776c7e3 | ||
x264-snapshot-20180119-2245-stable.tar.bz2 SHA1 d83830aa5f463e88470b0bc2242ad66713e90fa9 | ||
x264-snapshot-20180119-2245-stable.tar.bz2 SHA256 32b54ad52ee29c82be3882b8907d0177832ec0aaa78210dd88f46784f771b04f | ||
x264-snapshot-20180119-2245-stable.tar.bz2 MD5 7d570eb07c531217c9af917949443df3 |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the
disable-nepn
required? Because Neon can make a huge performance impact, as far as I know from general programming. It's like SSE2/3 of ARM, so it seems very important on low power devices and I'm pretty sure this platform should support it.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to https://developer.arm.com/technologies/neon we should consider NEON is available for both ARMv7 and ARMv8.
I propose to give a try to remove
--disable-neon
flag for these two architecture.May you please build for
rtd1297
this PR and submit to requester for "beta" testing ?