similar to: Updated Ogg project

Displaying 20 results from an estimated 8000 matches similar to: "Updated Ogg project"

2001 Nov 07
1
Vorbis framework @ /Library/Frameworks
First, cd to the vorbis directory and issue a "patch -p1" with this data: ################################################### --- vorbis/lib/codebook.h Tue Nov 6 16:51:34 2001 +++ vorbis/lib/codebook-new.h Sat Nov 3 19:32:33 2001 @@ -18,7 +18,7 @@ #ifndef _V_CODEBOOK_H_ #define _V_CODEBOOK_H_ -#include "ogg/ogg.h" +#include <ogg/ogg.h> /* This structure
2001 Nov 04
5
ogg123 running under MacOS X
I finally managed to compile ogg123 under MacOS X, after creating a PB project for it. Rillian, do you want to include the PB project in cvs? (it needs a LOT of polishing, though). ---------- Ogg123 from PACKAGE VERSION by Kenneth Arnold <kcarnold@arnoldnet.net> and others Usage: ogg123 [<options>] <input file> ... -h, --help this help -V, --version display
2001 Nov 06
1
Updated Vorbis project
I have modified some aspects of the Vorbis project. First, cd to the vorbis directory and issue a "patch -p1" with this data: ################################################### --- vorbis/lib/codebook.h Tue Nov 6 16:51:34 2001 +++ vorbis/lib/codebook-new.h Sat Nov 3 19:32:33 2001 @@ -18,7 +18,7 @@ #ifndef _V_CODEBOOK_H_ #define _V_CODEBOOK_H_ -#include
2001 Oct 27
3
vorbis won't compile as a Framework
When I tried to compile the vorbis module as a Framework, using ProjectBuilder, I got 1058 warnings (excess elements in scalar initializer, near initialization for ''psy_set0.toneatt', 'vorbis_ftoi' defined but not used, unused variable 'k', braces around scalar initializer, and so on) and 65 errors. Some examples of errors: ------- vorbis/lib/psytune.c: undefined
2001 Oct 20
1
ProjectBuilder project?
Could someone please include a PB project file in the CVS tree ? I've exported the CW project to an XML file, imported it to PB, but there were no targets in the imported project. Besides, PB lists ALL the files in red (indicating it cannot find the files), so it seems I'll have to manually include them, but if I do it, I'm afraid PB won't be aware they should be synched with
2001 Nov 05
1
Re: vorbis-tools PB project: requirements
On Monday, November 5, 2001, at 12:54 AM, dongoodman wrote: > ok, I haven't tried compiling your vorbis-tools PB project, as I still > can' > t get vorbis.framework to like me. test linkings still complain about > too many main()'s...and in fact, quite a lot of the c files in the > vorbis source have main()'s in them...how very odd. > I'm sorry, I have
2001 Oct 23
4
Problems compiling under OS X
While trying to compile libao 0.8.0 under OS X 10.1, I got the following problems: > [localhost:ecc/Sources/libao-0.8.0] root# ./configure > creating cache ./config.cache > checking for a BSD compatible install... /usr/bin/install -c > checking whether build environment is sane... yes > checking whether make sets ${MAKE}... yes > checking for working aclocal... found >
2001 Oct 30
1
Mac player; low bitrates; (was Re: vorbis players (or lack of) for mac)
> From: rillian (rillian@telus.net) > Date: Mon 29 Oct 2001 - 22:21:51 PST > > On Mon, 29 Oct 2001 dongoodman wrote: > > > >> frankly, i'm rather tired of the lack of free ogg vorbis players > for Mac > > >> OS; it doesn't look like iTunes is going to support the format > anytime > > >> soon (and i have some real issues with its
2007 Jun 20
2
Rspec for the svn-less
Here is a short bash script I wrote to install rspec if your just using the tarballs like me. I probably should have written it in ruby, but there it is: #!/bin/bash RSPEC=rspec-1.0.4-pre-release.tgz RSPECRAILS=rspec_on_rails-1.0.4-pre-release.tgz [ -z "$1" ] && { echo echo "You must include a pathname" echo exit 1 } if [ -d $1/vendor/plugins ]; then cd
2011 Jan 13
1
10.04 Ubuntu
Hi, Chauk-Mean and all - I have just ported everything to 10.04 ubuntu, and I am pleased to note that I was able to use prepackaged stuff almost everywhere. Yes, it was painful before I figured it out. :) I used apt-get to install ruby-1.8.7, all the wx libraries (including the dev header packages) I uninstalled the debian rubygems package completely and installed rubygems-1.4.1 from the
2001 Oct 24
3
Almost there...
Ok, I managed to compile the Ogg and Vorbis libs. Then, after modifying the file audio_out.c as follows: original: #include <dlfcn.h> modified: #include <win32/include/dlfcn.h> I was able to (finally!) compile libao. Then I tried to compile the module vorbis-tools, but uninvited problems came to my party. [...] > /usr/bin/ld: multiple definitions of symbol _getopt >
2006 Jul 15
1
R installation - WINDOWS - problem
Dear R mailing group, I am having extreme - and mysterious - trouble installing R. I tried simply dl ing R-2.3.1.tar.gz, and unzipping it, but after doing so, nowhere could I find a file called R-2.3.1.exe. I did however find an R-2.3.1.exe.manifest. I therefore tried the command line installation command - given in R-admin.pdf. This command is: tar zxvf R-2.3.1.tgz This is strange
2005 Jan 07
1
oh323 driver installation - It works now
Joao, Thanks for sending the Installation tips as pasted below. It works. Seshu ---------- Get oh323 from http://www.inaccessnetworks.com/projects/asterisk-oh323/Libraries/openh323-Janus_patch4-src-tar.gz Get pwlib from http://www.inaccessnetworks.com/projects/asterisk-oh323/Libraries/pwlib-Janus_patch4-src-tar.gz Get asterisk-oh323 from
2003 Dec 27
1
Faked samba packages / rootkit?
Does anybody know of these samba packages? http://ftp.cvut.cz/samba/samba-latest.tar.gz AFAICS they are faked and contain some kind of rootkit (you can see this in the history below. the server this history is from is taken offline for security reasons, and nobody is there till 7th Jan I can't give you more details) > 144 w > 145 cat /etc/issue > 146 uname -a > 147
2007 Jul 01
1
rspec for the svn-less (ruby version)
A couple of things: - it is defaulted to 1.0.5, but if there was a "current" I could probably use that instead. - it seems like everyone might not use the rspec_on_rails piece...what do other think? - there are some other checks I could put in here, suggestions are welcome. - general code suggestions are welcome as well. Mike B. Here is my ruby version: #!/usr/bin/ruby -w
2007 Dec 29
1
Not Able To tar zxvf zaptel-*.tar.gz
I figured it out. The ftp site was not named well and corrected. The other problem I have it after the extraction and make; it was suppose to go under /etc but that did not happen. I am trying to figure out why. On 12/28/07, broadband Voice <broadbandvoice at gmail.com> wrote: > > I successfully downloaded the Asterisk package from Digium but not able > tar zxvf zaptel-*.tar.gz.
2010 Mar 03
3
dahdi and oslec
Hi All, I have followed below steps to enable echo cancellation. # cd /usr/src # wget http://kernel.org/pub/linux/kernel/v2.6/linux-2.6.28.tar.bz2 # tar xjf linux-2.6.28.tar.bz2 # tar zxvf dahdi-linux-2.1.0.4.tar.gz # ln -s /usr/src/dahdi-linux-2.1.0.4 /usr/src/dahdi # mkdir /usr/src/dahdi/drivers/staging # cp -fR /usr/src/linux-2.6.28/drivers/staging/echo /usr/src/dahdi/drivers/staging # sed -i
2002 Feb 04
1
installing version 1.4.1
Hello people, me again ... Just an FYI this time, I think: 0[209]1 sunray1:/contrib > gtar zxf R-1.4.1.tgz tar: R-1.4.1/date-stamp: Could not create file: Permission denied gtar: Error exit delayed from previous errors 2[210]1 sunray1:/contrib > gtar zxvf R-1.4.1.tgz "R-1.4.1/date-stamp" R-1.4.1/date-stamp gtar: R-1.4.1/date-stamp: Could not create file: Permission denied gtar:
2014 Mar 18
3
Tar Compression issue
I have a file Server CentOS 5.10, its on the internet, so I compress all csv into one file using (tar -czvf compressed_files.tar.gz *.csv) on this server so that I can download them as one compressed file to save bandwidth, Disk space on this server available is 50Gig, so when I copy the files onto Redhat EL 5.9 and decompress them using (tar -zxvf *.gz) It decompresses maybe 80% then get error:
2005 Apr 11
2
Upgrading to 2.6.11
What would be the proper steps to upgrade to 2.6.11 on centos 4.0 This is what I think... tar -zxvf linux-2.6.11.6.bz2 cd linux-2.6.11.6 make oldconfig - enter for all choies presented vi .config - change 8250_NR_UARTS to 36 to support 4 - 8 port rs232 cards make bzImage