Displaying 20 results from an estimated 1000 matches similar to: "ogg123/getopt/NAME_MAX"
2001 Feb 11
0
compilation issues
There's some compilation issues on Solaris with the native compilers with
the current CVS head.
OGGENC:
=======
-- "oggenc.c", line 202: warning: improper pointer/integer combination: op
"="
I believe the problem here is that rindex() is prototyped in <strings.h>,
which is not included. This may be a sun-specific thing.
OGG123:
=======
-- "ogg123.c",
2001 Feb 19
2
win32 question
Does win32 have pathconf() and _PC_NAME_MAX?
I ask for ogg123 -- it uses "NAME_MAX" right now (already been mentioned
on this list a few times), which does not 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
2001 Feb 11
1
Please gix getopt
I don't think that the getopt_long() situation is handled correctly in the
vorbis-tools module. Here's my take (comments welcome!).
-----
This applies to oggenc, ogg123, and vorbiscomment. See
http://www.xiph.org/archives/vorbis-dev/200012/0359.html for background
and prior discussion on this issue.
There are 2 issues:
1. Summary: getopt() is a POSIX function. It will already be on
2000 Dec 20
7
CFLAGS / LDFLAGS
I notice that the user is not able to set their own CFLAGS or LDFLAGS in
the ao, ogg, vorbis, and voribs-tools projects.
Is there a reason for this?
I understand the fact that these modules want to set extremely high
optimization flags, and that most users won't know what these are offhand,
but there are times when it is useful for the user to specify their own
CFLAGS/LDFLAGS. For example,
2001 Mar 10
0
patch to add device-option to ogg123 rc file
Below is a patch for vorbis-tools-1.0beta4 ogg123.
It adds support for using the 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
2000 Dec 29
2
ogg123 / Solaris
Speaking of ogg123 fixes and Solaris... <getopt.h> doesn't appear to
exist in Solaris. Hence, ogg123 won't compile on Solaris at all (even
with gcc).
I originally mentioned this back in November
(http://www.xiph.org/archives/vorbis-dev/200011/0291.html).
Can this be fixed?
{+} Jeff Squyres
{+} squyres@cse.nd.edu
{+} Perpetual Obsessive Notre Dame Student Craving Utter Madness
2000 Dec 30
0
More on getopt/getopt_long
getopt() seems to be on all the Unix flavors that I can check (Solaris,
IRIX, AIX, HP-UX, Linux). getopt() may be a standardized POSIX
function...? I'm not sure offhand. Regardless, I think it's safe to
assume that it's in all flavors of Unix -- oggenc/ogg123 need not include
a local version of it for POSIX builds.
Indeed, the getopt.c that is in oggenc is not friendly to the Sun
2001 Aug 22
1
Can't compile CVS with non-gcc compilers
Without "no-dependencies" in every single Makefile.am's AUTOMAKE_OPTIONS
line, automake will put gnu-specific instructions that will barf a) if you
don't use gmake, and b) don't use gcc.
This is actually in the automake manual, section 7.11, page 26 -- it's not
an unexpected thing:
"Currently, this support [automatic dependency generation]
requires
2001 Jan 01
1
By design or a bug?
Happy new millenium!
Summary: I'm having a problem queueing up the ogg_packet results of
vorbis_analyze() for later writing to an .ogg stream. The docs don't seem
to say if this is permissable or not. Hence, I don't know if I'm using
the API incorrectly, or if this is an actual bug.
-----
Attached is a short patch to vorbis-tools/oggenc/encode.c (from CVS head,
01/01/01... I
2000 Sep 15
0
More on parallelism
Many of you probably remember the flurry of posts that I created a few
weeks ago about writing a parallel vorbis encoder. Here's what I have
been doing since...
Someone (I can't remember who offhand -- might have been Greg) mentioned
using threads instead of MPI for parallelism on the argument that more
people have SMPs than who have (and know how to use) an MPI
implementation.
Good
2001 Jan 11
2
MP3pro
So it looks like the Frauenhoffer boys are issuing an updated format --
MP3pro. They claim that it will give 128kbps/MP3 quality in 64kbps.
I'm interested to see what others think of this.
I'm also curious: I've seen others on the list say that Ogg/Vorbis' sound
quality is "better" than MP3. Can this be quantified (or is this already
on a web page somewhere)? I kinda
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
2001 Jan 11
1
Oops -- forgot URL
>From /., here's the URL with the announcement of mp3PRO
http://www.twice.com/html/pagebeta.cfm?InputKey=2853
{+} Jeff Squyres
{+} squyres@cse.nd.edu
{+} Perpetual Obsessive Notre Dame Student Craving Utter Madness
{+} "I came to ND for 4 years and ended up staying for a decade"
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage:
2001 Aug 20
1
Another // comment
vorbis/lib/vorbisenc.c:138 and 157 have "//" comments.
Patch included for the lazy (like me!).
{+} Jeff Squyres
{+} squyres@cse.nd.edu
{+} Perpetual Obsessive Notre Dame Student Craving Utter Madness
{+} "I came to ND for 4 years and ended up staying for a decade"
Index: vorbis/lib/vorbisenc.c
===================================================================
RCS file:
2001 Mar 11
1
vorbis_analysis() dependencies?
Per Monty's suggestions from a while ago, I have [finally] gotten around
to playing with different schemes for parallel oggenc. Monty's main
suggestion was to have a single thread loop over reading samples and
calling vorbis_analysis_blockout(), and then queueing up the resulting
blocks to be processed through vorbis_analysis() in other threads (in
parallel).
To verify that this works, I
2000 Aug 22
1
vorbis' configure
It seems that the configure script in CVS does not check the CFLAGS
environment variable at all. Indeed, on line 121 of configure.in, CFLAGS
is explicitly set to be blank.
Is this done for a reason? I see that several sets of CFLAGS are passed
into the Makefiles by configure based upon specific architecture/compiler
combinations -- perhaps this is the reason...?
I ask because users may wish to
2000 Dec 15
2
Makefile patches
I have sent some patches to some Makefile.am's as well as to some
configure.in's, particularly for building without gcc and gmake.
Can someone review those patches, and/or commit them?
(we are working at the CVS head these days, no?)
I cannot build in Solaris without gcc/gmake, for example -- running
"autogen.sh" in the ao project with the native Solaris compilers causes
2001 Aug 19
1
C++ style comment in vorbis-tools/oggenc/utf.8
vorbis-tools/oggenc/utf8.c:164 has a //-style comment; it should be /* ...
*/ so that non-gcc compilers won't barf (e.g., solaris Forte 6.1 cc).
Patch included, if you're really lazy. :-)
{+} Jeff Squyres
{+} squyres@cse.nd.edu
{+} Perpetual Obsessive Notre Dame Student Craving Utter Madness
{+} "I came to ND for 4 years and ended up staying for a decade"
Index: oggenc/utf8.c
2000 Dec 22
1
vorbis/ltconfig
The file vorbis/ltconfig appears to be checked into CVS. This is an
automatically generated file -- it should not be under CVS control.
{+} Jeff Squyres
{+} squyres@cse.nd.edu
{+} Perpetual Obsessive Notre Dame Student Craving Utter Madness
{+} "I came to ND for 4 years and ended up staying for a decade"
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project
2001 Aug 20
1
Still more // comments
This time in vcut:
vorbis-tools/vcut/vcut.h:23 and 24.
No, I'm not spending quality time with grep; I'm trying to compile vorbis
with the native Sun Forte compilers. Much badness, of which these //
issues are only part. :-( More details to follow...
Patch/inc/lazy.
{+} Jeff Squyres
{+} squyres@cse.nd.edu
{+} Perpetual Obsessive Notre Dame Student Craving Utter Madness
{+} "I