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
2015-12-03Always use the max of the decaying PLC energy and the background noisecng_fix2Jean-Marc Valin
Should no longer cause discontinuities in the noise after 5 packets
2015-12-03Fixes the transient detector on silenceJean-Marc Valin
Previously silence would cause the divide approximation on 0/0 to return a very large value, which would be interpreted as a transient
2015-11-28Oops, fixes max_decay for LFE in fixed-pointexp_lbr_tune1Jean-Marc Valin
2015-11-28Quality: Encoding music in full-band stereo from 32 kb/sJean-Marc Valin
Gradual downmix now happens in the 24 kb/s to 32 kb/s range
2015-11-28Quality: removes VBR attenuation at low bitrateJean-Marc Valin
Turns out that even low bitrates benefit from VBR
2015-11-26update sha256 in repoJean-Marc Valin
2015-11-26bump libtool revisionJean-Marc Valin
2015-11-24oggopus: Fix spellingMark Harris
2015-11-24Bump draft version and date for submission.Timothy B. Terriberry
2015-11-24Additional edits from Mark Harris.Timothy B. Terriberry
2015-11-24Address remaining document shepherd review comments.Timothy B. Terriberry
Also remove most <preamble>/<postamble> usage for expository text, as most places center the result, which looks ugly (only local xml2rfc HTML output does not center: tools.ietf.org HTML output still does, as does the .txt version).
2015-11-24Remove normative references to encoder or decoder.Timothy B. Terriberry
To avoid confusion with an RFC 6716 encoder/decoder. No part of this document is intended to update RFC 6716.
2015-11-23Fix x86 build if we presume SSE4.1 (and earlier), but not AVX.Jonathan Lennox
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2015-11-18oggopus: further cleanup in response to review.Ralph Giles
2015-11-18oggopus: Add IANA considerations.Ralph Giles
I *think* all we need to do is document this and the RFC editors will take care of it.
2015-11-18oggopus: Add Opus RTP as an informative reference.Ralph Giles
We mention this in the description of Channel Mapping Family 0. Might as well link to RFC 7587. Review comment from Mo Zanaty.
2015-11-17oggopus: remove <spanx style="strong"> markup.Ralph Giles
This improves readability in the xml2rfc html output, but generates Markdown-style *bold* in the txt output, and more importantly in the nroff-like html output of the tools.ietf.org toolchain, which Mo Zanaty and some in IRC objected to.
2015-11-17oggopus: Consolidate granulepos description.Ralph Giles
Based on Mo Zanaty's review comments.
2015-11-17oggopus: Convert mentions of 'encoder' to 'muxer'.Ralph Giles
Response to comments from Mo Zanaty. Using "muxer/demuxer" really isn't less ambiguous than "encoder/decoder" but does help distinguish between this draft and a 'codec encoder/decoder' described by the Opus RFC.
2015-11-05Adding AVX config switchesRadu Velea
Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2015-11-05Naming convention for AVXRadu Velea
Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2015-11-03Suppress generation of comb_filter_const_c when not used; avoid warning.Jonathan Lennox
2015-11-03Fix unit tests on ARM without RTCD (e.g. aarch64 or iOS).Jonathan Lennox
2015-11-03Declare silk_warped_LPC_analysis_filter_FIX_c in silk/fixed/main_FIX.h.Jonathan Lennox
Fixes build failure on platforms with MAY_HAVE_SSE4_1 (but not PRESUME_SSE4_1) with --enable-intrinsics.
2015-10-23Updating links for both https and new versionsv1.1.1-rcMark Harris
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2015-10-23Corrections to docMark Harris
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2015-10-16configure: Remove empty else clauses from AS_IFTimothy B. Terriberry
These were causing "syntax error near unexpected token `fi'" in the generated configure on some systems, because they produced an else fi with no commands between the two.
2015-10-08Adds "arch" argument to MIPS MDCTRhishikesh Agashe
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2015-10-08Fix dump_modes output for fixed-point NE10.Timothy B. Terriberry
Some of the fields present in NE10's float state struct are not present in the fixed-point version, but we were generating initializers for them anyway. Also, the float modes were not up-to-date with the output of dump_modes.
2015-10-08armv7: Enable NE10's fixed-point FFT for the MDCTViswanath Puttagunta
Extends usage of NEON optimized fixed-point FFT optimizations in libNE10 to clt_mdct_forward and clt_mdct_backward. Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2015-10-08armv7: Optimize fixed point FFT using NE10 libraryViswanath Puttagunta
Uses NEON optimized fixed point FFT routines in NE10 library. Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2015-10-08test_unit_dft: Add nfft = 60, 240, 480 testsViswanath Puttagunta
Signed-off-by: Viswanath Puttagunta <viswanath.puttagunta@linaro.org> Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2015-10-08armv7(float): Optimize decode usecase using NE10 libraryViswanath Puttagunta
Optimize opus decode (float only) use case using ARM NE10. Mainly effects opus_ifft and ctl_mdct_backward and related functions. Work based on previous Encode optimization using ARM NE10 library. See previous commit for details on how to enable this. Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2015-10-08armv7(float): Optimize encode usecase using NE10 libraryViswanath Puttagunta
Optimize opus encode (float only) usecase using ARM NE10 library. Mainly effects opus_fft and ctl_mdct_forward and related functions. This optimization can be used for ARM CPUs that have NEON VFP unit. This patch only enables optimizations for ARMv7. Official ARM NE10 library page available at http://projectne10.github.io/Ne10/ To enable this optimization, use --enable-intrinsics --with-NE10=<install_prefix> or --enable-intrinsics --with-NE10-libraries=<NE10_lib_dir> --with-NE10-includes=<NE10_includes_dir> Compile time checks made during configure process to make sure optimization option available only when compiler supports NEON instrinsics. Runtime checks made to make sure optimized functions only called on appropriate hardware. Signed-off-by: Timothy B. Terriberry <tterribe@xiph.org>
2015-10-08Move the external ARM asm to a separate library.Timothy B. Terriberry
This library is linked statically with libopus.so, so nothing changes on an installed system. This merely simplifies linking in the unit tests. Based in part on a patch originally by Viswanath Puttagunta <viswanath.puttagunta@linaro.org>.
2015-10-08Add entcode.c to the dump_modes binary.Timothy B. Terriberry
This is needed for the SMALL_DIV_TABLE constants added in commit ec5d01cbe486.
2015-10-07Fixes compile problems for MIPSRhishikesh Agashe
Brings MIPS in sync with the ARM/SSE optimizations that added "arch" parameters. Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2015-10-07trivial_example: Fix error messageMark Harris
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2015-10-07Extra safety against NaNs in surround_analysis()Mark Harris
Fix out-of-bounds memory read in multichannel surround analysis with float input that contains NaNs. Found by afl-fuzz. Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
2015-10-07Preventing NaNs from crashing surround_analysis()Jean-Marc Valin
2015-09-26Remove spurious ACLOCAL_FLAGS variable from autogen.sh.Ralph Giles
autoreconf looks for ACLOCAL_*FLAGS in Makefile.am and will pass that on when it invokes aclocal. Furthermore, setting a local like this doesn't make it available to subcommands, so the line has no effect.
2015-09-02Make it possible to pass in paths to opus_demo and opus_compare.jon_patchesJonathan Lennox
This patch lets you pass paths for opus_demo and opus_compare to the run_vectors.sh script. The motivation for this was for my aarch64 patches (forthcoming), which I've been testing under qemu. I want to run an emulated opus_demo, but a native opus_compare, so the script completes in a reasonable amount of time.
2015-09-02Create OPUS_FAST_INT64 macro, to abstract conditions where opus_int64 should ↵Jonathan Lennox
be used. This patch adds a macro abstracting the condition under which the silk math macros use opus_int64-based calculations rather than opus_int32. No substantive change, but will make it easier to adjust if additional such platforms are found in the future.
2015-09-02Use ProjectReference rather than AdditionalDependencies for test programs, ↵Jonathan Lennox
so build dependencies are right. Actually add source code to opus_demo project, and fix its include paths.
2015-09-02Add intrinsics support to Visual Studio build.Jonathan Lennox
2015-09-02Reorganize x86 SSE intrinsics code.Jonathan Lennox
Enable x86 intrinsics when building in floating-point mode. Support SSE as an arch value. Use RTCD to conditionally enable existing floating-point Celt SSE code. Call functions directly (without RTCD) when their architecture can be presumed. Use SSE4.1 intrinsics optimized code for Silk even in floating-point mode.
2015-09-02Move SSE2 and SSE4.1 intrinsics functions to separate files, to be compiled ↵Jonathan Lennox
with appropriate compiler flags. Otherwise, compilers are allowed to take advantage of (e.g.) -msse4.1 to generate code that uses SSE4.1 instructions, even when no SSE4.1 intrinsics are explicitly used in the source.
2015-09-02Remove some unnecessary #includes from x86cpu.c.Jonathan Lennox
2015-09-02Fix struct initialization of CPU_Feature structure.Jonathan Lennox
2015-09-02Fix cpuid asm on 32-bit PIC.Jonathan Lennox