Displaying 20 results from an estimated 1000 matches similar to: "need help running speex on ARM linux"
2016 Jan 22
3
lld: ELF/COFF main() interface
I think I have an idea to cover your need and possibly other people's on
this thread. It provides the "main() as a library function" feature,
input/output files wouldn't go through disks nor file systems, and it
doesn't require any major design changes. Sounds too good?
That is, we can provide a function that takes command line parameters, do
fork, and call the linker's
2016 Jan 22
2
lld: ELF/COFF main() interface
If you want to link ELF object files, you are likely to be using a Unix
machine. I'm not trying to address all possible problems but suggesting a
practical solution.
On Fri, Jan 22, 2016 at 9:49 AM, Yaron Keren <yaron.keren at gmail.com> wrote:
> On Windows fork() is not available. If exec() is used instead, process
> creation time is several times slower than Linux. This may be
2010 Mar 03
2
uint decode error on visual studio...
Is this a common warning? The decoder doesn't return an error on it, but I
see it a lot in my test application on windows. It is non existent on my
linux box. I haven't tried mingw yet.
please note that I'm using visual studio 2008 w/the vcproj that Bjoern
Rasmussen made for 0.5.2 (w/some file references removed) at the moment and
it is giving a lot of C4554 warnings
2004 Sep 10
2
Storing FLAC in Matroska
First, Thank you for your answers.
I using the following code to try simply decode a flac file and write the
decoded data raw PCM file. The resulting file is just noise and pops, so is
the decoded data in a different format than PCM?
struct flacData {
FILE *inputFile;
FILE *outputFile;
char *filename;
};
FLAC__StreamDecoderReadStatus flac_DecoderReadCallback(const
FLAC__StreamDecoder
2004 Nov 29
1
Record() and problems converting with sox.
Hi,
I'm trying to convert a high(er) quality wav/ulaw/alaw file (captured with
Record()) to a gsm file and can't get the bugger to work. The example on the
page http://www.voip-info.org/wiki-Asterisk+sound+files says that:
$ sox inputfile.wav -r 8000 -c 1 outputfile.gsm resample -ql
Should work, but I get the error message:
sox: Input and Output rates must be different to use resample
2012 Aug 10
3
Batch Mode for Windows
Hi, I have researched batch mode for windows and could not find anything that
worked.
I know the code should be
$ R CMD BATCH inputfile.R outputfile.Rout
or
R <inputfile.R > outputfile.Rout
I tried these without success. I need detailed, step by step instructions on
how to do this. I have tried typing C:\R\bin\x64\Rgui.exe before it, but
this just opens R.
When I tried to do this, it
2009 Jun 23
0
[LLVMdev] [PATCH] Catch NULL return value of ExecutionEngine::create()
ExecutionEngine::create() can return NULL with an empty error message
(admittedly, it did so because of global variable initialization
problems). The code currently lets NULL go through if ErrorMsg is empty,
and segfaults later.
When EE is NULL but ErrorMsg is empty, simply do not try to
print it and exit.
Index: tools/lli/lli.cpp
2006 Oct 24
1
fixed point AEC
Thanks Jean, I missed that detail.
I have a few more compile errors if you could help me with it =>
In function speex_echo_state_init in mdf.c I am getting error: "undefined reference to exp". I don't see a fixed point implementation of "exp". Can you point me to the correct files.
I am using the following files from speex 1.2 beta1 =>
mdf.c,
2016 Jul 15
3
[PATCH 1/4] Create a simple project to create version.h to run before any other
Avoids trying to create and replace version.h more than once which
led to file-locking errors with multicore builds.
---
Makefile.am | 1 +
win32/VS2015/celt.vcxproj | 48 +++++++++++++++++---------
win32/VS2015/generate_version.vcxproj | 65 +++++++++++++++++++++++++++++++++++
win32/VS2015/opus.sln | 32 ++++++++++++++++-
2008 Nov 03
0
[LLVMdev] Debugging lli using bugpoint
Hi Prakash,
Unfortunately it looks like you need to do quite a bit of
investigation into this. However, I hope I can provide some useful tips.
1. In general, lli and llc generate exact the same code except lli
default to static codegen while llc defaults to dynamic-no-pic
codegen. So try passing -relocation-model=dynamic-no-pic to lli. If
this works, that means there are issues with
2007 Apr 18
0
[Bridge] Error in usb0 and eth0 bridging on an ARM9 Plattform
Hello,
I?m using the Linux Bridge on an Atmel Arm9 Plattform with the kernel
2.6.11rc3.
The configuration is the following:
LAN<--Arm9(Ethernet)--Bridge--Arm9(USB-Device)-->Notebook (USB-Host)
or
LAN<--Arm9(Ethernet)--Bridge--Arm9(USB-Host)-->Notebook (USB-Host)
(with a Trust USB2.0 Host to Host cable)
When I try to ping my Notebook from LAN and reverse, everything seems to be
2007 Apr 18
2
FLAC: sending output to file
2007/4/18, Josh Coalson <xflac@yahoo.com>:
>
> --- Harry Sack <tranzedude@gmail.com> wrote:
> > Hi,
> >
> > I'm using windows so I know the wildcard support for flac is broken.
> > That's
> > why I use this command to encode a whole directory of WAV-files to
> > FLAC-files in a command prompt:
> >
> > for %1 in (*.wav) do
2008 Apr 30
1
Avelsieve 1.9.7 and Dovecot/TLS
Hi,
i'm installing a new mail server for our faculty and want to use
the squirrelmail plugin 'avelsieve' (1.9.7). As documented on the
dovecot wiki there is a problem in the STARTTLS code and i
found a solution (that works for my installation):
i've traced the server output in 'get_response' and instead of
a script list i saw "IMPLEMENTATION". So i took a look
2006 Oct 24
2
fixed point AEC
Analog Devices sponsored a fixed point version for AEC which was posted early this year, but it seems from the source code that the fft routines are still in floating point. Is the port still not complete or am I missing something? Has anyone out there ported speex AEC on RISC architecture? Please let me know.
Thanks in advance,
-Deepa
-------------- next part --------------
An HTML
2013 Oct 22
1
[PATCH 2/2] Discard unwritten ranges
---
pxzcat.c | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/pxzcat.c b/pxzcat.c
index 9bcdc36..55ccfc0 100644
--- a/pxzcat.c
+++ b/pxzcat.c
@@ -44,10 +44,11 @@
#include <sys/types.h>
#include <error.h>
#include <errno.h>
#include <getopt.h>
#include <pthread.h>
+#include <linux/falloc.h>
#include <lzma.h>
#define DEBUG
2009 Jun 23
3
[LLVMdev] X86 JIT
On Mon, Jun 22, 2009 at 4:43 PM, Chris Lattner <clattner at apple.com>
wrote:
>
> On Jun 22, 2009, at 2:19 PM, Kasra wrote:
>
> Hi,
>
> for some reason I could not get the machine code generator for x86
> working. The interpreter is the only thing that works, is there
> anything that I am missing here?
>
> This recently changed. In your main program, please
2008 Nov 02
2
[LLVMdev] Debugging lli using bugpoint
Hi Eli,
Thanks for the reply. I tried with -Xlinker="-ldl ". However it does not
seem to make a difference. It seems that when bugpoint is run with
--run-jit, the linker args are not passed to gcc (from
tools/bugpoint/ExecutionDriver.cpp) :
if (InterpreterSel == RunLLC || InterpreterSel == RunCBE ||
InterpreterSel == CBE_bug || InterpreterSel == LLC_Safe)
RetVal =
2006 Oct 24
2
memory requirements for AEC
Does anyone know the data memory requirements for fixed point AEC?
-Deepa
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.xiph.org/pipermail/speex-dev/attachments/20061024/b9d776d6/attachment.htm
2002 Aug 06
0
Getting a GUI to work with Vorbis code
I am trying to create a Graphical User Interface for a Vorbis Player under
MS Visual C++ 6.0
I was initially trting to use the code from decoder_example.c but I keep
getting linker errors.
I have set up my project as told to by James Boer on this mailing list.
This is as follows:
This document was prepared from an email received from James Boer on the Ogg
Vorbis mailing list. It gives a
2013 Oct 22
2
[PATCH 1/2] Preallocate output file
---
pxzcat.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/pxzcat.c b/pxzcat.c
index 4ab8689..9bcdc36 100644
--- a/pxzcat.c
+++ b/pxzcat.c
@@ -29,10 +29,11 @@
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
+#define _GNU_SOURCE
#include <config.h>