Displaying 20 results from an estimated 2000 matches similar to: "libvorbisfile dynamic linkage with pkg-config - inter-library dependencies?"
2001 Jul 06
1
problem with vorbis autoconf stuff
It sets:
VORBIS_LIBS="$VORBIS_LIBDIR -lvorbis -lm"
VORBISFILE_LIBS="-lvorbisfile"
VORBISENC_LIBS="-lvorbisenc"
Shouldn't this be:
VORBIS_LIBS="$VORBIS_LIBDIR -lvorbis -lm"
VORBISFILE_LIBS="$VORBIS_LIBDIR -lvorbisfile"
VORBISENC_LIBS="$VORBIS_LIBDIR -lvorbisenc"
as libvorbisenc & libvorbis are also in the same
2000 Jul 25
2
Library issues (BOUNCE vorbis-dev@xiph.org: Non-member submission from [rob@emusic.com]) (fwd)
BTW, I need a volunteer to upgrade xiph.org to MailMan or the like. I'm
officially sick to death of majordomo.
(Or, if you want to code all the features I want in majordomo, that's fine too
;-) I'm a little bit out of time, see....
------- Forwarded Message
Sender: robert@emusic.com
I just brought the FreeAmp codebase up to speed with the latest Vorbis
source. In doing so,
2003 Jun 12
1
static lib
I'm trying to link sox to the ogg vorbis static libraries but I'm
getting the following error:
gcc -L. -L./gsm -o sox sox.o -lst -lgsm -logg -lvorbis -lvorbisfile
-lvorbisenc -lmad -lmp3lame
ld: Undefined symbols:
_oggpack_bytes
_oggpack_get_buffer
_oggpack_reset
_oggpack_writeclear
_oggpack_writeinit
_oggpack_read
_oggpack_readinit
_oggpack_write
_oggpack_adv
_oggpack_look
2003 Jun 11
1
Problems with ov_open
Hey, i'm having trouble getting ov_open to work on my slackware 8.1 system.
The c, and makefile are as follows, and the error produced. I've also
included an ldd of the compiled file. If anyone can be of any help, it
would be greatly appreciated!
--------------------------C FILE-------------------------------
#include <stdio.h>
#include <string.h>
#include
2002 Sep 11
1
Compiling
I am trying to compile the example code for vorbis files and I am getting an
undefined reference, below is my Makefile, any ideas on what is wrong?
OBJS=ogg.o
ogg: $(OBJS)
cc -o ogg $(OBJS) -L/usr/local/lib -lm -lc -lvorbis
ogg.o: ogg.c
cc -I/usr/local/include -c ogg.c
clean:
rm -f $(OBJS)
<p>_________________________________________________________________
Join
2000 Dec 15
1
AIX + ogg123
Has anyone managed to get ogg123 to compile in AIX? I'm got an RS6k with a
PPC 604e, running AIX 4.3.3. I can get libogg, libvorbis, libao, oggenc
(so, everything _but_ ogg123) to compile just fine. I'm using gcc,
thankfully, and not the native IBM compilers. I believe the problem to be
with the linker. By default gcc for AIX doesn't use the GNU linker, but
the standard AIX
2012 May 14
0
Memory Leak in vorbis_info_clear()
I'm having trouble tracking down why it leaks, but below is an example
program which shows--using valgrind--that vorbis_info_clear() leaks memory
if called before vorbis_dsp_clear(), but not if called after
vorbis_dsp_clear(). Just compile and run under valgrind, using the -l switch
to the example program to trigger a leak. Tested under OS X 10.7 and Ubuntu
12.04.
This may be by design, or
2001 Mar 13
1
Compiling vorbis-tools on NetBSD-1.5/i386
[This mail is a bit long: sorry.]
Hi,
I have been trying to compile vorbis-tools-1.0beta4 on NetBSD-1.5/i386,
and I get the following:
---------------------
Upon typing
./configure --prefix=/usr/pkg/ --with-ogg-prefix=/usr/pkg/
--with-vorbis-prefix=/usr/pkg/ --with-ao-prefix=/usr/pkg/
checking for Ogg... yes
checking for Vorbis... yes
checking for ao... no
*** Could not run
2011 Oct 13
1
Problem with Ices
2004 Nov 18
2
Questions about vorbis linking
Hello:
I think that I got a linking problem but I don't know how to fix it.
This is the error code form make:
cc grabando_pcm.o encodear_vorbis.o -o mi_servidor -lasound -lvorbis -logg
encodear_vorbis.o(.text+0x42): En la funci?n `inicializar_vorbis':
: undefined reference to `vorbis_encode_init_vbr'
collect2: ld devolvi? el estado de salida 1
make: *** [mi_servidor] Error 1
2000 Oct 18
1
Building on BeOS part 3
After fixing a 'bug' in libtool, I've finally got ogg compiling and producing
a shared library. Now I'm trying to build vorbis but I'm falling over
at the final step. While trying to produce libvorbisfile.
The make file is trying to compile with
gcc -nostart vorbisfile.o -L/boot/home/config/lib -logg -Wl,-soname -
Wl,libvorbisfile.so -o .libs/libvorbisfile.so
with
2009 May 12
2
compile error of libtheora example
hi all:
i downloaded libtheora1.0.tar.gz from xiph.org, and when i compile it,
such error message popped.
i tried to run player_example.c under /libtheora_1.0/examples/.
error message:
ivysummer at ivysummer-desktop:~/??/libtheora-1.0/examples$ gcc -o player
player_example.c
/tmp/ccpyle3c.o: In function `buffer_data':
player_example.c:(.text+0x15): undefined reference to
2000 Nov 18
1
beta 3 release build is broken on BeOS
Seems we've gone back to the -L/path/to/libvorbis/ -lvorbis missing
while
building libvorbisfile :(
it appears that.
libvorbisfile_la_LIBADD = libvorbis.la
and
libvorbisenc_la_LIBADD = libvorbis.la
have gone missing from vorbis/lib/makefile.am
Dave
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list,
2017 Apr 23
0
impossible to link against libtheoraenc (missing symbol th_comment_query_count)
I've got a huge problem with libtheora. All is fine if I link only
against libtheoradec but as soon as I try to link also against
libtheoraenc everything breaks down:
libtheoraenc.so.1 dlerror: libtheoraenc.so.1: undefined symbol:
th_comment_query_count.
I've checked with NM to see how the libraries depend on each other:
nm libtheoraenc.so.1 | grep th_comment_query_count
2003 Jan 05
2
VorbisFile library crashs.
Hello!
There is a problem with the VorbisFile library. It only works when I open an
OGG file for
the 1st time. After I closed the file and try to open another one or the
same it crashs. It seems it applies to the use of either ov_open or ov_test
functions or their combination.
I wrote a test app that illustrates the bug. It crashs with a message
"Unmapped memory exception". It's
2005 Sep 27
2
Stream "Saving" and Excerpting...
I'm working with a streaming Ogg Vorbis system where I'm taking the stream
output (from a darkice server) and saving it to hour-long files, then
reassembling excerpts from these files (sometimes spanning two or three)
into a single file for playback.
I've got two problems (well, related to this, but anyway).
1) The "chunk" files I'm saving into have mangled headers.
2)
2001 Jun 20
1
What makefile should we use ?
Hello,
I'm trying to write my own code for an oggplayer. Once i have my source
files, what kind of makefile should I use ? Or what commande line should i
give to the compiler ?
Thank you
ekine
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'vorbis-request@xiph.org'
2004 Aug 06
3
ices2 compilations problems
Here is the config.log :
<p>-----------------------------------------------------------
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.57. Invocation command line was
$ ./configure --prefix=/home/Darkmeteor --with-ogg-prefix=/home/Darkmeteor
2000 Nov 18
0
Problem linking libvorbisfile on Mac OS X
I'm working on getting the Darwin/Mac OS X port of Vorbis up and running again and have run into problems building libvorbisfile. I have installed the latest libtool (1.3.5) and modified it to handle Darwin/Mac OS X better (to create shared libraries, dylibs, that can be linked against other dylibs instead of creating bundles which cannot be used as input to the linker).
But, when it tries
2003 Sep 18
1
Mixing libvorbisfile with SDL
I am having no luck at all mixing libvorbisfile with the cross-platform
gaming library SDL.
It seems that any time I call ov_clear, the app goes unstable and
crashes later in calls to glibc. This is unacceptable for obvious
reasons and I was wondering if there was a way to fix it by just using
libvorbis.
I was going to experiment with the possibility, but I have, as yet, been
unable to find