diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /media/openmax_dl/dl/moz.build | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'media/openmax_dl/dl/moz.build')
-rw-r--r-- | media/openmax_dl/dl/moz.build | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/media/openmax_dl/dl/moz.build b/media/openmax_dl/dl/moz.build new file mode 100644 index 0000000000..9a091c69ed --- /dev/null +++ b/media/openmax_dl/dl/moz.build @@ -0,0 +1,49 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +if CONFIG['TARGET_CPU'] == 'arm' and CONFIG['BUILD_ARM_NEON']: + Library('openmax_dl') + + EXPORTS.dl.api += [ + 'api/armCOMM_s.h', + 'api/armOMX.h', + 'api/omxtypes.h', + 'api/omxtypes_s.h', + ] + + EXPORTS.dl.sp.api += [ + 'sp/api/armSP.h', + 'sp/api/omxSP.h', + ] + + SOURCES += [ + 'sp/src/armSP_FFT_F32TwiddleTable.c', + 'sp/src/omxSP_FFTGetBufSize_R_F32.c', + 'sp/src/omxSP_FFTGetBufSize_R_S32.c', + 'sp/src/omxSP_FFTInit_R_F32.c', + ] + + SOURCES += [ + 'sp/src/armSP_FFT_CToC_FC32_Radix2_fs_unsafe_s.S', + 'sp/src/armSP_FFT_CToC_FC32_Radix2_ls_unsafe_s.S', + 'sp/src/armSP_FFT_CToC_FC32_Radix2_unsafe_s.S', + 'sp/src/armSP_FFT_CToC_FC32_Radix4_fs_unsafe_s.S', + 'sp/src/armSP_FFT_CToC_FC32_Radix4_ls_unsafe_s.S', + 'sp/src/armSP_FFT_CToC_FC32_Radix4_unsafe_s.S', + 'sp/src/armSP_FFT_CToC_FC32_Radix8_fs_unsafe_s.S', + 'sp/src/armSP_FFTInv_CCSToR_F32_preTwiddleRadix2_unsafe_s.S', + 'sp/src/omxSP_FFTFwd_RToCCS_F32_Sfs_s.S', + 'sp/src/omxSP_FFTInv_CCSToR_F32_Sfs_unscaled_s.S', + ] + + LOCAL_INCLUDES += [ + '..', + 'api' + ] + + DEFINES['BIG_FFT_TABLE'] = True + + FINAL_LIBRARY = 'xul' |