search for: ao_interfac

Displaying 7 results from an estimated 7 matches for "ao_interfac".

Did you mean: ao_interface
2001 Mar 10
0
patch to add device-option to ogg123 rc file
...(like /etc/ogg123.rc) for configuring the device-options. In addition, comments can be used (when they start a line). My ~/.ogg123rc: default_device=oss default_options=dsp:/dev/audio Please share your comments. Jeremy C. Reed http://www.reedmedia.net/ diff -u vorbis-tools-1.0beta4/ogg123/ao_interface.c vorbis-tools-1.0beta4-modifdiff -u vorbis-tools-1.0beta4/ogg123/ao_interface.c vorbis-tools-1.0beta4-modified/ogg123/ao_interface.c --- vorbis-tools-1.0beta4/ogg123/ao_interface.c Fri Feb 23 17:39:19 2001 +++ vorbis-tools-1.0beta4-modified/ogg123/ao_interface.c Sat Mar 10 03:28:28 2001 @@ -56,12...
2001 Feb 19
2
win32 question
...ot exist everywhere. I've proposed changing it to use the pathconf() function, but I don't know if win32 has this or not (I don't have, or want, access to win32 compilers :-). If win32 doesn't have pathconf(), we might have to do something like the following in vorbis-tools/ogg123/ao_interface.c: #ifdef win32 /* code which can use the NAME_MAX constant */ #else /* code which uses pathconf() to get the maximum filename length */ #endif {+} Jeff Squyres {+} squyres@cse.nd.edu {+} Perpetual Obsessive Notre Dame Student Craving Utter Madness {+} "I came to ND for 4 years and en...
2001 Jan 22
2
vorbis-tools-1.0prebeta4.tar.gz
Hi, ogg123.h is missing from the vorbis-tools tarball: Making all in ogg123 make[1]: Entering directory `/home/me/dl/vorbis/vorbis-tools-1.0prebeta4/ogg123' make[1]: *** No rule to make target `ogg123.h', needed by `ogg123.o'. Stop. make[1]: Leaving directory `/home/me/dl/vorbis/vorbis-tools-1.0prebeta4/ogg123' make: *** [all-recursive] Error 1 --- >8 ---- List archives:
2001 Mar 13
1
Compiling vorbis-tools on NetBSD-1.5/i386
...s, I then try the same configure command as above, but this time give the --disable-ao-test option, and things go smooth. After that, typing ``make'' gives the following: Making all in oggenc Making all in man Making all in ogg123 /bin/sh ../libtool --mode=link gcc -o ogg123 ogg123.o ao_interface.o buffer.o getopt.o getopt1.o -lvorbisfile -L/usr/pkg//lib -lvorbis -lm -L/usr/pkg//lib -logg -L/usr/pkg//lib -lao -ldl gcc -o ogg123 ogg123.o ao_interface.o buffer.o getopt.o getopt1.o -lvorbisfile -L/usr/pkg//lib -lvorbis -lm -L/usr/pkg//lib -logg -L/usr/pkg//lib -lao -ldl /usr/bin/ld: cannot o...
2001 Jan 29
2
Mac OS X / Darwin patch for vorbis-tools
...revision 1.11 diff -u -p -r1.11 Makefile.am --- ogg123/Makefile.am 2001/01/25 06:54:52 1.11 +++ ogg123/Makefile.am 2001/01/30 01:46:02 @@ -12,7 +12,7 @@ INCLUDES = @OGG_CFLAGS@ @VORBIS_CFLAGS@ ogg123_LDADD = @VORBISFILE_LIBS@ @VORBIS_LIBS@ @OGG_LIBS@ @AO_LIBS@ -ogg123_SOURCES = ogg123.c ao_interface.c buffer.c ogg123.h buffer.h +ogg123_SOURCES = ogg123.c ao_interface.c buffer.c ogg123.h buffer.h getopt.c getopt1.c EXTRA_DIST = $(man_MANS) $(doc_DATA) Index: ogg123/buffer.c =================================================================== RCS file: /usr/local/cvsroot/vorbis-tools/ogg123...
2001 Jan 25
0
ogg123/getopt/NAME_MAX
...on how to procede with that? oggenc supplies its own getopt implementation. The only function really in question is getopt_long(), because getopt() is standard POSIX. See http://www.xiph.org/archives/vorbis-dev/200012/0359.html for a discussion of this issue. 2. Also, NAME_MAX is used in ogg123/ao_interface.c -- this constant is not portable (doesn't exist in Solaris, for example). pathconf() should really be used instead. POSIX 1003.1a, section 2.9.5, table 2-5 contains [NAME_MAX] and the related text states: ----- A definition of one of the values from Table 2-5 shall be omitted from the &lt...
2001 Feb 11
0
compilation issues
...#define; it is in <alloca.h>. oggenc had to add the following to it's platform.h to accomodate this: #ifdef __sun #include <alloca.h> #endif -- "ogg123.c", line 506: syntax error before or at: / C++ style comments are used; they need to be changed to C-style. -- "ao_interface.c", line 61: undefined symbol: NAME_MAX As has been pointed out on this list and the vorbis-list, NAME_MAX is not portable and should not be used. PATHNAME_MAX should be used instead. See http://www.xiph.org/archives/vorbis-dev/200101/0380.html and http://www.xiph.org/archives/vorbis/200012...