Displaying 4 results from an estimated 4 matches for "vqsplit".
Did you mean:
vgsplit
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
2000 Aug 23
0
explicit header deps: patch
...kruus@hilly:~/v/vorbis.new$ patch -p1 < ../cxref.patch 2>&1 | tee xrefpatch.log
patching file `cmdline/header.h'
patching file `include/vorbis/backends.h'
patching file `lib/registry.h'
patching file `lib/spectrum.h'
patching file `vq/vqgen.h'
patching file `vq/vqsplit.h'
kruus@hilly:~/v/vorbis.new$
The patch itself:
----------------------------------------------- cxref.patch
diff -c2 -bBw -r -x Mak* -x conf* -x CVS -x *.c vorbis.now/cmdline/header.h vorbis.nowp/cmdline/header.h
*** vorbis.now/cmdline/header.h Thu Jul 15 03:33:27 1999
--- vorbis.nowp/cmdlin...
2000 Nov 08
0
vq diffs
...nclude
+FLAGS=-I. -I../include -I../lib
OPT=-O20 $(FLAGS)
DEBUG=-g -Wall $(FLAGS)
@@ -17,7 +17,7 @@
LD=gcc
LDFLAGS=$(FLAGS)
-LIBS=-lm
+LIBS=-lm -logg
-HFILES = ../include/vorbis/codebook.h vqgen.h vqext.h bookutil.h
+HFILES = ../lib/codebook.h vqgen.h vqext.h bookutil.h
OFILES = vqgen.o vqsplit.o bookutil.o ../lib/sharedbook.o
@@ -85,5 +85,5 @@
lspvqtrain genericvqtrain residuevqtrain\
vqbuild vqmetrics latticebuild vqcascade latticepare\
- huffbuild residuesplit
+ huffbuild residuesplit latticehint latticetune
distclean: clean
diff -bBu2r vorbis/vq/...
2000 Nov 10
1
cvs trunk vorbis/ compile patches
...##################################################################
-
-FLAGS=-I. -I../lib -I../include
-OPT=-O20 $(FLAGS)
-DEBUG=-g -Wall $(FLAGS)
-PROFILE=-g -pg -O20 $(FLAGS)
-CC=gcc
-LD=gcc
-LDFLAGS=$(FLAGS)
-LIBS=-lm
-
-HFILES = ../lib/codebook.h vqgen.h vqext.h bookutil.h
-
-OFILES = vqgen.o vqsplit.o bookutil.o ../lib/sharedbook.o
-ALLOFILES = $(OFILES) lspdata.o genericdata.o train.o build.o run.o\
- cascade.o partition.o metrics.o residuedata.o latticebuild.o\
- latticepare.o latticehint.o latticetune.o
-
-all:
- $(MAKE) target CFLAGS="$(OPT)"
-
-debug:
- $(MAKE) target CFLAGS...