search for: silk_float

Displaying 11 results from an estimated 11 matches for "silk_float".

2013 Oct 08
1
[PATCH] Remove dead code
The compiler warned: silk/float/pitch_analysis_core_FLP.c: In function 'silk_P_Ana_calc_corr_st3': silk/float/pitch_analysis_core_FLP.c:499:36: warning: variable 'basis_ptr' set but not used [-Wunused-but-set-variable] const silk_float *target_ptr, *basis_ptr; This means we can safely remove it. Signed-off-by: Stefan Beller <stefanbeller at googlemail.com> --- silk/float/pitch_analysis_core_FLP.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/silk/float/pitch_analysis_core_FLP.c b/silk/float/pitch_...
2016 Jul 15
3
[PATCH 1/4] Create a simple project to create version.h to run before any other
...+++++++++++++++++++ win32/VS2015/opus.sln | 32 ++++++++++++++++- win32/VS2015/opus.vcxproj | 48 +++++++++++++++++--------- win32/VS2015/silk_common.vcxproj | 48 +++++++++++++++++--------- win32/VS2015/silk_fixed.vcxproj | 32 +++++++++++++++++ win32/VS2015/silk_float.vcxproj | 54 +++++++++++++++++++---------- 8 files changed, 261 insertions(+), 67 deletions(-) create mode 100644 win32/VS2015/generate_version.vcxproj diff --git a/Makefile.am b/Makefile.am index 7a69114..b7ede81 100644 --- a/Makefile.am +++ b/Makefile.am @@ -185,6 +185,7 @@ EXTRA_DIST =...
2016 Jul 21
1
extracting SILK only FIXED POINT code
I need to extract SILK only FIXED POINT code. I have a couple of questions in this regard. 1. Is it enough to enable compile time flag (FIXED_POINT) in the config.h, include silk_fixed library and exclude silk_float in the opus_demo project. I am working in the MSVC framework. Anyone has tried this before? 2. It seems there is no compile time flag to enable SILK only code, the core SILK code is invoked at the run time, correct? Obviously, there is a way to call SILK only code so it can be used get cycl...
2015 Mar 02
13
Patch cleaning up Opus x86 intrinsics configury
The attached patch cleans up Opus's x86 intrinsics configury. It: * Makes ?enable-intrinsics work with clang and other non-GCC compilers * Enables RTCD for the floating-point-mode SSE code in Celt. * Disables use of RTCD in cases where the compiler targets an instruction set by default. * Enables the SSE4.1 Silk optimizations that apply to the common parts of Silk when Opus is built in
2014 Apr 19
0
number of libs for MSVC
I would like to say opus is a great library. I have been playing with it with mingw and have found it great. I thought I would also get it working in MSVC aswell since I'm using CMake Then when I compiled I realised opus.lib was not enough. I needed celt.lib;silk_common.lib;silk_float.lib linked as well. I was wondering why mingw compiles to one lib and MSVC does not. Is there something I missed? also is there plans to change this in the future? I know it is rather silly but it means programming more conditions in cmake. -------------- next part -------------- An HTML attach...
2016 Jul 21
0
extracting SILK only FIXED POINT code
...and I'd estimate that it has a smaller footprint as well > I need to extract SILK only FIXED POINT code. I have a couple of questions > in this regard. > > 1. Is it enough to enable compile time flag (FIXED_POINT) in the > config.h, include silk_fixed library and exclude silk_float in the > opus_demo project. I am working in the MSVC framework. Anyone has tried > this before? > > 2. It seems there is no compile time flag to enable SILK only code, > the core SILK code is invoked at the run time, correct? Obviously, there > is a way to call SILK only co...
2012 Sep 10
11
Cleanup/build improvement for opus
Hello all, after FOMS I decided to take a look at the opus library and I found that I could improve a bit the build system and cleanup the code a little bit. Most of the changes to the code has been suggested by my two tools cowstats and missingstatic (part of the ruby-elf gem if you care). HTH, Diego
2015 May 13
3
Compiling DLL?
Hello, I have a plugin called DFVoice, which is a voice chat plugin for the Unity game engine. The latest version of Unity now allows for native DLLs in the free version (whereas previously it only allowed .NET DLLs), so I've been wanted to integrate Opus to replace NSpeex. That said, I've been running into issues with compiling Opus - that is, I can't seem to figure out how to compile
2014 Jun 04
2
opus_multistream_encode_float not working in libopus 1.1
> Have you tried compiling it yourself? I just installed git for the first time and downloaded all of the latest source code packages directly from the site. I'm getting the following every time I try to (re)build any of the projects: 1>------ Build started: Project: opus, Configuration: Release Win32 ------ 1> fatal: Not a git repository: 'C:\My
2014 Jun 04
3
opus_multistream_encode_float not working in libopus 1.1
...ling me. The log is showing a fatal error and the build doesn't succeed. There's no compiled lib, dll, or anything. If I try to build the entire solution, I get this: 1>------ Build started: Project: silk_common, Configuration: Release Win32 ------ 2>------ Build started: Project: silk_float, Configuration: Release Win32 ------ 2> fatal: Not a git repository: 'C:\My Documents\Opus\win32\..\.git' 1> fatal: Not a git repository: 'C:\My Documents\Opus\win32\..\.git' 1> The syntax of the command is incorrect. 2> The syntax of the command is incorrect. 2>...
2016 Jul 14
6
Several patches of ARM NEON optimization
I rebased my previous 3 patches to the current master with minor changes. Patches 1 to 3 replace all my previous submitted patches. Patches 4 and 5 are new. Thanks, Linfeng Zhang