Displaying 6 results from an estimated 6 matches for "lspvqtrain".
2000 Nov 10
1
cvs trunk vorbis/ compile patches
...ld.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="$(DEBUG)"
-
-profile:
- $(MAKE) target CFLAGS="$(PROFILE)"
-
-target: lspvqtrain genericvqtrain residuevqtrain vqbuild vqcascade vqmetrics latticebuild latticepare latticehint latticetune huffbuild residuesplit
-
-lspvqtrain: $(OFILES) lspdata.o train.o
- $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ $(LIBS)
-
-residuevqtrain: $(OFILES) residuedata.o train.o
- $(CC) $(CFLAGS) $(LDFLAGS)...
2000 Sep 21
0
.vqd example?
Hi, I'm trying to build an lsp codebook to learn about the
process, and I'm afraid that the vq hints
http://www.xiph.org/archives/vorbis-dev/0000.html
talk rather about residual training.
So I can now produce .vqi files and add to them with lspvqtrain,
but can anyone supply hints for the rest of the procedure?
vqbuild will only produce a "cloud"-type quantlist, and
sequencep is pretty much ignored.
But if you use it anyway, you can go by hand through the xxx.vqh
file and guesstimate enough to make a bogus .vql file.
Then I ran latti...
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
2000 Jan 07
0
VQ generation utilities ready + usage instructions
...P coefficient sets are like this
2) data sets where the values are not monotonically increasing; essentially
'everything else'. Raw residual data falls into theis category.
********************************
Training a codebook on the data:
The trainer for each specific purpose is custom; lspvqtrain is used for LSP
data, residuevqtrain for residue (not yet checked in; we're still playing with
it :-). genericvqtrain is a generic trainer that trains based on a mean squared
error.
each trainer takes the same command line syntax (run with no args to see it):
xxxxvqtrain basename [options] in...
2000 Nov 08
0
vq diffs
...$(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/bookutil.c vorbis-ejk/vq/bookutil.c
--- vorbis/vq/bookutil.c Sat Nov 4 01:43:5...