[ARM][hevc_rext] Resolve linking errors during ARM crosscompilation #46
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.
The following series of patches fix cross-compilation linking errors
in the openHEVC code for ARM targets. The patches aim at resolving
undefined references during linking while generating hevc_sdl2 execu-
table which links to libLibOpenHevcWrapper.so library as a result of
missing function definations from ffmpeg libavcodec. The corresponding
files have been merged into existing code to resolve linking time
dependencies.
I request the maintainers to please check the patch and verify that it
doesn't breaks any existing functionality or causes build instability.
Nitin Chaudhary (1):
[openHEVC] ARM Neon/VFP Compilation Error fix, ffmpeg change merge
CMakeLists.txt | 4 +
libavcodec/arm/fft_vfp.S | 530 ++++++++++++++++++++++++++++++++++++
libavcodec/arm/hpeldsp_armv6.S | 261 ++++++++++++++++++
libavcodec/arm/hpeldsp_init_armv6.c | 67 +++++
libavcodec/arm/mdct_vfp.S | 347 +++++++++++++++++++++++
5 files changed, 1209 insertions(+)
create mode 100644 libavcodec/arm/fft_vfp.S
create mode 100644 libavcodec/arm/hpeldsp_armv6.S
create mode 100644 libavcodec/arm/hpeldsp_init_armv6.c
create mode 100644 libavcodec/arm/mdct_vfp.S
2.7.4
Signed-off-by: Nitin Chaudhary Nitin.Chaudhary@zii.aero