Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-10-24Silence some overflow checksFelicia Lim
Co-authored-by: James Zern <jzern@google.com>
2022-03-08Update and re-enable SILK SSE4.1 optimisationsFrancis Quiers
2022-02-24Prevent int32 overflow when applying HARM FIR filter in NSQ.c by using a ↵Tom Denton
saturating sum. This matches behavior in NSQ_del_dec.c. Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2018-03-27Converting some silk_assert()s into hardening celt_assert()sJean-Marc Valin
Only converted the ones that are really sure (not signal-dependent) and that shouldn't add much run-time complexity
2017-05-23cosmetics,silk: correct input/output arg commentsLinfeng Zhang
Change-Id: I607a8b75b0711a485384d6f854cf6e2ec18b38b7 Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2016-11-11Remove commented-out DEBUG_STORE_DATA calls. r=keonRalph Giles
Also remove the SILK_DEBUG_STORE_CLOSE_FILES flush call from opus_demo. This is debugging code which is no longer used, but defining the symbols for SILK_DEBUG_STORE_CLOSE_FILES and calling it from opus_demo causes linking problems on Microsoft Visual Studio where we have strict controls on public symbols and want to test the compiled DLL. Since the code isn't in active use, it's better to remove it to avoid clutter and address the linking issue.
2016-07-19Now that we're preventing huge gains, we no longer need to pretend there'sJean-Marc Valin
no dither
2016-07-17Clean up: replace tabs by spacesKoen Vos
2016-07-17removed prefilterKoen Vos
The NSQ SSE optimizations are disabled for now because they need to be updated
2016-07-17Makes the encoder more aggressive about meeting the rate targetJean-Marc Valin
2016-07-07Add Neon intrinsics for Silk noise shape feedback loop.Jonathan Lennox
Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2016-07-07Add Neon intrinsics for Silk noise shape quantization.Jonathan Lennox
Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2014-10-04Cisco optimization for x86 & fixed pointxiangmingzhu
1. Only for fixed point on x86 platform (32bit and 64bit, uses SIMD intrinsics up to SSE4.2) 2. Use "configure --enable-fixed-point --enable-intrinsics" to enable optimization, default is disabled. 3. Official test cases are verified and passed. Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2013-10-28Replace "inline" with OPUS_INLINE.Gregory Maxwell
Newer versions of MSVC are unhappy with the strategy of the build environment redefining "inline" (even though they don't support the actual keyword). Instead we define OPUS_INLINE to the right thing in opus_defines.h. This is the same approach we use for restrict.
2013-09-17Remove trailing whitespace from the license headers.Ralph Giles
2013-05-20Convert quotes in license headers to ASCII.Timothy B. Terriberry
Since the last patch originally had them mangled (presumably by mailer, http server, or something else), let's just get rid of them.
2013-05-08Use dynamic stack allocation in the SILK encoder.Timothy B. Terriberry
This makes all remaining large stack allocations use the vararray macros. This continues the work of 6f2d9f50 to allow compiling with NONTHREADSAFE_PSEUDOSTACK to move the memory for large buffers off the stack for devices where it is very limited. It also does this for some additional large buffers used by the PLC in the decoder.
2012-04-24Merge commit '390c89225d'Jean-Marc Valin
2012-04-21License update using the IETF Trust flavour of the BSD on the Silk codeJean-Marc Valin
2012-03-08Fixes a bunch of 16-bit issues that the C5X compiler warns aboutJean-Marc Valin
2012-01-31Last part of the LPC work stabilization work discussed at the last meetingKoen Vos
Also adds the encoder part of commit ee8adbe701 as well as a few minor cleanups.
2011-12-14Accuracy improvements to help float implementationsKoen Vos
Also clamps the gain to avoid forcing a float decoder to emulate the state rescaling.
2011-12-13Improves the accuracy such that it matches a float decoder much betterKoen Vos
2011-12-13SILK fixes following last codec WG meetingKoen Vos
decoder: - fixed incorrect scaling of filter states for the smallest quantization step sizes - NLSF2A now limits the prediction gain of LPC filters encoder: - increased damping of LTP coefficients in LTP analysis - increased white noise fraction in noise shaping LPC analysis - introduced maximum total prediction gain. Used by Burg's method to exit early if prediction gain is exceeded. This improves packet loss robustness and numerical robustness in Burg's method - Prefiltered signal is now in int32 Q10 domain, from int16 Q0 - Increased max number of iterations in CBR gain control loop from 5 to 6 - Removed useless code from LTP scaling control - Optimization: smarter LPC loop unrolling - Switched default win32 compile mode to be floating-point resampler: - made resampler have constant delay of 0.75 ms; removed delay compensation from silk code. - removed obsolete table entries (~850 Bytes) - increased downsampling filter order from 16 to 18/24/36 (depending on frequency ratio) - reoptimized filter coefficients
2011-10-29Reformatting changes with an update to the MSVC project filesKoen Vos
2011-10-03Correct C99 undefined behavior in silk/NSQ.c, parallel change to 1ee139bc.Gregory Maxwell
2011-09-21Fixes an integer overflow caused by uninitialized values in LTP scalingKoen Vos
2011-09-16Removed all the silk_ prefixes in source file names (not symbols)Jean-Marc Valin
2011-04-29Moved all SILK source code to the silk/ directoryJean-Marc Valin
2011-04-28Relying on SILK for the switching decisionsJean-Marc Valin
2011-04-28SILK makefile updateJean-Marc Valin
2011-04-27Changing the SILK bandwidth only when there's no speechJean-Marc Valin
2011-04-27SILK updateKoen Vos
2011-03-18Project files updateJean-Marc Valin
2011-03-17DTX fixJean-Marc Valin
2011-03-08Support for glitchles mode switchingJean-Marc Valin
Uses a 5ms redundant CELT frame embedded into the SILK or hybrid packet to handle the switching. It's still possible to use the PLC-based method when no redundant packet is included.
2011-03-04SILK bugfixJean-Marc Valin
2011-03-02SILK updateJean-Marc Valin
2011-03-01SILK/CELT updateJean-Marc Valin
2011-02-18SILK updateJean-Marc Valin
2011-02-15fix make distJean-Marc Valin
2011-02-15missing filesJean-Marc Valin
2011-02-15SILK and CELT updatesJean-Marc Valin
2011-02-14Update for in-band FECKoen Vos
2011-02-04Update Opus range coder due to CELT refactoring.Timothy B. Terriberry
The byte buffer is now part of the range coder struct itself, and rangeenc.c and rangedec.c have gone away.
2011-02-03Build fixesJean-Marc Valin
2011-02-03Testing the range coder final stateKoen Vos
2011-02-03SILK updateJean-Marc Valin
2011-02-03SILK updateJean-Marc Valin
2011-02-03SILK update (fixing segfault) and MSVS fixJean-Marc Valin