diff --git a/media/libopus/moz.build b/media/libopus/moz.build index 4441da2ab7df..ea187337b94a 100644 --- a/media/libopus/moz.build +++ b/media/libopus/moz.build @@ -21,7 +21,7 @@ FINAL_LIBRARY = "gkcodecs" NoVisibilityFlags() DEFINES["OPUS_BUILD"] = True -DEFINES["OPUS_VERSION"] = "a38903521a79bd22d502125625f7701244e64aaa" +DEFINES["OPUS_VERSION"] = "08bcc6e46227fca01aa3de3f3512f8b692d8d36b" DEFINES["USE_ALLOCA"] = True DEFINES["ENABLE_HARDENING"] = True diff --git a/media/libopus/moz.yaml b/media/libopus/moz.yaml index 4ec7e43033f4..effdeef15ba2 100644 --- a/media/libopus/moz.yaml +++ b/media/libopus/moz.yaml @@ -20,11 +20,11 @@ origin: # Human-readable identifier for this version/release # Generally "version NNN", "tag SSS", "bookmark SSS" - release: a38903521a79bd22d502125625f7701244e64aaa (2025-04-25T16:04:01.000-04:00). + release: 08bcc6e46227fca01aa3de3f3512f8b692d8d36b (2025-04-30T08:50:30.000-04:00). # Revision to pull in # Must be a long or short commit SHA (long preferred) - revision: a38903521a79bd22d502125625f7701244e64aaa + revision: 08bcc6e46227fca01aa3de3f3512f8b692d8d36b # The package's license, where possible using the mnemonic from # https://spdx.org/licenses/ diff --git a/media/libopus/silk/SigProc_FIX.h b/media/libopus/silk/SigProc_FIX.h index fbdfa82e263a..2ac0d3451fe8 100644 --- a/media/libopus/silk/SigProc_FIX.h +++ b/media/libopus/silk/SigProc_FIX.h @@ -635,6 +635,10 @@ static OPUS_INLINE opus_int64 silk_max_64(opus_int64 a, opus_int64 b) #include "mips/sigproc_fix_mipsr1.h" #endif +#ifdef OPUS_XTENSA_LX7 +#include "xtensa/SigProc_FIX_lx7.h" +#endif + #ifdef __cplusplus } diff --git a/media/libopus/silk/macros.h b/media/libopus/silk/macros.h index 3c67b6e5d97c..1915e2203380 100644 --- a/media/libopus/silk/macros.h +++ b/media/libopus/silk/macros.h @@ -147,5 +147,9 @@ static OPUS_INLINE opus_int32 silk_CLZ32(opus_int32 in32) #include "arm/macros_arm64.h" #endif +#ifdef OPUS_XTENSA_LX7 +#include "xtensa/macros_lx7.h" +#endif + #endif /* SILK_MACROS_H */