similar to: vq: postbeta2 patch

Displaying 16 results from an estimated 16 matches similar to: "vq: postbeta2 patch"

2000 Nov 08
0
vq diffs
please add the following diffs to the vorbis/vq dir. - include files changed so things actually compile in new scheme - _ogg_...alloc cleanups caught a half-dozen typos or so - minor Makefile touchup. (stuff is still not tested, but this will compile at least) Would someone with cvs write access commit them for me please? Erik diffs: ------------------------ diff -bBu2r vorbis/vq/Makefile
2000 Nov 10
1
cvs trunk vorbis/ compile patches
ltconfig placeholder shoud be removed. Makefile.am : some stuff copied from branch_beta3 ogg lib must be added only where necesary. vq subdir Makefile.am'ized, (but installs nothing) made distclean target slightly more clean -- check it by hand first, please --- also you'll want to remove vq/Makefile if the ...am passes inspection ------------------------------------------------- diff
2000 Oct 11
3
More CVS trouble
Well after a week out for a training course, I'm back to trying to check out the postbeta2_branch. so I do cvs -d :pserver:anoncvs@xiph.org:/usr/local/cvsroot co -r branch_postbeta2 vorbis and everything is fine. Trying $ cvs -d :pserver:anoncvs@xiph.org:/usr/local/cvsroot co -r branch_postbeta2 ogg I get... cvs server: Updating ogg cvs server: Updating ogg/doc cvs server: Updating
2000 Sep 26
1
branch merged
I just finished the merge of branch_jackoggsvorbis into branch_postbeta2 Vorbis is now split into two libs, libogg, and libvorbis in this branch. the follow modules are a result: ogg - basic framing library, all ogg code and docs, etc vorbis - the vorbis codec, depends on ogg vorbis-plugins - all the audio plugins for ogg vorbis, depends on ogg and vorbis ao - libao a cross platform audio
2000 Sep 05
2
docs URL
Hi. I've put up some docs related to my first encounter with the vorbis source code at http://surf.chimie.uqam.ca/~kruus/vorbis/encoder/index.html It documents a newbie's first look and [serious] attempts to trace through examples/example_encoder.c . Don't laugh too hard! Even though the docs are quite un-doc-like, I've stopped working on them indefinitely, since Monty
2000 Sep 29
4
Is branch_postbeta2 supposed to build ??
Or did I check it out incorrectly ?? The problems I've had are... The configure script seems to require libogg to exist before it will finish configuring. There are includes for ogg/ogg.h which doesn't exist, in fact the ogg directory doesn't exist. Dave....not an CVS expert.... --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage:
2000 Oct 01
4
CVS Problem
I've been kind of busy lately, but I wanted to see what's up with ao after the build change. I was able to check out the vorbis module, but when I tried to check out the ao module I saw this: [stan@volsung vorbis]$ cvs -d:pserver:anoncvs@cvs.xiph.org:/usr/local/cvsroot co -r branch_postbeta2 ao cvs server: Updating ao cvs server: Updating ao/doc cvs server: Updating ao/include cvs
2000 Sep 05
1
[kcarnold@xiph.org: [xiph-cvs] cvs commit: vorbis/vorbis-tools/libao ao_alsa.c ao_oss.c audio_out.c audio_out.h]
remember kenneth that libao has moved to the "ao" module, so copy the changes... jack. ----- Forwarded message from "Kenneth C. Arnold" <kcarnold@xiph.org> ----- Delivered-To: cvs-outgoing@xiph.org Delivered-To: cvs@xiph.org To: cvs@xiph.org Subject: [xiph-cvs] cvs commit: vorbis/vorbis-tools/libao ao_alsa.c ao_oss.c audio_out.c audio_out.h Date: Tue, 5 Sep 2000
2000 Oct 10
4
Mac Ogg Vorbis Player
Well, I updated the player to work with the branch_postbeta2, but it contains some nasty kludges to the project files that probably shouldn't be finalized. I'm going to put it in a separate file (http://oscar.the-rileys.net/programming/vorbis_pb2.tar.gz) for now. Unfortunately, this release doesn't seem to fix the "tearing sound" problem. I think this might be related to
2017 Aug 29
0
help with read.csv() for files with different number of columns
Hi Ace, You can just read the file first to find out: max_fields<-function(file,sep=" ") { rlines<-readLines(file) return(max(unlist(lapply(sapply(rlines,strsplit,sep),length)))) } nmax<-max_fields(test.txt,"\t") Jim On Wed, Aug 30, 2017 at 2:22 AM, Fix Ace <acefix at rocketmail.com> wrote: > Thank you very much! Looks like I have to know the length of
2000 Sep 03
2
cvs changes
I'm trying to clean up CVS, getting everything where it should be, because pretty soon we're going to have to build SDK's and whatnot, and I want that to be easy. We're basically going to have 3 libraries: 1) libogg 2) libvorbis 3) libvorbisfile I have separated libogg out from the rest of the code, cleaned it up, got it doing 'make dist' and rpms and imported this into
2000 Oct 08
1
Mac Vorbis Player
I've got a working (standalone) Mac Vorbis player. It doesn't handle clipping nicely (it makes narsty noises that XMMS doesn't), the code's not commented yet, there's no other way to quit while the sound plays besides force quitting, and there's no real error checking, but it works and I got around the problem with os_types.h by putting a mac-specific version in the
2000 Oct 10
1
Ogg123 Patch Status?
I was just curious about the patch that I sent for ogg123 that implements the --quiet and adds in the --skip option? Also - I would like to know what are the main cvs modules and branches in which development takes place? Specifically, I would like to look at the very latest libao and ogg123 sources. I would also like to know where the main development for libvorbis takes place Regards, Ali
2001 Apr 16
2
Dump utility?
Is there any dump utility that exists for vorbis streams? What I am intersted in is something that will do a break down like: How many bits are used for encoding _each_ codebooks, how many bits are used for the residue, how much is used for the lpc coefficints. A selective dump of the codebooks themselves would be nice too of course. I'm wondering if anyone has such a little dump utility.
2001 May 01
1
encoder observation
Hello! First of all a question: When you make the encoder tables (ie: mode_e.h) do you use the mapping0_forward function? Because you made the encoder tables, and after this you did a minor correction in the final beta4 ... (this correction was: additional[0]=fabs(additional[0]*scale); in the mapping0_forward function) (I see this was a bug, and the modification was correct, but this correction
2017 Aug 29
2
help with read.csv() for files with different number of columns
Thank you very much! Looks like I have to know the length of each record ahead of time. Ace On Monday, August 28, 2017 12:56 AM, Jim Lemon <drjimlemon at gmail.com> wrote: Hi Ace, With tabs as separators: testdf<-read.table("test.txt",header=FALSE,fill=TRUE,sep="\t", col.names=paste("V",1:19,sep=""),stringsAsFactors=FALSE) Also note