Displaying 20 results from an estimated 2000 matches similar to: "compilation errors netbsd"
2007 Oct 11
1
compilation errors netbsd
hello again,
on NetBSD the library ossaudio needs to be linked in for speex to build. i
did it by hand in the src/Makefile by altering LDFLAGS to "-lossaudio". it
now compiles properly.
thanks for your time,
b
On 10/11/07, Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> wrote:
>
> Seems like NetBSD doesn't like the ioctl calls. Maybe you need to link
> with another
2008 Apr 04
2
speexdec 1.2.3
On Fri, Apr 4, 2008 at 12:19 AM, Jean-Marc Valin
<jean-marc.valin at usherbrooke.ca> wrote:
> Jahn, Ray (R.) a ?crit :
>
> > Dear Speex codec community:
> >
> > I am working on conversion of voice files. I could not figure out how to use speexdec.exe 1.2.3 in piped mode in order to avoid the creation of the potentially large intermediate *.wav or *.pcm files. Any
2016 Jul 08
3
failure with latest cross compiling
As a note, with the latest versions, I get this "new" failure, when
cross compiling for windows using mingw:
CCLD speexdec.exe
speexdec.o:speexdec.c:(.text+0x4af): undefined reference to
`_imp__waveOutGetNumDevs at 0'
speexdec.o:speexdec.c:(.text+0x54d): undefined reference to
`_imp__waveOutOpen at 24'
speexdec.o:speexdec.c:(.text+0x5aa): undefined reference to
2007 Aug 08
2
need help on compile speex-1.2beta2.tar.gz
Hi, Jean-Marc,
I have another quick question, I got following message when compile
speexdec.exe:
Linking...
libspeex.lib(sb_celp.obj) : error LNK2001: unresolved external symbol
_lpc_window
Release/speexdec.exe : fatal error LNK1120: 1 unresolved externals
Where does this lpc_window declare?
Thanks a lot,
-Allen
On 8/8/07, Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> wrote:
>
2016 Jul 11
1
failure with latest cross compiling
Hi Roger,
>
> On Fri, Jul 8, 2016 at 6:41 PM, Roger Pack <rogerdpack2 at gmail.com> wrote:
>> As a note, with the latest versions, I get this "new" failure, when
>> cross compiling for windows using mingw:
>>
>> CCLD speexdec.exe
>> speexdec.o:speexdec.c:(.text+0x4af): undefined reference to
>> `_imp__waveOutGetNumDevs at 0'
2004 Aug 06
1
patch for compiling on IRIX
The following patch (based off of the current CVS tree) is necessary
to compile Speex on IRIX (or any other system that doesn't include
getopt_long in the system libraries).
I would suggest further that src/getopt_win.h be renamed to getopt_long.h
since it's not just Windows that lacks getopt_long.
Michael
Index: configure.in
2018 Feb 09
3
[PATCH]Add address overflow check
Hi,
I came into a crash when using 32-bit `speexdec` and found that there's an
address overflow in function `print_comments()`:
static void print_comments(char *comments, int length)
{
char *c=comments;
int len, i, nb_fields;
char *end;
if (length<8)
{
fprintf (stderr, "Invalid/corrupted comments\n");
return;
}
end = c+length;
2008 Apr 01
2
speexdec 1.2.3
Dear Speex codec community:
I am working on conversion of voice files. I could not figure out how to use speexdec.exe 1.2.3 in piped mode in order to avoid the creation of the potentially large intermediate *.wav or *.pcm files. Any pointer to web or file of instruction is appreciated.
Attempt (one long command line, failed):
type d:\test.spx | "d:\speex 1.2.3\bin\speexdec.exe" - -
2008 Jan 11
1
Patch for OS/2 STDIN/STDOUT
Hi,
to make in/output on STDIN/STDOUT work on OS/2 this small patch is needed:
---cut---
diff -ruN o:src/speexdec.c src/speexdec.c
--- o:src/speexdec.c 2007-12-08 05:01:08.000000000 +0100
+++ src/speexdec.c 2008-01-12 00:48:00.000000000 +0100
@@ -231,6 +231,8 @@
{
#if defined WIN32 || defined _WIN32
_setmode(_fileno(stdout), _O_BINARY);
+#elif defined OS2
+
2008 Aug 27
3
Packet Loss question
Hello all,
I know that SPEEX has a mechanism to handle packet loss.
I see there is some handling for packet loss implemented in speexdec.
I want to know, if in my own application should i also implement such
packet loss handling or is it taken care of within the decoder?
I want to test my SPEEX application for GNU Radio for some packet loss,if
i just simulate a packet loss mechanism, will it work
2006 Oct 03
3
How to get podcasters to adopt Speex?
Please consider using 16-bit 16kHz (wideband) instead. It's a huge
increase in audio quality and the bitrate is still very low, especially
if you take advantage of Speex features such as VBR.
8kHz seems totally inappropriate to me for desktop streaming audio, let
alone 8-bit samples. Or perhaps your recording equipment is an original
Sound Blaster from 1989? (Even that could record at
2004 Aug 06
2
Error in compiling Speexdec code (Speex-1.1.5 code) on Windows usingVC++6.0
Hi Chris,
Thanks a lot for your help. I've been able to resolve all the errors except one.
I don't have ogg.h header file, so when I try to build Speexdec.exe, I get an error
d:\speex\speex-1.1.5\src\speexdec.c(44) : fatal error C1083: Cannot open include file: 'ogg/ogg.h': No such file or directory
I don't have this file, but as I wrote in my previous mail, an ogg_static
2006 Aug 02
1
[PATCH] skeleton support for speexenc and speexdec
Hi,
I have done some code cleanup of my speexenc patch for skeleton
support. Also a warning message have been added to let the users know
that some decoders may fail with skeleton output enabled.
The speexdec patch enables speexdec to play skeleton enabled speex file.
Thanks in advance for the feedbacks.
--tahseen
-------------- next part --------------
A non-text attachment was scrubbed...
2007 Jul 24
3
Speex 1.2 beta2 Win32 tools binaries
Hello speex development team!
As I see on http://www.speex.org/downloads/ page,
where is no Windows binaries for speex encoder and decoder tools for
1.2beta2 version since no maintainer for it yet.
Well, I compiled it from the sources using MSYS environment and MinGW
tools (GCC version is 3.4.5).
Both libOgg-1.1.3 and speex-1.2beta2 were configured as
"./configure
2004 Aug 06
0
Sun audio driver for speexdec
I did this for OpenBSD. NetBSD uses the same audio(4) system.
It should also work on Solaris, but I can't test that.
--- configure.in.orig Tue May 13 00:58:07 2003
+++ configure.in Tue May 13 00:58:20 2003
@@ -26,7 +26,7 @@ AC_CANONICAL_HOST
AM_PROG_LIBTOOL
AC_C_BIGENDIAN
-AC_CHECK_HEADERS(sys/soundcard.h)
+AC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h)
AC_ARG_ENABLE(ogg,
[
2006 Oct 03
2
How to get podcasters to adopt Speex?
This is a really good point, and definitely a recurring theme on this
mailing list. :) I wonder, what are some better options for handling
this issue, other than to keep saying "just use 8/16/32kHz"?
- Extend Speex to support other sample rates (seems unlikely..?)
- Integrate a resampling algorithm into libspeex
- Maintain a list of recommended resampling libraries that work well
2004 Aug 06
1
Error in compiling Speexdec code (Speex-1.1.5 code) on Windows using VC++6.0
Hi,
I've downloaded the Speex-1.1.5 code and am trying to compile the Speexdec code using Microsoft VC++ 6.0 IDE.
When I try to open the speexdec.dsw workspace, I get a dialog asking to locate the ogg_static file. I simply cancel that message, and then the project is opened in the VC++ 6.0 IDE.
Now, when I simply try to compile the program, I receive this 5 error messages.
error1.
2010 May 03
1
Help decompressing Speex audio
I have an audio file compressed by JSpeex that I'm trying to decompress on the iPhone. I've been trying to work from the speexdec example in an attempt to port the core logic to ObjC. I have a class that does the decode and passes the result back to another class. (currently the other class is a unit test.) My other class is writing the converted output to disk. I compare the results of my
2008 Apr 04
0
speexdec 1.2.3
Dear Jean-Marc and Peter:
Thank you both very much for your time and advice. I did not realize that Lame MP3 code has a -r option (without reading its code). I have tried the suggested command lines verbatim with the added -r option, along with other combination of option settings. I could not figure out how to eliminate the distortion in the result, like voice turning either high or low
2006 Aug 31
1
serving speex without a server
On my personal web pages hosted by my ISP I have a collection of speex files
with names ending, as usual, in '.spx'. My ISP does not provide for scripting
or CGI but thanks to the "Home-Brew Streaming" idea of Dr Tak Auyeng,
www.drtak.org/teaches/ARC/speex/, my friends with Windows XP can listen to
such a recording without the need for a prior download of the whole file
and