[xiph-cvs] cvs commit: vorbis/vq 44c5_s0.vqs 44c6_s0.vqs 44c7_s0.vqs 44c8_s0.vqs 44c9_s0.vqs 44c3_s2.vqs 44c4_s1.vqs
Monty
xiphmont at xiph.org
Thu Dec 13 23:21:32 PST 2001
xiphmont 01/12/13 23:21:30
Modified: lib bitrate.c vorbisenc.c
lib/books/floor line_1024x31_0sub0.vqh
line_1024x31_0sub1.vqh line_1024x31_1sub0.vqh
line_1024x31_1sub1.vqh line_1024x31_2sub1.vqh
line_1024x31_2sub2.vqh line_1024x31_2sub3.vqh
line_1024x31_3sub1.vqh line_1024x31_3sub2.vqh
line_1024x31_3sub3.vqh line_1024x31_class0.vqh
line_1024x31_class1.vqh line_1024x31_class2.vqh
line_1024x31_class3.vqh line_128x19_0sub0.vqh
line_128x19_1sub1.vqh line_128x19_1sub2.vqh
line_128x19_1sub3.vqh line_128x19_2sub1.vqh
line_128x19_2sub2.vqh line_128x19_2sub3.vqh
line_128x19_class1.vqh line_128x19_class2.vqh
line_128x7_0sub0.vqh line_128x7_1sub1.vqh
line_128x7_1sub2.vqh line_128x7_1sub3.vqh
line_128x7_2sub2.vqh line_128x7_2sub3.vqh
line_128x7_class1.vqh line_128x7_class2.vqh
line_128x9_0sub0.vqh line_128x9_1sub1.vqh
line_128x9_1sub2.vqh line_128x9_1sub3.vqh
line_128x9_2sub1.vqh line_128x9_2sub2.vqh
line_128x9_2sub3.vqh line_128x9_class1.vqh
line_128x9_class2.vqh
lib/modes psych_44.h residue_44.h
vq 44c3_s2.vqs 44c4_s1.vqs
Added: lib Makefile
lib/books/coupled _44c8_long.vqh _44c8_s0_p1_0.vqh
_44c8_s0_p1_1.vqh _44c8_s0_p2_0.vqh
_44c8_s0_p2_1.vqh _44c8_s0_p3_0.vqh
_44c8_s0_p4_0.vqh _44c8_s0_p5_0.vqh
_44c8_s0_p6_0.vqh _44c8_s0_p6_1.vqh
_44c8_s0_p7_0.vqh _44c8_s0_p7_1.vqh
_44c8_s0_p8_0.vqh _44c8_s0_p8_1.vqh
_44c8_s0_p9_0.vqh _44c8_s0_p9_1.vqh
_44c8_s0_p9_2.vqh _44c8_short.vqh _44c9_long.vqh
_44c9_s0_p1_0.vqh _44c9_s0_p1_1.vqh
_44c9_s0_p2_0.vqh _44c9_s0_p2_1.vqh
_44c9_s0_p3_0.vqh _44c9_s0_p4_0.vqh
_44c9_s0_p5_0.vqh _44c9_s0_p6_0.vqh
_44c9_s0_p6_1.vqh _44c9_s0_p7_0.vqh
_44c9_s0_p7_1.vqh _44c9_s0_p8_0.vqh
_44c9_s0_p8_1.vqh _44c9_s0_p9_0.vqh
_44c9_s0_p9_1.vqh _44c9_s0_p9_2.vqh _44c9_short.vqh
vq 44c5_s0.vqs 44c6_s0.vqs 44c7_s0.vqs 44c8_s0.vqs
44c9_s0.vqs
Log:
New stereo VBR modes are live
Revision Changes Path
1.3 +1 -5 vorbis/lib/bitrate.c
Index: bitrate.c
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/bitrate.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bitrate.c 2001/12/12 09:45:24 1.2
+++ bitrate.c 2001/12/14 07:21:16 1.3
@@ -11,7 +11,7 @@
********************************************************************
function: bitrate tracking and management
- last mod: $Id: bitrate.c,v 1.2 2001/12/12 09:45:24 xiphmont Exp $
+ last mod: $Id: bitrate.c,v 1.3 2001/12/14 07:21:16 xiphmont Exp $
********************************************************************/
@@ -95,10 +95,6 @@
bm->avg_sampledesired=bi->queue_avg_time*vi->rate;
bm->avg_centerdesired=bi->queue_avg_time*vi->rate*bi->queue_avg_center;
bm->minmax_sampledesired=bi->queue_minmax_time*vi->rate;
-
- if(bm->avg_sampledesired<0)bm->avg_sampledesired=0;
- if(bm->avg_centerdesired<0)bm->avg_centerdesired=0;
- if(bm->minmax_sampledesired<0)bm->minmax_sampledesired=0;
/* first find the max possible needed queue size */
maxlatency=max(bm->avg_sampledesired-bm->avg_centerdesired,
1.20 +34 -8 vorbis/lib/vorbisenc.c
Index: vorbisenc.c
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/vorbisenc.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- vorbisenc.c 2001/12/12 09:45:26 1.19
+++ vorbisenc.c 2001/12/14 07:21:16 1.20
@@ -11,7 +11,7 @@
********************************************************************
function: simple programmatic interface for encoder mode setup
- last mod: $Id: vorbisenc.c,v 1.19 2001/12/12 09:45:26 xiphmont Exp $
+ last mod: $Id: vorbisenc.c,v 1.20 2001/12/14 07:21:16 xiphmont Exp $
********************************************************************/
@@ -559,7 +559,7 @@
}
freq=(x[iq]*(1.-dq)+x[iq+1]*dq)*1000.;
-
+ if(freq>vi->rate/2)freq=vi->rate/2;
/* lowpass needs to be set in the floor and the residue. */
/* in the floor, the granularity can be very fine; it doesn't alter
@@ -572,10 +572,10 @@
here to next boundary, or the vorbis spec will round it *down* to
previous boundary in encode/decode */
if(ci->residue_type[block]==2)
- r->end=rint((freq/nyq*blocksize*2)/r->grouping+.9)* /* round up only if we're well past */
+ r->end=((freq/nyq*blocksize*2)/r->grouping+.9)* /* round up only if we're well past */
r->grouping;
else
- r->end=rint((freq/nyq*blocksize)/r->grouping+.9)* /* round up only if we're well past */
+ r->end=((freq/nyq*blocksize)/r->grouping+.9)* /* round up only if we're well past */
r->grouping;
return(0);
}
@@ -591,7 +591,9 @@
){
int ret=0;
- base_quality=.4;
+ base_quality+=.001;
+ if(base_quality<0.)base_quality=0.;
+ if(base_quality>.999)base_quality=.999;
if(rate>40000){
ret|=vorbis_encode_toplevel_init(vi,256,2048,channels,rate);
@@ -661,7 +663,7 @@
0, /* no residue backfill */
_residue_template_44_stereo,
4, 3, 2, 2, 1, 0, 0, 0, 0, 0, 0,
- 4., 6., 6., 6., 10., 6., 6., 6., 6., 6., 6.);
+ 4., 6., 6., 6., 10., 6., 6., 4., 4., 4., 4.);
ret|=vorbis_encode_residue_init(vi,base_quality,1,
1, /* coupled */
@@ -669,7 +671,7 @@
0, /* no residue backfill */
_residue_template_44_stereo,
4, 3, 2, 2, 1, 0, 0, 0, 0, 0, 0,
- 6., 6., 6., 10., 10., 6., 6., 6., 6., 6., 6.);
+ 6., 6., 6., 10., 10., 6., 6., 4., 4., 4., 4.);
ret|=vorbis_encode_lowpass_init(vi,base_quality,0,
15.1,15.8,16.5,17.9,20.5,
@@ -705,7 +707,31 @@
long min_bitrate){
/* it's temporary while I do the merge; relax */
- return(vorbis_encode_init_vbr(vi,channels,rate, .4));
+ if(rate>40000){
+ if(nominal_bitrate>360){
+ return(vorbis_encode_init_vbr(vi,channels,rate, 1.));
+ }else if(nominal_bitrate>270){
+ return(vorbis_encode_init_vbr(vi,channels,rate, .9));
+ }else if(nominal_bitrate>230){
+ return(vorbis_encode_init_vbr(vi,channels,rate, .8));
+ }else if(nominal_bitrate>200){
+ return(vorbis_encode_init_vbr(vi,channels,rate, .7));
+ }else if(nominal_bitrate>180){
+ return(vorbis_encode_init_vbr(vi,channels,rate, .6));
+ }else if(nominal_bitrate>140){
+ return(vorbis_encode_init_vbr(vi,channels,rate, .5));
+ }else if(nominal_bitrate>120){
+ return(vorbis_encode_init_vbr(vi,channels,rate, .4));
+ }else if(nominal_bitrate>100){
+ return(vorbis_encode_init_vbr(vi,channels,rate, .3));
+ }else if(nominal_bitrate>90){
+ return(vorbis_encode_init_vbr(vi,channels,rate, .2));
+ }else if(nominal_bitrate>75){
+ return(vorbis_encode_init_vbr(vi,channels,rate, .1));
+ }else{
+ return(vorbis_encode_init_vbr(vi,channels,rate, .0));
+ }
+ }
return(OV_EIMPL);
}
1.1 vorbis/lib/Makefile
Index: Makefile
===================================================================
# Generated automatically from Makefile.in by configure.
# Makefile.in generated automatically by automake 1.4-p4 from Makefile.am
# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
SHELL = /bin/sh
rcdir = .
top_srcdir = ..
prefix = /usr/local
exec_prefix = ${prefix}
bindir = ${exec_prefix}/bin
sbindir = ${exec_prefix}/sbin
libexecdir = ${exec_prefix}/libexec
datadir = ${prefix}/share
sysconfdir = ${prefix}/etc
sharedstatedir = ${prefix}/com
localstatedir = ${prefix}/var
libdir = ${exec_prefix}/lib
infodir = ${prefix}/info
mandir = ${prefix}/man
includedir = ${prefix}/include
oldincludedir = /usr/include
DESTDIR =
pkgdatadir = $(datadir)/libvorbis
pkglibdir = $(libdir)/libvorbis
pkgincludedir = $(includedir)/libvorbis
top_builddir = ..
ACLOCAL = aclocal
AUTOCONF = autoconf
AUTOMAKE = automake
AUTOHEADER = autoheader
INSTALL = /usr/bin/install -c
INSTALL_PROGRAM = ${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL_PROGRAM}
transform = s,x,x,
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
host_alias = powerpc-unknown-linux-gnu
host_triplet = powerpc-unknown-linux-gnu
AS = @AS@
CC = gcc
CPP = gcc -E
DEBUG = -g -Wall -D_REENTRANT -D__NO_MATH_INLINES -fsigned-char
DLLTOOL = @DLLTOOL@
ECHO = echo
EXEEXT =
LIBS = -lm -logg
LIBTOOL = $(SHELL) $(top_builddir)/libtool
LN_S = ln -s
MAKEINFO = makeinfo
OBJDUMP = @OBJDUMP@
OBJEXT = o
OGG_CFLAGS = -INONE/include
OGG_LIBS = -logg
PACKAGE = libvorbis
PROFILE = -pg -g -O20 -ffast-math -D_REENTRANT -fsigned-char
RANLIB = ranlib
STRIP = strip
VERSION = 1.0rc2
VE_LIB_AGE = 0
VE_LIB_CURRENT = 0
VE_LIB_REVISION = 1
VF_LIB_AGE = 1
VF_LIB_CURRENT = 1
VF_LIB_REVISION = 0
V_LIB_AGE = 0
V_LIB_CURRENT = 0
V_LIB_REVISION = 1
pthread_lib = -lpthread
AUTOMAKE_OPTIONS = foreign
SUBDIRS = modes books
INCLUDES = -I$(top_srcdir)/include -INONE/include
lib_LTLIBRARIES = libvorbis.la libvorbisfile.la libvorbisenc.la
libvorbis_la_SOURCES = mdct.c smallft.c block.c envelope.c window.c lsp.c lpc.c analysis.c synthesis.c psy.c info.c time0.c floor1.c floor0.c res0.c mapping0.c registry.c codebook.c sharedbook.c lookup.c bitrate.c envelope.h lpc.h lsp.h codebook.h misc.h psy.h masking.h iir.h os.h mdct.h smallft.h registry.h scales.h window.h lookup.h lookup_data.h codec_internal.h backends.h bitrate.h
libvorbis_la_LDFLAGS = -version-info 0:1:0
libvorbisfile_la_SOURCES = vorbisfile.c
libvorbisfile_la_LDFLAGS = -version-info 1:0:1
libvorbisenc_la_SOURCES = vorbisenc.c registry-api.h
libvorbisenc_la_LDFLAGS = -version-info 0:1:0
EXTRA_PROGRAMS = barkmel tone psytune
CLEANFILES = $(EXTRA_PROGRAMS)
barkmel_SOURCES = barkmel.c
tone_SOURCES = tone.c
psytune_SOURCES = psytune.c
psytune_LDFLAGS = -static
psytune_LDADD = libvorbis.la
EXTRA_DIST = lookups.pl iir.c
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_CLEAN_FILES =
LTLIBRARIES = $(lib_LTLIBRARIES)
DEFS = -DPACKAGE=\"libvorbis\" -DVERSION=\"1.0rc2\" -DHAVE_DLFCN_H=1 -DHAVE_ALLOCA_H=1 -DHAVE_ALLOCA=1 -DHAVE_SQRTF=1 -DHAVE_LOGF=1 -DHAVE_EXPF=1 -DHAVE_ACOSF=1 -DHAVE_ATANF=1 -DHAVE_FREXPF=1 -DHAVE_RINTF=1 -I. -I$(srcdir)
CPPFLAGS =
LDFLAGS =
libvorbis_la_LIBADD =
libvorbis_la_OBJECTS = mdct.lo smallft.lo block.lo envelope.lo \
window.lo lsp.lo lpc.lo analysis.lo synthesis.lo psy.lo info.lo \
time0.lo floor1.lo floor0.lo res0.lo mapping0.lo registry.lo \
codebook.lo sharedbook.lo lookup.lo bitrate.lo
libvorbisfile_la_LIBADD =
libvorbisfile_la_OBJECTS = vorbisfile.lo
libvorbisenc_la_LIBADD =
libvorbisenc_la_OBJECTS = vorbisenc.lo
barkmel_OBJECTS = barkmel.$(OBJEXT)
barkmel_LDADD = $(LDADD)
barkmel_DEPENDENCIES =
barkmel_LDFLAGS =
tone_OBJECTS = tone.$(OBJEXT)
tone_LDADD = $(LDADD)
tone_DEPENDENCIES =
tone_LDFLAGS =
psytune_OBJECTS = psytune.$(OBJEXT)
psytune_DEPENDENCIES = libvorbis.la
CFLAGS = -O20 -ffast-math -D_REENTRANT -fsigned-char -DUSE_MEMORY_H
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
DIST_COMMON = Makefile.am Makefile.in
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
TAR = tar
GZIP_ENV = --best
DEP_FILES = .deps/analysis.P .deps/barkmel.P .deps/bitrate.P \
.deps/block.P .deps/codebook.P .deps/envelope.P .deps/floor0.P \
.deps/floor1.P .deps/info.P .deps/lookup.P .deps/lpc.P .deps/lsp.P \
.deps/mapping0.P .deps/mdct.P .deps/psy.P .deps/psytune.P \
.deps/registry.P .deps/res0.P .deps/sharedbook.P .deps/smallft.P \
.deps/synthesis.P .deps/time0.P .deps/tone.P .deps/vorbisenc.P \
.deps/vorbisfile.P .deps/window.P
SOURCES = $(libvorbis_la_SOURCES) $(libvorbisfile_la_SOURCES) $(libvorbisenc_la_SOURCES) $(barkmel_SOURCES) $(tone_SOURCES) $(psytune_SOURCES)
OBJECTS = $(libvorbis_la_OBJECTS) $(libvorbisfile_la_OBJECTS) $(libvorbisenc_la_OBJECTS) $(barkmel_OBJECTS) $(tone_OBJECTS) $(psytune_OBJECTS)
all: all-redirect
.SUFFIXES:
.SUFFIXES: .S .c .lo .o .obj .s
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
mostlyclean-libLTLIBRARIES:
clean-libLTLIBRARIES:
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
distclean-libLTLIBRARIES:
maintainer-clean-libLTLIBRARIES:
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(libdir)
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
if test -f $$p; then \
echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(libdir)/$$p"; \
$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(libdir)/$$p; \
else :; fi; \
done
uninstall-libLTLIBRARIES:
@$(NORMAL_UNINSTALL)
list='$(lib_LTLIBRARIES)'; for p in $$list; do \
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
done
# FIXME: We should only use cygpath when building on Windows,
# and only if it is available.
.c.obj:
$(COMPILE) -c `cygpath -w $<`
.s.o:
$(COMPILE) -c $<
.S.o:
$(COMPILE) -c $<
mostlyclean-compile:
-rm -f *.o core *.core
-rm -f *.$(OBJEXT)
clean-compile:
distclean-compile:
-rm -f *.tab.c
maintainer-clean-compile:
.s.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
.S.lo:
$(LIBTOOL) --mode=compile $(COMPILE) -c $<
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
distclean-libtool:
maintainer-clean-libtool:
libvorbis.la: $(libvorbis_la_OBJECTS) $(libvorbis_la_DEPENDENCIES)
$(LINK) -rpath $(libdir) $(libvorbis_la_LDFLAGS) $(libvorbis_la_OBJECTS) $(libvorbis_la_LIBADD) $(LIBS)
libvorbisfile.la: $(libvorbisfile_la_OBJECTS) $(libvorbisfile_la_DEPENDENCIES)
$(LINK) -rpath $(libdir) $(libvorbisfile_la_LDFLAGS) $(libvorbisfile_la_OBJECTS) $(libvorbisfile_la_LIBADD) $(LIBS)
libvorbisenc.la: $(libvorbisenc_la_OBJECTS) $(libvorbisenc_la_DEPENDENCIES)
$(LINK) -rpath $(libdir) $(libvorbisenc_la_LDFLAGS) $(libvorbisenc_la_OBJECTS) $(libvorbisenc_la_LIBADD) $(LIBS)
barkmel$(EXEEXT): $(barkmel_OBJECTS) $(barkmel_DEPENDENCIES)
@rm -f barkmel$(EXEEXT)
$(LINK) $(barkmel_LDFLAGS) $(barkmel_OBJECTS) $(barkmel_LDADD) $(LIBS)
tone$(EXEEXT): $(tone_OBJECTS) $(tone_DEPENDENCIES)
@rm -f tone$(EXEEXT)
$(LINK) $(tone_LDFLAGS) $(tone_OBJECTS) $(tone_LDADD) $(LIBS)
psytune$(EXEEXT): $(psytune_OBJECTS) $(psytune_DEPENDENCIES)
@rm -f psytune$(EXEEXT)
$(LINK) $(psytune_LDFLAGS) $(psytune_OBJECTS) $(psytune_LDADD) $(LIBS)
# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
all-recursive install-data-recursive install-exec-recursive \
installdirs-recursive install-recursive uninstall-recursive \
check-recursive installcheck-recursive info-recursive dvi-recursive:
@set fnord $(MAKEFLAGS); amf=$$2; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
mostlyclean-recursive clean-recursive distclean-recursive \
maintainer-clean-recursive:
@set fnord $(MAKEFLAGS); amf=$$2; \
dot_seen=no; \
rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
rev="$$subdir $$rev"; \
test "$$subdir" = "." && dot_seen=yes; \
done; \
test "$$dot_seen" = "no" && rev=". $$rev"; \
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done && test -z "$$fail"
tags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
done
tags: TAGS
ID: $(HEADERS) $(SOURCES) $(LISP)
list='$(SOURCES) $(HEADERS)'; \
unique=`for i in $$list; do echo $$i; done | \
awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
here=`pwd` && cd $(srcdir) \
&& mkid -f$$here/ID $$unique $(LISP)
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
fi; \
done; \
list='$(SOURCES) $(HEADERS)'; \
unique=`for i in $$list; do echo $$i; done | \
awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
|| (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
mostlyclean-tags:
clean-tags:
distclean-tags:
-rm -f TAGS ID
maintainer-clean-tags:
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
ubdir = lib
distdir: $(DISTFILES)
here=`cd $(top_builddir) && pwd`; \
top_distdir=`cd $(top_distdir) && pwd`; \
distdir=`cd $(distdir) && pwd`; \
cd $(top_srcdir) \
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --foreign lib/Makefile
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|| cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
for subdir in $(SUBDIRS); do \
if test "$$subdir" = .; then :; else \
test -d $(distdir)/$$subdir \
|| mkdir $(distdir)/$$subdir \
|| exit 1; \
chmod 777 $(distdir)/$$subdir; \
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
|| exit 1; \
fi; \
done
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
-include $(DEP_FILES)
mostlyclean-depend:
clean-depend:
distclean-depend:
-rm -rf .deps
maintainer-clean-depend:
%.o: %.c
@echo '$(COMPILE) -c $<'; \
$(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
@-cp .deps/$(*F).pp .deps/$(*F).P; \
tr ' ' '\012' < .deps/$(*F).pp \
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
>> .deps/$(*F).P; \
rm .deps/$(*F).pp
%.lo: %.c
@echo '$(LTCOMPILE) -c $<'; \
$(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
@-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
< .deps/$(*F).pp > .deps/$(*F).P; \
tr ' ' '\012' < .deps/$(*F).pp \
| sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
>> .deps/$(*F).P; \
rm -f .deps/$(*F).pp
info-am:
info: info-recursive
dvi-am:
dvi: dvi-recursive
check-am: all-am
check: check-recursive
installcheck-am:
installcheck: installcheck-recursive
install-exec-am: install-libLTLIBRARIES
install-exec: install-exec-recursive
install-data-am:
install-data: install-data-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-recursive
uninstall-am: uninstall-libLTLIBRARIES
uninstall: uninstall-recursive
all-am: Makefile $(LTLIBRARIES)
all-redirect: all-recursive
install-strip:
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs: installdirs-recursive
installdirs-am:
$(mkinstalldirs) $(DESTDIR)$(libdir)
mostlyclean-generic:
clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
maintainer-clean-generic:
mostlyclean-am: mostlyclean-libLTLIBRARIES mostlyclean-compile \
mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
mostlyclean-generic
mostlyclean: mostlyclean-recursive
clean-am: clean-libLTLIBRARIES clean-compile clean-libtool clean-tags \
clean-depend clean-generic mostlyclean-am
clean: clean-recursive
distclean-am: distclean-libLTLIBRARIES distclean-compile \
distclean-libtool distclean-tags distclean-depend \
distclean-generic clean-am
-rm -f libtool
distclean: distclean-recursive
maintainer-clean-am: maintainer-clean-libLTLIBRARIES \
maintainer-clean-compile maintainer-clean-libtool \
maintainer-clean-tags maintainer-clean-depend \
maintainer-clean-generic distclean-am
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-recursive
.PHONY: mostlyclean-libLTLIBRARIES distclean-libLTLIBRARIES \
clean-libLTLIBRARIES maintainer-clean-libLTLIBRARIES \
uninstall-libLTLIBRARIES install-libLTLIBRARIES mostlyclean-compile \
distclean-compile clean-compile maintainer-clean-compile \
mostlyclean-libtool distclean-libtool clean-libtool \
maintainer-clean-libtool install-data-recursive \
uninstall-data-recursive install-exec-recursive \
uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
all-recursive check-recursive installcheck-recursive info-recursive \
dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
distclean-tags clean-tags maintainer-clean-tags distdir \
mostlyclean-depend distclean-depend clean-depend \
maintainer-clean-depend info-am info dvi-am dvi check check-am \
installcheck-am installcheck install-exec-am install-exec \
install-data-am install-data install-am install uninstall-am uninstall \
all-redirect all-am all installdirs-am installdirs mostlyclean-generic \
distclean-generic clean-generic maintainer-clean-generic clean \
mostlyclean distclean maintainer-clean
debug:
$(MAKE) all CFLAGS="-g -Wall -D_REENTRANT -D__NO_MATH_INLINES -fsigned-char"
profile:
$(MAKE) all CFLAGS="-pg -g -O20 -ffast-math -D_REENTRANT -fsigned-char"
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
1.1 vorbis/lib/books/coupled/_44c8_long.vqh
Index: _44c8_long.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
* THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. *
* PLEASE READ THESE TERMS DISTRIBUTING. *
* *
* THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-1999 *
* by 1999 Monty <monty at xiph.org> and The XIPHOPHORUS Company *
* http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by huff/huffbuld
********************************************************************/
#ifndef _V__44c8_long_VQH_
#define _V__44c8_long_VQH_
#include "codebook.h"
tatic long _huff_lengthlist__44c8_long[] = {
2,11,13, 8,12,13,13,13,13,14,11, 6, 8,21,21,21,
21,21,11,10,12, 7, 4,21,21,21,20,20, 7, 7, 6,20,
20, 5, 7, 9,11,11,12,16,11,20,20, 6, 6, 7, 9,10,
11,15,12,20,20, 8, 6, 4, 5, 8,10,14,13,20,20,10,
8, 5, 4, 5, 8,12,14,20,20,11,10, 8, 5, 4, 6,11,
12,11, 6,11,11, 9, 8, 5, 4, 7,11, 9, 6,13,13,12,
11,10, 7, 6,
};
tatic static_codebook _huff_book__44c8_long = {
2, 100,
_huff_lengthlist__44c8_long,
0, 0, 0, 0, 0,
NULL,
NULL,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p1_0.vqh
Index: _44c8_s0_p1_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p1_0_VQH_
#define _V__44c8_s0_p1_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p1_0[] = {
19,
16,
22,
13,
25,
0,
38,
7,
31,
4,
34,
};
tatic long _vq_lengthlist__44c8_s0_p1_0[] = {
1, 4, 4, 6, 6, 0, 0, 0, 0, 0, 0, 5, 4, 4, 7, 7,
0, 0, 0, 0, 0, 0, 0, 5, 5, 6, 6, 0, 0, 0, 0, 0,
0, 0, 7, 7, 7, 6, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7,
7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 0, 0, 0,
0, 0, 0, 0, 0, 0,12,11, 0, 0, 0, 0, 0, 0, 0, 0,
0,13,13, 0, 0, 0, 0, 0, 0,
};
tatic float _vq_quantthresh__44c8_s0_p1_0[] = {
-17, -13.5, -9, -4.5, -1.5, 1.5, 4.5, 9,
13.5, 17,
};
tatic long _vq_quantmap__44c8_s0_p1_0[] = {
5, 9, 7, 3, 1, 0, 2, 4,
8, 10, 6,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p1_0 = {
_vq_quantthresh__44c8_s0_p1_0,
_vq_quantmap__44c8_s0_p1_0,
11,
11
};
tatic static_codebook _44c8_s0_p1_0 = {
2, 121,
_vq_lengthlist__44c8_s0_p1_0,
1, -527237120, 1611661312, 6, 0,
_vq_quantlist__44c8_s0_p1_0,
NULL,
&_vq_auxt__44c8_s0_p1_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p1_1.vqh
Index: _44c8_s0_p1_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p1_1_VQH_
#define _V__44c8_s0_p1_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p1_1[] = {
1,
0,
2,
};
tatic long _vq_lengthlist__44c8_s0_p1_1[] = {
2, 3, 3, 4, 4, 4, 4, 3, 3,
};
tatic float _vq_quantthresh__44c8_s0_p1_1[] = {
-0.5, 0.5,
};
tatic long _vq_quantmap__44c8_s0_p1_1[] = {
1, 0, 2,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p1_1 = {
_vq_quantthresh__44c8_s0_p1_1,
_vq_quantmap__44c8_s0_p1_1,
3,
3
};
tatic static_codebook _44c8_s0_p1_1 = {
2, 9,
_vq_lengthlist__44c8_s0_p1_1,
1, -535822336, 1611661312, 2, 0,
_vq_quantlist__44c8_s0_p1_1,
NULL,
&_vq_auxt__44c8_s0_p1_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p2_0.vqh
Index: _44c8_s0_p2_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p2_0_VQH_
#define _V__44c8_s0_p2_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p2_0[] = {
6,
5,
7,
4,
8,
3,
9,
2,
10,
1,
11,
0,
12,
};
tatic long _vq_lengthlist__44c8_s0_p2_0[] = {
1, 4, 3, 6, 6, 9, 9, 0, 0, 0, 0, 0, 0, 6, 5, 5,
7, 7, 9, 9, 0, 0, 0, 0, 0, 0, 6, 5, 5, 7, 7, 9,
9, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7,10,10, 0, 0,
0, 0, 0, 0, 0, 7, 7, 8, 7,10, 9, 0, 0, 0, 0, 0,
0, 0,11,11, 9, 9,10,10, 0, 0, 0, 0, 0, 0, 0,12,
12, 9, 9,10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0,11,11,
11,11, 0, 0, 0, 0, 0, 0, 0, 0, 0,11,11,11,11, 0,
0, 0, 0, 0, 0, 0, 0, 0,14,14,12,12, 0, 0, 0, 0,
0, 0, 0, 0, 0,15,15,12,12, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0,13,14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,14,14, 0, 0, 0, 0, 0, 0,
};
tatic float _vq_quantthresh__44c8_s0_p2_0[] = {
-71.5, -58.5, -45.5, -32.5, -19.5, -6.5, 6.5, 19.5,
32.5, 45.5, 58.5, 71.5,
};
tatic long _vq_quantmap__44c8_s0_p2_0[] = {
11, 9, 7, 5, 3, 1, 0, 2,
4, 6, 8, 10, 12,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p2_0 = {
_vq_quantthresh__44c8_s0_p2_0,
_vq_quantmap__44c8_s0_p2_0,
13,
13
};
tatic static_codebook _44c8_s0_p2_0 = {
2, 169,
_vq_lengthlist__44c8_s0_p2_0,
1, -523010048, 1618608128, 4, 0,
_vq_quantlist__44c8_s0_p2_0,
NULL,
&_vq_auxt__44c8_s0_p2_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p2_1.vqh
Index: _44c8_s0_p2_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p2_1_VQH_
#define _V__44c8_s0_p2_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p2_1[] = {
6,
5,
7,
4,
8,
3,
9,
2,
10,
1,
11,
0,
12,
};
tatic long _vq_lengthlist__44c8_s0_p2_1[] = {
4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 8, 6, 6,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 6, 6, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 9, 7, 7, 7, 7, 7, 7, 7, 7,
8, 8, 8, 8, 9, 9, 9, 7, 7, 7, 7, 7, 7, 8, 8, 8,
8, 9, 9, 9, 7, 7, 7, 7, 8, 7, 8, 8, 8, 8, 9, 9,
9, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 9, 9, 9, 8, 8,
8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8,
8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8,
8, 8, 9, 9, 9, 9, 9, 8, 8, 7, 8, 8, 8, 8, 8, 9,
9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9,
9, 9, 9, 8, 8, 8, 8, 8, 8,
};
tatic float _vq_quantthresh__44c8_s0_p2_1[] = {
-5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5, 1.5,
2.5, 3.5, 4.5, 5.5,
};
tatic long _vq_quantmap__44c8_s0_p2_1[] = {
11, 9, 7, 5, 3, 1, 0, 2,
4, 6, 8, 10, 12,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p2_1 = {
_vq_quantthresh__44c8_s0_p2_1,
_vq_quantmap__44c8_s0_p2_1,
13,
13
};
tatic static_codebook _44c8_s0_p2_1 = {
2, 169,
_vq_lengthlist__44c8_s0_p2_1,
1, -531103744, 1611661312, 4, 0,
_vq_quantlist__44c8_s0_p2_1,
NULL,
&_vq_auxt__44c8_s0_p2_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p3_0.vqh
Index: _44c8_s0_p3_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p3_0_VQH_
#define _V__44c8_s0_p3_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p3_0[] = {
2,
1,
3,
0,
4,
};
tatic long _vq_lengthlist__44c8_s0_p3_0[] = {
1, 6, 6, 0, 0, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 0,
8, 8, 0, 0, 0, 0, 0, 0, 0, 6, 8, 8, 0, 0, 0, 9,
8, 0, 0, 0, 9, 9, 0, 0, 0,11,11, 0, 0, 0, 0, 0,
0, 0, 6, 8, 8, 0, 0, 0, 8, 9, 0, 0, 0, 8, 9, 0,
0, 0,11,11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5, 9, 9, 0, 0, 0, 7, 7, 0, 0,
0, 8, 8, 0, 0, 0,10,10, 0, 0, 0, 0, 0, 0, 0, 5,
9, 9, 0, 0, 0, 7, 7, 0, 0, 0, 8, 8, 0, 0, 0,10,
10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 5, 9, 8, 0, 0, 0, 8, 8, 0, 0, 0, 7, 7,
0, 0, 0,10,10, 0, 0, 0, 0, 0, 0, 0, 5, 8, 9, 0,
0, 0, 8, 8, 0, 0, 0, 7, 7, 0, 0, 0,10,10, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8,11,11, 0, 0, 0,10,10, 0, 0, 0,10,10, 0, 0, 0,
11,11, 0, 0, 0, 0, 0, 0, 0, 8,11,11, 0, 0, 0,10,
10, 0, 0, 0,10,10, 0, 0, 0,11,11, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,
};
tatic float _vq_quantthresh__44c8_s0_p3_0[] = {
-1.5, -0.5, 0.5, 1.5,
};
tatic long _vq_quantmap__44c8_s0_p3_0[] = {
3, 1, 0, 2, 4,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p3_0 = {
_vq_quantthresh__44c8_s0_p3_0,
_vq_quantmap__44c8_s0_p3_0,
5,
5
};
tatic static_codebook _44c8_s0_p3_0 = {
4, 625,
_vq_lengthlist__44c8_s0_p3_0,
1, -533725184, 1611661312, 3, 0,
_vq_quantlist__44c8_s0_p3_0,
NULL,
&_vq_auxt__44c8_s0_p3_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p4_0.vqh
Index: _44c8_s0_p4_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p4_0_VQH_
#define _V__44c8_s0_p4_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p4_0[] = {
4,
3,
5,
2,
6,
1,
7,
0,
8,
};
tatic long _vq_lengthlist__44c8_s0_p4_0[] = {
2, 4, 4, 6, 6, 0, 0, 0, 0, 0, 4, 4, 6, 6, 0, 0,
0, 0, 0, 3, 3, 6, 6, 0, 0, 0, 0, 0, 5, 5, 6, 6,
0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0,
8, 7, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0,
0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,
};
tatic float _vq_quantthresh__44c8_s0_p4_0[] = {
-3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5,
};
tatic long _vq_quantmap__44c8_s0_p4_0[] = {
7, 5, 3, 1, 0, 2, 4, 6,
8,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p4_0 = {
_vq_quantthresh__44c8_s0_p4_0,
_vq_quantmap__44c8_s0_p4_0,
9,
9
};
tatic static_codebook _44c8_s0_p4_0 = {
2, 81,
_vq_lengthlist__44c8_s0_p4_0,
1, -531628032, 1611661312, 4, 0,
_vq_quantlist__44c8_s0_p4_0,
NULL,
&_vq_auxt__44c8_s0_p4_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p5_0.vqh
Index: _44c8_s0_p5_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p5_0_VQH_
#define _V__44c8_s0_p5_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p5_0[] = {
8,
7,
9,
6,
10,
5,
11,
4,
12,
3,
13,
2,
14,
1,
15,
0,
16,
};
tatic long _vq_lengthlist__44c8_s0_p5_0[] = {
3, 4, 4, 5, 5, 7, 7, 8, 8, 0, 0, 0, 0, 0, 0, 0,
0, 0, 4, 4, 6, 6, 7, 7, 9, 9, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4, 4, 6, 6, 7, 7, 9, 9, 0, 0, 0, 0, 0,
0, 0, 0, 0, 5, 5, 6, 6, 7, 7, 9, 9, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 6, 6, 7, 7, 9, 9, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 7, 7, 9, 9, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 7, 7, 9, 9, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 8, 8, 9, 9,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 9,
9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9,
10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9,
9,10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
10,10,10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0,11,10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0,11,11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0,11,11, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0,12,12, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,
};
tatic float _vq_quantthresh__44c8_s0_p5_0[] = {
-7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5,
0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5,
};
tatic long _vq_quantmap__44c8_s0_p5_0[] = {
15, 13, 11, 9, 7, 5, 3, 1,
0, 2, 4, 6, 8, 10, 12, 14,
16,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p5_0 = {
_vq_quantthresh__44c8_s0_p5_0,
_vq_quantmap__44c8_s0_p5_0,
17,
17
};
tatic static_codebook _44c8_s0_p5_0 = {
2, 289,
_vq_lengthlist__44c8_s0_p5_0,
1, -529530880, 1611661312, 5, 0,
_vq_quantlist__44c8_s0_p5_0,
NULL,
&_vq_auxt__44c8_s0_p5_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p6_0.vqh
Index: _44c8_s0_p6_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p6_0_VQH_
#define _V__44c8_s0_p6_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p6_0[] = {
19,
16,
22,
13,
25,
0,
38,
7,
31,
4,
34,
};
tatic long _vq_lengthlist__44c8_s0_p6_0[] = {
2, 3, 3, 6, 6, 0, 0, 0, 0, 0, 0, 5, 4, 4, 6, 6,
0, 0, 0, 0, 0, 0, 0, 4, 4, 6, 6, 0, 0, 0, 0, 0,
0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 7, 7, 6,
6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0,
0, 0, 0, 0, 0, 0,10,11, 0, 0, 0, 0, 0, 0, 0, 0,
0,12,12, 0, 0, 0, 0, 0, 0,
};
tatic float _vq_quantthresh__44c8_s0_p6_0[] = {
-17, -13.5, -9, -4.5, -1.5, 1.5, 4.5, 9,
13.5, 17,
};
tatic long _vq_quantmap__44c8_s0_p6_0[] = {
5, 9, 7, 3, 1, 0, 2, 4,
8, 10, 6,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p6_0 = {
_vq_quantthresh__44c8_s0_p6_0,
_vq_quantmap__44c8_s0_p6_0,
11,
11
};
tatic static_codebook _44c8_s0_p6_0 = {
2, 121,
_vq_lengthlist__44c8_s0_p6_0,
1, -527237120, 1611661312, 6, 0,
_vq_quantlist__44c8_s0_p6_0,
NULL,
&_vq_auxt__44c8_s0_p6_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p6_1.vqh
Index: _44c8_s0_p6_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p6_1_VQH_
#define _V__44c8_s0_p6_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p6_1[] = {
1,
0,
2,
};
tatic long _vq_lengthlist__44c8_s0_p6_1[] = {
3, 3, 3, 4, 3, 3, 4, 3, 3,
};
tatic float _vq_quantthresh__44c8_s0_p6_1[] = {
-0.5, 0.5,
};
tatic long _vq_quantmap__44c8_s0_p6_1[] = {
1, 0, 2,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p6_1 = {
_vq_quantthresh__44c8_s0_p6_1,
_vq_quantmap__44c8_s0_p6_1,
3,
3
};
tatic static_codebook _44c8_s0_p6_1 = {
2, 9,
_vq_lengthlist__44c8_s0_p6_1,
1, -535822336, 1611661312, 2, 0,
_vq_quantlist__44c8_s0_p6_1,
NULL,
&_vq_auxt__44c8_s0_p6_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p7_0.vqh
Index: _44c8_s0_p7_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p7_0_VQH_
#define _V__44c8_s0_p7_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p7_0[] = {
6,
5,
7,
4,
8,
3,
9,
2,
10,
1,
11,
0,
12,
};
tatic long _vq_lengthlist__44c8_s0_p7_0[] = {
2, 3, 3, 6, 6, 8, 8, 0, 0, 0, 0, 0, 0, 6, 4, 4,
6, 6, 9, 9, 0, 0, 0, 0, 0, 0, 6, 4, 4, 6, 6, 9,
9, 0, 0, 0, 0, 0, 0, 0, 7, 6, 7, 7, 9, 9, 0, 0,
0, 0, 0, 0, 0, 7, 7, 7, 7, 9, 9, 0, 0, 0, 0, 0,
0, 0,11,11, 8, 8,10,10, 0, 0, 0, 0, 0, 0, 0,11,
12, 8, 8,10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0,10,10,
10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0,10,10,10,10, 0,
0, 0, 0, 0, 0, 0, 0, 0,14,14,11,11, 0, 0, 0, 0,
0, 0, 0, 0, 0,15,15,12,11, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0,13,14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,14,14, 0, 0, 0, 0, 0, 0,
};
tatic float _vq_quantthresh__44c8_s0_p7_0[] = {
-27.5, -22.5, -17.5, -12.5, -7.5, -2.5, 2.5, 7.5,
12.5, 17.5, 22.5, 27.5,
};
tatic long _vq_quantmap__44c8_s0_p7_0[] = {
11, 9, 7, 5, 3, 1, 0, 2,
4, 6, 8, 10, 12,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p7_0 = {
_vq_quantthresh__44c8_s0_p7_0,
_vq_quantmap__44c8_s0_p7_0,
13,
13
};
tatic static_codebook _44c8_s0_p7_0 = {
2, 169,
_vq_lengthlist__44c8_s0_p7_0,
1, -526516224, 1616117760, 4, 0,
_vq_quantlist__44c8_s0_p7_0,
NULL,
&_vq_auxt__44c8_s0_p7_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p7_1.vqh
Index: _44c8_s0_p7_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p7_1_VQH_
#define _V__44c8_s0_p7_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p7_1[] = {
2,
1,
3,
0,
4,
};
tatic long _vq_lengthlist__44c8_s0_p7_1[] = {
4, 4, 4, 4, 4, 5, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5,
};
tatic float _vq_quantthresh__44c8_s0_p7_1[] = {
-1.5, -0.5, 0.5, 1.5,
};
tatic long _vq_quantmap__44c8_s0_p7_1[] = {
3, 1, 0, 2, 4,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p7_1 = {
_vq_quantthresh__44c8_s0_p7_1,
_vq_quantmap__44c8_s0_p7_1,
5,
5
};
tatic static_codebook _44c8_s0_p7_1 = {
2, 25,
_vq_lengthlist__44c8_s0_p7_1,
1, -533725184, 1611661312, 3, 0,
_vq_quantlist__44c8_s0_p7_1,
NULL,
&_vq_auxt__44c8_s0_p7_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p8_0.vqh
Index: _44c8_s0_p8_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p8_0_VQH_
#define _V__44c8_s0_p8_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p8_0[] = {
7,
6,
8,
5,
9,
4,
10,
3,
11,
2,
12,
1,
13,
0,
14,
};
tatic long _vq_lengthlist__44c8_s0_p8_0[] = {
1, 3, 3, 7, 7, 9, 9,12,12, 0, 0, 0, 0, 0, 0, 6,
5, 5, 8, 8, 9, 9,12,12, 0, 0, 0, 0, 0, 0, 6, 5,
5, 8, 8,10, 9,12,12, 0, 0, 0, 0, 0, 0, 0, 8, 8,
8, 8,10,10,13,13, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8,
8,10,10,13,13, 0, 0, 0, 0, 0, 0, 0,12,12,10,10,
10,10,13,13, 0, 0, 0, 0, 0, 0, 0,12,12,10,10,10,
10,13,13, 0, 0, 0, 0, 0, 0, 0, 0, 0,12,12,11,11,
14,13, 0, 0, 0, 0, 0, 0, 0, 0, 0,12,12,11,11,13,
13, 0, 0, 0, 0, 0, 0, 0, 0, 0,16,16,12,12,14,14,
0, 0, 0, 0, 0, 0, 0, 0, 0,16,16,12,12,14,14, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13,13,14,15, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,13,13,15,15, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,17,17,16,16, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0,17,17,16,16, 0, 0, 0, 0, 0,
0,
};
tatic float _vq_quantthresh__44c8_s0_p8_0[] = {
-97.5, -82.5, -67.5, -52.5, -37.5, -22.5, -7.5, 7.5,
22.5, 37.5, 52.5, 67.5, 82.5, 97.5,
};
tatic long _vq_quantmap__44c8_s0_p8_0[] = {
13, 11, 9, 7, 5, 3, 1, 0,
2, 4, 6, 8, 10, 12, 14,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p8_0 = {
_vq_quantthresh__44c8_s0_p8_0,
_vq_quantmap__44c8_s0_p8_0,
15,
15
};
tatic static_codebook _44c8_s0_p8_0 = {
2, 225,
_vq_lengthlist__44c8_s0_p8_0,
1, -522567680, 1618870272, 4, 0,
_vq_quantlist__44c8_s0_p8_0,
NULL,
&_vq_auxt__44c8_s0_p8_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p8_1.vqh
Index: _44c8_s0_p8_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p8_1_VQH_
#define _V__44c8_s0_p8_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p8_1[] = {
7,
6,
8,
5,
9,
4,
10,
3,
11,
2,
12,
1,
13,
0,
14,
};
tatic long _vq_lengthlist__44c8_s0_p8_1[] = {
5, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 9,
6, 6, 7, 7, 7, 7, 8, 7, 8, 8, 8, 8, 8, 8, 9, 6,
6, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 7, 7,
7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 7,
7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 7, 7,
8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 7, 7, 8,
8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 8, 8, 8, 8,
8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8,
8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8, 8,
8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8,
8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8,
8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8,
8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8,
8, 8, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8,
8,
};
tatic float _vq_quantthresh__44c8_s0_p8_1[] = {
-6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5,
1.5, 2.5, 3.5, 4.5, 5.5, 6.5,
};
tatic long _vq_quantmap__44c8_s0_p8_1[] = {
13, 11, 9, 7, 5, 3, 1, 0,
2, 4, 6, 8, 10, 12, 14,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p8_1 = {
_vq_quantthresh__44c8_s0_p8_1,
_vq_quantmap__44c8_s0_p8_1,
15,
15
};
tatic static_codebook _44c8_s0_p8_1 = {
2, 225,
_vq_lengthlist__44c8_s0_p8_1,
1, -530841600, 1611661312, 4, 0,
_vq_quantlist__44c8_s0_p8_1,
NULL,
&_vq_auxt__44c8_s0_p8_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p9_0.vqh
Index: _44c8_s0_p9_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p9_0_VQH_
#define _V__44c8_s0_p9_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p9_0[] = {
5,
4,
6,
3,
7,
2,
8,
1,
9,
0,
10,
};
tatic long _vq_lengthlist__44c8_s0_p9_0[] = {
1, 3, 2,12,10,15,13,14,14,15,15, 6, 6, 7,11,12,
15,14,15,15,15,15, 6, 8, 5,13,12,15,13,15,15,15,
15,15, 7,12,11,15,15,15,15,15,15,15,15,11, 6,15,
13,15,15,15,15,15,15,15,15,14,13,13,15,15,15,15,
15,15,15,14,15,13, 9,15,15,15,15,15,15,15,15,15,
11,14,15,15,15,15,15,15,15,15,15,15, 9,15,15,15,
15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
15,15,15,15,15,15,15,14,14,
};
tatic float _vq_quantthresh__44c8_s0_p9_0[] = {
-2866.5, -2229.5, -1592.5, -955.5, -318.5, 318.5, 955.5, 1592.5,
2229.5, 2866.5,
};
tatic long _vq_quantmap__44c8_s0_p9_0[] = {
9, 7, 5, 3, 1, 0, 2, 4,
6, 8, 10,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p9_0 = {
_vq_quantthresh__44c8_s0_p9_0,
_vq_quantmap__44c8_s0_p9_0,
11,
11
};
tatic static_codebook _44c8_s0_p9_0 = {
2, 121,
_vq_lengthlist__44c8_s0_p9_0,
1, -512171520, 1630791680, 4, 0,
_vq_quantlist__44c8_s0_p9_0,
NULL,
&_vq_auxt__44c8_s0_p9_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p9_1.vqh
Index: _44c8_s0_p9_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p9_1_VQH_
#define _V__44c8_s0_p9_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p9_1[] = {
6,
5,
7,
4,
8,
3,
9,
2,
10,
1,
11,
0,
12,
};
tatic long _vq_lengthlist__44c8_s0_p9_1[] = {
1, 4, 3, 6, 6, 8, 8, 9, 9,10,10,11,11, 6, 5, 5,
7, 7, 9, 9,10,10,11,11,11,12, 6, 5, 5, 7, 7, 9,
9,10,11,11,11,12,12,13, 8, 8, 8, 8,10,10,11,11,
12,12,12,12,16, 8, 7, 8, 8,10,10,11,11,12,12,13,
12,14,12,12, 9, 9,11,11,12,12,12,12,13,13,16,12,
12, 9, 9,11,11,11,12,13,13,13,13,15,14,15,11,12,
12,12,13,12,13,13,13,13,17,17,15,12,12,11,12,11,
13,13,13,13,14,15,15,16,14,15,12,12,13,13,13,13,
14,13,17,16,16,14,14,12,13,13,13,14,14,14,14,16,
15,16,15,16,14,13,13,13,14,14,14,14,17,16,16,15,
15,13,13,13,13,14,14,14,14,
};
tatic float _vq_quantthresh__44c8_s0_p9_1[] = {
-269.5, -220.5, -171.5, -122.5, -73.5, -24.5, 24.5, 73.5,
122.5, 171.5, 220.5, 269.5,
};
tatic long _vq_quantmap__44c8_s0_p9_1[] = {
11, 9, 7, 5, 3, 1, 0, 2,
4, 6, 8, 10, 12,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p9_1 = {
_vq_quantthresh__44c8_s0_p9_1,
_vq_quantmap__44c8_s0_p9_1,
13,
13
};
tatic static_codebook _44c8_s0_p9_1 = {
2, 169,
_vq_lengthlist__44c8_s0_p9_1,
1, -518889472, 1622704128, 4, 0,
_vq_quantlist__44c8_s0_p9_1,
NULL,
&_vq_auxt__44c8_s0_p9_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_s0_p9_2.vqh
Index: _44c8_s0_p9_2.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c8_s0_p9_2_VQH_
#define _V__44c8_s0_p9_2_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c8_s0_p9_2[] = {
24,
23,
25,
22,
26,
21,
27,
20,
28,
19,
29,
18,
30,
17,
31,
16,
32,
15,
33,
14,
34,
13,
35,
12,
36,
11,
37,
10,
38,
9,
39,
8,
40,
7,
41,
6,
42,
5,
43,
4,
44,
3,
45,
2,
46,
1,
47,
0,
48,
};
tatic long _vq_lengthlist__44c8_s0_p9_2[] = {
3, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6,
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7,
};
tatic float _vq_quantthresh__44c8_s0_p9_2[] = {
-23.5, -22.5, -21.5, -20.5, -19.5, -18.5, -17.5, -16.5,
-15.5, -14.5, -13.5, -12.5, -11.5, -10.5, -9.5, -8.5,
-7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5,
0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5,
8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5,
16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5,
};
tatic long _vq_quantmap__44c8_s0_p9_2[] = {
47, 45, 43, 41, 39, 37, 35, 33,
31, 29, 27, 25, 23, 21, 19, 17,
15, 13, 11, 9, 7, 5, 3, 1,
0, 2, 4, 6, 8, 10, 12, 14,
16, 18, 20, 22, 24, 26, 28, 30,
32, 34, 36, 38, 40, 42, 44, 46,
48,
};
tatic encode_aux_threshmatch _vq_auxt__44c8_s0_p9_2 = {
_vq_quantthresh__44c8_s0_p9_2,
_vq_quantmap__44c8_s0_p9_2,
49,
49
};
tatic static_codebook _44c8_s0_p9_2 = {
1, 49,
_vq_lengthlist__44c8_s0_p9_2,
1, -526909440, 1611661312, 6, 0,
_vq_quantlist__44c8_s0_p9_2,
NULL,
&_vq_auxt__44c8_s0_p9_2,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c8_short.vqh
Index: _44c8_short.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
* THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. *
* PLEASE READ THESE TERMS DISTRIBUTING. *
* *
* THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-1999 *
* by 1999 Monty <monty at xiph.org> and The XIPHOPHORUS Company *
* http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by huff/huffbuld
********************************************************************/
#ifndef _V__44c8_short_VQH_
#define _V__44c8_short_VQH_
#include "codebook.h"
tatic long _huff_lengthlist__44c8_short[] = {
3,18,18, 9,13,16,18,18,18,18,18,18,18,14,13,11,
10,10,12,18,18,15,15,15,12,10, 7, 5, 5, 9, 5,18,
18, 6,10,11,12,14,14,18, 6,18,18, 5, 8, 9,10,12,
13,16, 8,18,18, 6, 7, 6, 6, 8,11,15,11,18,18, 7,
6, 4, 4, 5, 8,14,12,18,18, 9, 7, 6, 4, 4, 6,13,
15,17,16,11,11, 8, 6, 4, 4, 8,16,10, 5,15,15,13,
11, 8, 5, 4,
};
tatic static_codebook _huff_book__44c8_short = {
2, 100,
_huff_lengthlist__44c8_short,
0, 0, 0, 0, 0,
NULL,
NULL,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_long.vqh
Index: _44c9_long.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
* THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. *
* PLEASE READ THESE TERMS DISTRIBUTING. *
* *
* THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-1999 *
* by 1999 Monty <monty at xiph.org> and The XIPHOPHORUS Company *
* http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by huff/huffbuld
********************************************************************/
#ifndef _V__44c9_long_VQH_
#define _V__44c9_long_VQH_
#include "codebook.h"
tatic long _huff_lengthlist__44c9_long[] = {
3,11,14, 8,13,13,14,13,12,14,11, 7, 8,20,20,20,
20,20,12,10,15, 8, 6,20,20,20,19,19, 8, 7, 6,19,
19, 4, 8,10,11,12,12,14,10,19,19, 6, 6, 7, 9,11,
11,14,11,19,19, 8, 6, 4, 5, 9,10,13,13,19,19,10,
8, 5, 4, 6, 8,11,13,19,19,12,11, 8, 5, 5, 6,10,
13,12, 8,12,12,10, 7, 5, 3, 5,11, 9, 6,12,12,12,
11, 9, 5, 3,
};
tatic static_codebook _huff_book__44c9_long = {
2, 100,
_huff_lengthlist__44c9_long,
0, 0, 0, 0, 0,
NULL,
NULL,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p1_0.vqh
Index: _44c9_s0_p1_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p1_0_VQH_
#define _V__44c9_s0_p1_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p1_0[] = {
19,
16,
22,
13,
25,
0,
38,
7,
31,
4,
34,
};
tatic long _vq_lengthlist__44c9_s0_p1_0[] = {
1, 4, 4, 6, 7, 0, 0, 0, 0, 0, 0, 5, 5, 4, 7, 7,
0, 0, 0, 0, 0, 0, 0, 4, 4, 7, 7, 0, 0, 0, 0, 0,
0, 0, 7, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7,
7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
9,10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 0, 0, 0,
0, 0, 0, 0, 0, 0,12,11, 0, 0, 0, 0, 0, 0, 0, 0,
0,13,13, 0, 0, 0, 0, 0, 0,
};
tatic float _vq_quantthresh__44c9_s0_p1_0[] = {
-17, -13.5, -9, -4.5, -1.5, 1.5, 4.5, 9,
13.5, 17,
};
tatic long _vq_quantmap__44c9_s0_p1_0[] = {
5, 9, 7, 3, 1, 0, 2, 4,
8, 10, 6,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p1_0 = {
_vq_quantthresh__44c9_s0_p1_0,
_vq_quantmap__44c9_s0_p1_0,
11,
11
};
tatic static_codebook _44c9_s0_p1_0 = {
2, 121,
_vq_lengthlist__44c9_s0_p1_0,
1, -527237120, 1611661312, 6, 0,
_vq_quantlist__44c9_s0_p1_0,
NULL,
&_vq_auxt__44c9_s0_p1_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p1_1.vqh
Index: _44c9_s0_p1_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p1_1_VQH_
#define _V__44c9_s0_p1_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p1_1[] = {
1,
0,
2,
};
tatic long _vq_lengthlist__44c9_s0_p1_1[] = {
2, 3, 3, 4, 4, 4, 4, 3, 3,
};
tatic float _vq_quantthresh__44c9_s0_p1_1[] = {
-0.5, 0.5,
};
tatic long _vq_quantmap__44c9_s0_p1_1[] = {
1, 0, 2,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p1_1 = {
_vq_quantthresh__44c9_s0_p1_1,
_vq_quantmap__44c9_s0_p1_1,
3,
3
};
tatic static_codebook _44c9_s0_p1_1 = {
2, 9,
_vq_lengthlist__44c9_s0_p1_1,
1, -535822336, 1611661312, 2, 0,
_vq_quantlist__44c9_s0_p1_1,
NULL,
&_vq_auxt__44c9_s0_p1_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p2_0.vqh
Index: _44c9_s0_p2_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p2_0_VQH_
#define _V__44c9_s0_p2_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p2_0[] = {
6,
5,
7,
4,
8,
3,
9,
2,
10,
1,
11,
0,
12,
};
tatic long _vq_lengthlist__44c9_s0_p2_0[] = {
1, 4, 3, 6, 6, 8, 8, 0, 0, 0, 0, 0, 0, 6, 5, 5,
7, 7, 9, 9, 0, 0, 0, 0, 0, 0, 6, 5, 5, 7, 7, 9,
9, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7, 7, 9, 9, 0, 0,
0, 0, 0, 0, 0, 8, 8, 8, 7, 9, 9, 0, 0, 0, 0, 0,
0, 0,12,12, 9, 9,10,10, 0, 0, 0, 0, 0, 0, 0,12,
12, 9, 9,10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0,11,11,
10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0,11,11,11,10, 0,
0, 0, 0, 0, 0, 0, 0, 0,14,14,12,12, 0, 0, 0, 0,
0, 0, 0, 0, 0,15,15,12,12, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0,13,14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,14,14, 0, 0, 0, 0, 0, 0,
};
tatic float _vq_quantthresh__44c9_s0_p2_0[] = {
-71.5, -58.5, -45.5, -32.5, -19.5, -6.5, 6.5, 19.5,
32.5, 45.5, 58.5, 71.5,
};
tatic long _vq_quantmap__44c9_s0_p2_0[] = {
11, 9, 7, 5, 3, 1, 0, 2,
4, 6, 8, 10, 12,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p2_0 = {
_vq_quantthresh__44c9_s0_p2_0,
_vq_quantmap__44c9_s0_p2_0,
13,
13
};
tatic static_codebook _44c9_s0_p2_0 = {
2, 169,
_vq_lengthlist__44c9_s0_p2_0,
1, -523010048, 1618608128, 4, 0,
_vq_quantlist__44c9_s0_p2_0,
NULL,
&_vq_auxt__44c9_s0_p2_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p2_1.vqh
Index: _44c9_s0_p2_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p2_1_VQH_
#define _V__44c9_s0_p2_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p2_1[] = {
6,
5,
7,
4,
8,
3,
9,
2,
10,
1,
11,
0,
12,
};
tatic long _vq_lengthlist__44c9_s0_p2_1[] = {
4, 5, 5, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 8, 6, 6,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 6, 6, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 9, 7, 7, 7, 7, 7, 7, 7, 7,
8, 8, 8, 8, 9, 9, 9, 7, 7, 7, 7, 7, 7, 8, 8, 8,
8, 9, 9, 9, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 9,
9, 7, 7, 7, 7, 8, 7, 8, 8, 8, 8, 9, 9, 9, 8, 8,
8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8,
8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8,
8, 8, 9, 9, 9, 9, 9, 8, 8, 8, 7, 8, 8, 8, 8, 9,
9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9,
9, 9, 9, 8, 8, 8, 8, 8, 8,
};
tatic float _vq_quantthresh__44c9_s0_p2_1[] = {
-5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5, 1.5,
2.5, 3.5, 4.5, 5.5,
};
tatic long _vq_quantmap__44c9_s0_p2_1[] = {
11, 9, 7, 5, 3, 1, 0, 2,
4, 6, 8, 10, 12,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p2_1 = {
_vq_quantthresh__44c9_s0_p2_1,
_vq_quantmap__44c9_s0_p2_1,
13,
13
};
tatic static_codebook _44c9_s0_p2_1 = {
2, 169,
_vq_lengthlist__44c9_s0_p2_1,
1, -531103744, 1611661312, 4, 0,
_vq_quantlist__44c9_s0_p2_1,
NULL,
&_vq_auxt__44c9_s0_p2_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p3_0.vqh
Index: _44c9_s0_p3_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p3_0_VQH_
#define _V__44c9_s0_p3_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p3_0[] = {
2,
1,
3,
0,
4,
};
tatic long _vq_lengthlist__44c9_s0_p3_0[] = {
1, 6, 6, 0, 0, 0, 5, 5, 0, 0, 0, 5, 5, 0, 0, 0,
8, 8, 0, 0, 0, 0, 0, 0, 0, 6, 8, 8, 0, 0, 0, 9,
8, 0, 0, 0, 9, 9, 0, 0, 0,11,11, 0, 0, 0, 0, 0,
0, 0, 6, 8, 8, 0, 0, 0, 8, 9, 0, 0, 0, 8, 9, 0,
0, 0,11,11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 5, 9, 9, 0, 0, 0, 7, 7, 0, 0,
0, 8, 8, 0, 0, 0,10,10, 0, 0, 0, 0, 0, 0, 0, 5,
9, 9, 0, 0, 0, 7, 7, 0, 0, 0, 8, 8, 0, 0, 0,10,
10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 5, 9, 8, 0, 0, 0, 8, 8, 0, 0, 0, 7, 7,
0, 0, 0,10,10, 0, 0, 0, 0, 0, 0, 0, 5, 8, 9, 0,
0, 0, 8, 8, 0, 0, 0, 7, 7, 0, 0, 0,10,10, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8,11,11, 0, 0, 0,10,10, 0, 0, 0,10,10, 0, 0, 0,
11,11, 0, 0, 0, 0, 0, 0, 0, 8,11,11, 0, 0, 0,10,
10, 0, 0, 0,10,10, 0, 0, 0,11,11, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,
};
tatic float _vq_quantthresh__44c9_s0_p3_0[] = {
-1.5, -0.5, 0.5, 1.5,
};
tatic long _vq_quantmap__44c9_s0_p3_0[] = {
3, 1, 0, 2, 4,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p3_0 = {
_vq_quantthresh__44c9_s0_p3_0,
_vq_quantmap__44c9_s0_p3_0,
5,
5
};
tatic static_codebook _44c9_s0_p3_0 = {
4, 625,
_vq_lengthlist__44c9_s0_p3_0,
1, -533725184, 1611661312, 3, 0,
_vq_quantlist__44c9_s0_p3_0,
NULL,
&_vq_auxt__44c9_s0_p3_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p4_0.vqh
Index: _44c9_s0_p4_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p4_0_VQH_
#define _V__44c9_s0_p4_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p4_0[] = {
4,
3,
5,
2,
6,
1,
7,
0,
8,
};
tatic long _vq_lengthlist__44c9_s0_p4_0[] = {
2, 4, 4, 6, 6, 0, 0, 0, 0, 0, 4, 4, 6, 6, 0, 0,
0, 0, 0, 3, 3, 6, 6, 0, 0, 0, 0, 0, 5, 5, 6, 6,
0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 0, 0, 0, 0, 0, 0,
8, 7, 0, 0, 0, 0, 0, 0, 0, 7, 7, 0, 0, 0, 0, 0,
0, 0, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,
};
tatic float _vq_quantthresh__44c9_s0_p4_0[] = {
-3.5, -2.5, -1.5, -0.5, 0.5, 1.5, 2.5, 3.5,
};
tatic long _vq_quantmap__44c9_s0_p4_0[] = {
7, 5, 3, 1, 0, 2, 4, 6,
8,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p4_0 = {
_vq_quantthresh__44c9_s0_p4_0,
_vq_quantmap__44c9_s0_p4_0,
9,
9
};
tatic static_codebook _44c9_s0_p4_0 = {
2, 81,
_vq_lengthlist__44c9_s0_p4_0,
1, -531628032, 1611661312, 4, 0,
_vq_quantlist__44c9_s0_p4_0,
NULL,
&_vq_auxt__44c9_s0_p4_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p5_0.vqh
Index: _44c9_s0_p5_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p5_0_VQH_
#define _V__44c9_s0_p5_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p5_0[] = {
8,
7,
9,
6,
10,
5,
11,
4,
12,
3,
13,
2,
14,
1,
15,
0,
16,
};
tatic long _vq_lengthlist__44c9_s0_p5_0[] = {
3, 4, 4, 6, 5, 7, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0,
0, 0, 4, 4, 6, 6, 7, 7, 9, 9, 0, 0, 0, 0, 0, 0,
0, 0, 0, 4, 4, 6, 6, 7, 7, 9, 9, 0, 0, 0, 0, 0,
0, 0, 0, 0, 5, 5, 6, 6, 7, 7, 9, 9, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 6, 6, 7, 7, 9, 9, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 7, 7, 9, 9, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 7, 7, 9, 9, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 8, 8, 9, 9,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 9,
9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 8,
9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9,
9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
10,10,11,10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0,10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0,11,11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0,11,11, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0,12,12, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,
};
tatic float _vq_quantthresh__44c9_s0_p5_0[] = {
-7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5,
0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5,
};
tatic long _vq_quantmap__44c9_s0_p5_0[] = {
15, 13, 11, 9, 7, 5, 3, 1,
0, 2, 4, 6, 8, 10, 12, 14,
16,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p5_0 = {
_vq_quantthresh__44c9_s0_p5_0,
_vq_quantmap__44c9_s0_p5_0,
17,
17
};
tatic static_codebook _44c9_s0_p5_0 = {
2, 289,
_vq_lengthlist__44c9_s0_p5_0,
1, -529530880, 1611661312, 5, 0,
_vq_quantlist__44c9_s0_p5_0,
NULL,
&_vq_auxt__44c9_s0_p5_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p6_0.vqh
Index: _44c9_s0_p6_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p6_0_VQH_
#define _V__44c9_s0_p6_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p6_0[] = {
19,
16,
22,
13,
25,
0,
38,
7,
31,
4,
34,
};
tatic long _vq_lengthlist__44c9_s0_p6_0[] = {
2, 3, 3, 6, 6, 0, 0, 0, 0, 0, 0, 5, 4, 4, 6, 6,
0, 0, 0, 0, 0, 0, 0, 4, 4, 6, 6, 0, 0, 0, 0, 0,
0, 0, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 7, 7, 6,
6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 0, 0, 0,
0, 0, 0, 0, 0, 0,10,11, 0, 0, 0, 0, 0, 0, 0, 0,
0,12,12, 0, 0, 0, 0, 0, 0,
};
tatic float _vq_quantthresh__44c9_s0_p6_0[] = {
-17, -13.5, -9, -4.5, -1.5, 1.5, 4.5, 9,
13.5, 17,
};
tatic long _vq_quantmap__44c9_s0_p6_0[] = {
5, 9, 7, 3, 1, 0, 2, 4,
8, 10, 6,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p6_0 = {
_vq_quantthresh__44c9_s0_p6_0,
_vq_quantmap__44c9_s0_p6_0,
11,
11
};
tatic static_codebook _44c9_s0_p6_0 = {
2, 121,
_vq_lengthlist__44c9_s0_p6_0,
1, -527237120, 1611661312, 6, 0,
_vq_quantlist__44c9_s0_p6_0,
NULL,
&_vq_auxt__44c9_s0_p6_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p6_1.vqh
Index: _44c9_s0_p6_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p6_1_VQH_
#define _V__44c9_s0_p6_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p6_1[] = {
1,
0,
2,
};
tatic long _vq_lengthlist__44c9_s0_p6_1[] = {
3, 3, 3, 4, 3, 3, 4, 3, 3,
};
tatic float _vq_quantthresh__44c9_s0_p6_1[] = {
-0.5, 0.5,
};
tatic long _vq_quantmap__44c9_s0_p6_1[] = {
1, 0, 2,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p6_1 = {
_vq_quantthresh__44c9_s0_p6_1,
_vq_quantmap__44c9_s0_p6_1,
3,
3
};
tatic static_codebook _44c9_s0_p6_1 = {
2, 9,
_vq_lengthlist__44c9_s0_p6_1,
1, -535822336, 1611661312, 2, 0,
_vq_quantlist__44c9_s0_p6_1,
NULL,
&_vq_auxt__44c9_s0_p6_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p7_0.vqh
Index: _44c9_s0_p7_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p7_0_VQH_
#define _V__44c9_s0_p7_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p7_0[] = {
6,
5,
7,
4,
8,
3,
9,
2,
10,
1,
11,
0,
12,
};
tatic long _vq_lengthlist__44c9_s0_p7_0[] = {
2, 3, 3, 6, 6, 8, 8, 0, 0, 0, 0, 0, 0, 6, 4, 4,
6, 6, 9, 9, 0, 0, 0, 0, 0, 0, 6, 4, 4, 6, 6, 9,
9, 0, 0, 0, 0, 0, 0, 0, 7, 6, 7, 7, 9, 9, 0, 0,
0, 0, 0, 0, 0, 7, 7, 7, 7, 9, 9, 0, 0, 0, 0, 0,
0, 0,11,11, 8, 8,10,10, 0, 0, 0, 0, 0, 0, 0,12,
12, 8, 8,10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0,10,10,
10,10, 0, 0, 0, 0, 0, 0, 0, 0, 0,10,10,10,10, 0,
0, 0, 0, 0, 0, 0, 0, 0,14,14,11,11, 0, 0, 0, 0,
0, 0, 0, 0, 0,15,15,11,11, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0,14,13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,14,14, 0, 0, 0, 0, 0, 0,
};
tatic float _vq_quantthresh__44c9_s0_p7_0[] = {
-27.5, -22.5, -17.5, -12.5, -7.5, -2.5, 2.5, 7.5,
12.5, 17.5, 22.5, 27.5,
};
tatic long _vq_quantmap__44c9_s0_p7_0[] = {
11, 9, 7, 5, 3, 1, 0, 2,
4, 6, 8, 10, 12,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p7_0 = {
_vq_quantthresh__44c9_s0_p7_0,
_vq_quantmap__44c9_s0_p7_0,
13,
13
};
tatic static_codebook _44c9_s0_p7_0 = {
2, 169,
_vq_lengthlist__44c9_s0_p7_0,
1, -526516224, 1616117760, 4, 0,
_vq_quantlist__44c9_s0_p7_0,
NULL,
&_vq_auxt__44c9_s0_p7_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p7_1.vqh
Index: _44c9_s0_p7_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p7_1_VQH_
#define _V__44c9_s0_p7_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p7_1[] = {
2,
1,
3,
0,
4,
};
tatic long _vq_lengthlist__44c9_s0_p7_1[] = {
4, 4, 4, 4, 4, 5, 4, 5, 5, 5, 5, 4, 5, 5, 5, 5,
5, 5, 5, 5, 5, 5, 5, 5, 5,
};
tatic float _vq_quantthresh__44c9_s0_p7_1[] = {
-1.5, -0.5, 0.5, 1.5,
};
tatic long _vq_quantmap__44c9_s0_p7_1[] = {
3, 1, 0, 2, 4,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p7_1 = {
_vq_quantthresh__44c9_s0_p7_1,
_vq_quantmap__44c9_s0_p7_1,
5,
5
};
tatic static_codebook _44c9_s0_p7_1 = {
2, 25,
_vq_lengthlist__44c9_s0_p7_1,
1, -533725184, 1611661312, 3, 0,
_vq_quantlist__44c9_s0_p7_1,
NULL,
&_vq_auxt__44c9_s0_p7_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p8_0.vqh
Index: _44c9_s0_p8_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p8_0_VQH_
#define _V__44c9_s0_p8_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p8_0[] = {
7,
6,
8,
5,
9,
4,
10,
3,
11,
2,
12,
1,
13,
0,
14,
};
tatic long _vq_lengthlist__44c9_s0_p8_0[] = {
2, 3, 3, 6, 6, 8, 8,11,11, 0, 0, 0, 0, 0, 0, 5,
4, 4, 6, 6, 9, 9,12,12, 0, 0, 0, 0, 0, 0, 6, 4,
4, 7, 7, 9, 9,12,12, 0, 0, 0, 0, 0, 0, 0, 7, 7,
7, 7, 9, 9,12,12, 0, 0, 0, 0, 0, 0, 0, 7, 7, 7,
7, 9, 9,12,12, 0, 0, 0, 0, 0, 0, 0,11,11, 8, 8,
10,10,12,12, 0, 0, 0, 0, 0, 0, 0,11,11, 8, 8, 9,
9,12,12, 0, 0, 0, 0, 0, 0, 0, 0, 0,10,10,10,10,
13,13, 0, 0, 0, 0, 0, 0, 0, 0, 0,10,10,10,10,13,
13, 0, 0, 0, 0, 0, 0, 0, 0, 0,14,14,11,11,13,14,
0, 0, 0, 0, 0, 0, 0, 0, 0,15,15,11,11,13,13, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,13,13,14,14, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0,13,13,14,14, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,17,17,15,15, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0,17,17,16,16, 0, 0, 0, 0, 0,
0,
};
tatic float _vq_quantthresh__44c9_s0_p8_0[] = {
-97.5, -82.5, -67.5, -52.5, -37.5, -22.5, -7.5, 7.5,
22.5, 37.5, 52.5, 67.5, 82.5, 97.5,
};
tatic long _vq_quantmap__44c9_s0_p8_0[] = {
13, 11, 9, 7, 5, 3, 1, 0,
2, 4, 6, 8, 10, 12, 14,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p8_0 = {
_vq_quantthresh__44c9_s0_p8_0,
_vq_quantmap__44c9_s0_p8_0,
15,
15
};
tatic static_codebook _44c9_s0_p8_0 = {
2, 225,
_vq_lengthlist__44c9_s0_p8_0,
1, -522567680, 1618870272, 4, 0,
_vq_quantlist__44c9_s0_p8_0,
NULL,
&_vq_auxt__44c9_s0_p8_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p8_1.vqh
Index: _44c9_s0_p8_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p8_1_VQH_
#define _V__44c9_s0_p8_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p8_1[] = {
7,
6,
8,
5,
9,
4,
10,
3,
11,
2,
12,
1,
13,
0,
14,
};
tatic long _vq_lengthlist__44c9_s0_p8_1[] = {
6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 9, 7,
7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 9, 7, 7,
7, 7, 7, 7, 8, 7, 8, 8, 8, 8, 8, 8, 9, 9, 9, 7,
7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 7, 7,
7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 7, 7, 7,
7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 8, 8, 8, 8,
8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8,
8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8, 8,
8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8,
8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8,
8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8,
8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8,
8, 8, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8,
8,
};
tatic float _vq_quantthresh__44c9_s0_p8_1[] = {
-6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5, 0.5,
1.5, 2.5, 3.5, 4.5, 5.5, 6.5,
};
tatic long _vq_quantmap__44c9_s0_p8_1[] = {
13, 11, 9, 7, 5, 3, 1, 0,
2, 4, 6, 8, 10, 12, 14,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p8_1 = {
_vq_quantthresh__44c9_s0_p8_1,
_vq_quantmap__44c9_s0_p8_1,
15,
15
};
tatic static_codebook _44c9_s0_p8_1 = {
2, 225,
_vq_lengthlist__44c9_s0_p8_1,
1, -530841600, 1611661312, 4, 0,
_vq_quantlist__44c9_s0_p8_1,
NULL,
&_vq_auxt__44c9_s0_p8_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p9_0.vqh
Index: _44c9_s0_p9_0.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p9_0_VQH_
#define _V__44c9_s0_p9_0_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p9_0[] = {
11,
10,
12,
9,
13,
8,
14,
7,
15,
6,
16,
5,
17,
4,
18,
3,
19,
2,
20,
1,
21,
0,
22,
};
tatic long _vq_lengthlist__44c9_s0_p9_0[] = {
1, 3, 3, 6, 5,11, 6,14, 9,16,16,16,16,16,16,16,
16,16,16,16,16,16,16, 6, 5, 6, 8, 8,12, 7,15, 9,
16,15,16,16,16,16,16,16,16,16,16,16,16,16, 6, 6,
6,10, 9,11,11,14,12,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16, 8, 9,12,13,16,14,16,12,16,13,
16,16,16,16,16,16,16,16,16,16,16,16,16, 9, 8,12,
11,16,14,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,11,12,10,11,16,15,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,13,12,12, 9,16,
14,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16, 9,12,14,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,14, 6,16, 9,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,12,16,11,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,10,16, 8,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,11,16,14,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16, 9,16,13,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,14,16,14,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,14,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
16,
};
tatic float _vq_quantthresh__44c9_s0_p9_0[] = {
-19562, -17698, -15836, -13972, -12110, -10246, -8383.5, -6520.5,
-4657.5, -2794.5, -931.5, 931.5, 2794.5, 4657.5, 6520.5, 8383.5,
10246, 12110, 13972, 15836, 17698, 19562,
};
tatic long _vq_quantmap__44c9_s0_p9_0[] = {
21, 19, 17, 15, 13, 11, 9, 7,
5, 3, 1, 0, 2, 4, 6, 8,
10, 12, 14, 16, 18, 20, 22,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p9_0 = {
_vq_quantthresh__44c9_s0_p9_0,
_vq_quantmap__44c9_s0_p9_0,
23,
23
};
tatic static_codebook _44c9_s0_p9_0 = {
2, 529,
_vq_lengthlist__44c9_s0_p9_0,
1, -506199232, 1633491968, 5, 0,
_vq_quantlist__44c9_s0_p9_0,
NULL,
&_vq_auxt__44c9_s0_p9_0,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p9_1.vqh
Index: _44c9_s0_p9_1.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p9_1_VQH_
#define _V__44c9_s0_p9_1_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p9_1[] = {
11,
10,
12,
9,
13,
8,
14,
7,
15,
6,
16,
5,
17,
4,
18,
3,
19,
2,
20,
1,
21,
0,
22,
};
tatic long _vq_lengthlist__44c9_s0_p9_1[] = {
1, 3, 3, 7, 7, 9, 9,10,10,11,11,12,12,13,13,14,
14,14,14,14,14,15,15, 6, 5, 5, 8, 8,10,10,11,11,
12,12,12,13,13,13,14,14,15,14,15,15,15,15, 6, 5,
5, 8, 8,10,10,11,11,12,12,13,13,14,14,14,14,15,
14,15,15,15,15,17, 8, 8, 9, 9,11,11,12,12,13,13,
13,13,14,14,14,15,15,15,15,15,15,15,17, 8, 8, 9,
9,11,11,12,12,13,13,13,13,14,14,15,14,15,15,15,
15,15,15,17,13,13,10,10,11,11,12,12,13,13,14,14,
14,14,15,15,15,15,15,15,15,15,17,13,13,10,10,11,
11,13,12,13,13,14,14,14,15,15,15,15,15,15,15,16,
15,17,17,17,12,12,12,12,13,13,14,14,14,14,15,15,
15,15,15,15,15,16,16,16,17,17,17,12,12,12,12,13,
13,14,14,15,15,15,15,15,15,15,15,16,16,16,16,18,
17,18,15,16,13,13,14,14,15,15,15,15,15,15,15,16,
15,16,15,16,16,16,18,17,17,16,15,13,13,14,14,15,
15,15,15,15,15,15,16,16,16,16,16,16,16,18,18,18,
17,18,14,14,14,14,15,15,16,15,16,16,16,16,15,16,
16,16,16,15,18,18,18,18,18,14,14,14,14,15,15,16,
16,16,16,16,16,16,16,16,15,16,16,18,18,18,18,17,
17,17,14,15,15,15,16,15,16,16,16,16,16,16,16,16,
16,16,18,18,18,18,18,17,17,14,14,15,15,16,16,16,
16,16,16,16,16,16,16,16,16,17,18,18,19,18,18,17,
16,15,15,15,16,16,16,16,16,16,16,16,17,16,16,16,
17,18,17,18,17,18,18,15,15,15,15,16,16,16,16,17,
16,16,16,16,16,16,16,18,18,18,18,18,18,18,17,17,
16,15,16,16,16,16,16,16,16,16,17,16,16,16,18,18,
17,18,17,18,17,16,17,13,15,16,15,16,16,16,16,16,
17,16,16,16,16,18,19,18,18,18,18,17,18,18,17,16,
16,16,16,16,16,16,16,16,16,17,16,16,19,18,18,19,
19,18,18,17,18,14,16,16,15,16,16,16,17,16,16,16,
17,17,17,19,19,18,18,18,17,18,17,18,17,17,16,14,
16,15,16,16,16,17,17,17,17,17,18,19,18,18,18,18,
18,18,18,18,16,16,13,16,16,16,16,16,16,17,16,17,
16,
};
tatic float _vq_quantthresh__44c9_s0_p9_1[] = {
-850.5, -769.5, -688.5, -607.5, -526.5, -445.5, -364.5, -283.5,
-202.5, -121.5, -40.5, 40.5, 121.5, 202.5, 283.5, 364.5,
445.5, 526.5, 607.5, 688.5, 769.5, 850.5,
};
tatic long _vq_quantmap__44c9_s0_p9_1[] = {
21, 19, 17, 15, 13, 11, 9, 7,
5, 3, 1, 0, 2, 4, 6, 8,
10, 12, 14, 16, 18, 20, 22,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p9_1 = {
_vq_quantthresh__44c9_s0_p9_1,
_vq_quantmap__44c9_s0_p9_1,
23,
23
};
tatic static_codebook _44c9_s0_p9_1 = {
2, 529,
_vq_lengthlist__44c9_s0_p9_1,
1, -516171776, 1624522752, 5, 0,
_vq_quantlist__44c9_s0_p9_1,
NULL,
&_vq_auxt__44c9_s0_p9_1,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_s0_p9_2.vqh
Index: _44c9_s0_p9_2.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
* *
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
* by the XIPHOPHORUS Company http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by vq/somethingorother
********************************************************************/
#ifndef _V__44c9_s0_p9_2_VQH_
#define _V__44c9_s0_p9_2_VQH_
#include "codebook.h"
tatic long _vq_quantlist__44c9_s0_p9_2[] = {
40,
39,
41,
38,
42,
37,
43,
36,
44,
35,
45,
34,
46,
33,
47,
32,
48,
31,
49,
30,
50,
29,
51,
28,
52,
27,
53,
26,
54,
25,
55,
24,
56,
23,
57,
22,
58,
21,
59,
20,
60,
19,
61,
18,
62,
17,
63,
16,
64,
15,
65,
14,
66,
13,
67,
12,
68,
11,
69,
10,
70,
9,
71,
8,
72,
7,
73,
6,
74,
5,
75,
4,
76,
3,
77,
2,
78,
1,
79,
0,
80,
};
tatic long _vq_lengthlist__44c9_s0_p9_2[] = {
4, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7,
};
tatic float _vq_quantthresh__44c9_s0_p9_2[] = {
-39.5, -38.5, -37.5, -36.5, -35.5, -34.5, -33.5, -32.5,
-31.5, -30.5, -29.5, -28.5, -27.5, -26.5, -25.5, -24.5,
-23.5, -22.5, -21.5, -20.5, -19.5, -18.5, -17.5, -16.5,
-15.5, -14.5, -13.5, -12.5, -11.5, -10.5, -9.5, -8.5,
-7.5, -6.5, -5.5, -4.5, -3.5, -2.5, -1.5, -0.5,
0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5,
8.5, 9.5, 10.5, 11.5, 12.5, 13.5, 14.5, 15.5,
16.5, 17.5, 18.5, 19.5, 20.5, 21.5, 22.5, 23.5,
24.5, 25.5, 26.5, 27.5, 28.5, 29.5, 30.5, 31.5,
32.5, 33.5, 34.5, 35.5, 36.5, 37.5, 38.5, 39.5,
};
tatic long _vq_quantmap__44c9_s0_p9_2[] = {
79, 77, 75, 73, 71, 69, 67, 65,
63, 61, 59, 57, 55, 53, 51, 49,
47, 45, 43, 41, 39, 37, 35, 33,
31, 29, 27, 25, 23, 21, 19, 17,
15, 13, 11, 9, 7, 5, 3, 1,
0, 2, 4, 6, 8, 10, 12, 14,
16, 18, 20, 22, 24, 26, 28, 30,
32, 34, 36, 38, 40, 42, 44, 46,
48, 50, 52, 54, 56, 58, 60, 62,
64, 66, 68, 70, 72, 74, 76, 78,
80,
};
tatic encode_aux_threshmatch _vq_auxt__44c9_s0_p9_2 = {
_vq_quantthresh__44c9_s0_p9_2,
_vq_quantmap__44c9_s0_p9_2,
81,
81
};
tatic static_codebook _44c9_s0_p9_2 = {
1, 81,
_vq_lengthlist__44c9_s0_p9_2,
1, -525074432, 1611661312, 7, 0,
_vq_quantlist__44c9_s0_p9_2,
NULL,
&_vq_auxt__44c9_s0_p9_2,
NULL,
0
};
#endif
1.1 vorbis/lib/books/coupled/_44c9_short.vqh
Index: _44c9_short.vqh
===================================================================
/********************************************************************
* *
* THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE. *
* USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
* THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE. *
* PLEASE READ THESE TERMS DISTRIBUTING. *
* *
* THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-1999 *
* by 1999 Monty <monty at xiph.org> and The XIPHOPHORUS Company *
* http://www.xiph.org/ *
* *
********************************************************************
function: static codebook autogenerated by huff/huffbuld
********************************************************************/
#ifndef _V__44c9_short_VQH_
#define _V__44c9_short_VQH_
#include "codebook.h"
tatic long _huff_lengthlist__44c9_short[] = {
3,18,18,10,12,15,18,18,18,18,17,17,18,14,13,12,
11,11,14,17,18,18,16,16,13,11, 8, 7, 7,10, 5,18,
18, 6, 9,11,13,15,16,18, 7,18,18, 5, 8,10,11,13,
14,16, 8,18,18, 6, 7, 7, 7, 9,11,15,10,18,18, 8,
7, 5, 5, 6, 9,13,12,18,18,10, 8, 6, 5, 5, 6,11,
14,18,16,12,10, 8, 6, 5, 3, 7,18,10, 6,15,14,12,
10, 8, 4, 2,
};
tatic static_codebook _huff_book__44c9_short = {
2, 100,
_huff_lengthlist__44c9_short,
0, 0, 0, 0, 0,
NULL,
NULL,
NULL,
0
};
#endif
1.3 +2 -2 vorbis/lib/books/floor/line_1024x31_0sub0.vqh
Index: line_1024x31_0sub0.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_0sub0.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_0sub0.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_0sub0.vqh 2001/12/14 07:21:22 1.3
@@ -20,8 +20,8 @@
#include "codebook.h"
static long _huff_lengthlist_line_1024x31_0sub0[] = {
- 4, 5, 5, 4, 5, 4, 5, 4, 5, 4, 5, 4, 5, 5, 5, 5,
- 6, 5, 5, 5, 6, 5, 6, 5, 7, 5, 7, 6, 7, 6, 7, 6,
+ 4, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6,
};
static static_codebook _huff_book_line_1024x31_0sub0 = {
1.3 +6 -6 vorbis/lib/books/floor/line_1024x31_0sub1.vqh
Index: line_1024x31_0sub1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_0sub1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_0sub1.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_0sub1.vqh 2001/12/14 07:21:22 1.3
@@ -22,12 +22,12 @@
static long _huff_lengthlist_line_1024x31_0sub1[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 5, 4, 5, 4, 5, 4, 5, 4, 6, 4, 6, 4, 6, 4, 6, 4,
- 6, 5, 6, 5, 7, 5, 7, 5, 8, 6, 8, 6, 8, 6, 8, 6,
- 9, 7,10, 7, 9, 7,10, 8,10, 9,12,11,12,11,11,11,
- 10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
- 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
- 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
+ 4, 4, 4, 4, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
+ 6, 6, 6, 6, 6, 6, 6, 6, 7, 6, 7, 6, 7, 6, 7, 6,
+ 7, 6, 7, 7, 7, 7, 8, 7, 8, 7, 8, 8, 8, 8, 8, 9,
+ 8,10, 9,10, 9,11, 9,13,10,12,10,11,10, 9, 9,10,
+ 11,12,11,13,12,13,13,12,12,13,13,13,12,13,13,15,
+ 13,16,14,13,13,12,12,13,16,16,16,16,16,15,15,13,
};
static static_codebook _huff_book_line_1024x31_0sub1 = {
1.3 +2 -2 vorbis/lib/books/floor/line_1024x31_1sub0.vqh
Index: line_1024x31_1sub0.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_1sub0.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_1sub0.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_1sub0.vqh 2001/12/14 07:21:22 1.3
@@ -20,8 +20,8 @@
#include "codebook.h"
static long _huff_lengthlist_line_1024x31_1sub0[] = {
- 2, 4, 5, 4, 5, 4, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5,
- 6, 6, 6, 6, 7, 6, 7, 6, 7, 7, 8, 7, 8, 7, 8, 8,
+ 2, 4, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 8, 8,
};
static static_codebook _huff_book_line_1024x31_1sub0 = {
1.3 +6 -6 vorbis/lib/books/floor/line_1024x31_1sub1.vqh
Index: line_1024x31_1sub1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_1sub1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_1sub1.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_1sub1.vqh 2001/12/14 07:21:22 1.3
@@ -22,12 +22,12 @@
static long _huff_lengthlist_line_1024x31_1sub1[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 4, 4, 4, 4, 4, 3, 4, 3, 5, 4, 5, 5, 6, 5, 6, 6,
- 6, 6, 7, 6, 9, 6, 7, 7, 8, 8,10,10,10,11,11,11,
- 11,11,10,11,11,11,11,11,11,11,11,11,11,11,11,11,
- 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
- 11,11,11,11,11,11,11,11,11,11,11,11,11,11,10,10,
- 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,
+ 3, 4, 4, 4, 4, 4, 5, 4, 5, 5, 5, 5, 6, 5, 6, 6,
+ 7, 6, 7, 6, 7, 6, 7, 6, 7, 6, 7, 7, 7, 7, 8, 7,
+ 8, 7, 8, 7, 8, 7, 8, 7, 8, 8, 8, 8, 8, 8, 8, 9,
+ 8, 9, 9,10, 9,10, 9,10,10, 9,10, 9,11,11,12,11,
+ 12,12,11,12,11,13,11,14,13,11,11,11,11,11,11,12,
+ 12,14,14,13,13,14,13,13,14,14,14,14,14,14,14,14,
};
static static_codebook _huff_book_line_1024x31_1sub1 = {
1.3 +1 -1 vorbis/lib/books/floor/line_1024x31_2sub1.vqh
Index: line_1024x31_2sub1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_2sub1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_2sub1.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_2sub1.vqh 2001/12/14 07:21:22 1.3
@@ -20,7 +20,7 @@
#include "codebook.h"
static long _huff_lengthlist_line_1024x31_2sub1[] = {
- 0, 4, 4, 4, 4, 3, 5, 3, 5, 3, 5, 4, 5, 4, 5, 5,
+ 0, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 5, 5,
5, 5,
};
1.3 +3 -3 vorbis/lib/books/floor/line_1024x31_2sub2.vqh
Index: line_1024x31_2sub2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_2sub2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_2sub2.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_2sub2.vqh 2001/12/14 07:21:22 1.3
@@ -21,9 +21,9 @@
static long _huff_lengthlist_line_1024x31_2sub2[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 3, 3, 4, 4, 5, 5, 5, 5, 6, 6, 5, 7, 5, 8,
- 5,10, 4,10, 4,10, 4,12, 4,13, 5,13, 5,13, 5,13,
- 6,12,
+ 0, 0, 3, 3, 4, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5, 6,
+ 6, 6, 6, 7, 6, 8, 6, 9, 6, 9, 7, 9, 7,10, 8,11,
+ 7,11,
};
static static_codebook _huff_book_line_1024x31_2sub2 = {
1.3 +5 -5 vorbis/lib/books/floor/line_1024x31_2sub3.vqh
Index: line_1024x31_2sub3.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_2sub3.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_2sub3.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_2sub3.vqh 2001/12/14 07:21:22 1.3
@@ -23,11 +23,11 @@
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 2, 9, 4, 9, 3, 9, 4, 9, 5, 8, 5, 8, 4, 8,
- 6, 8, 5, 8, 5, 8, 6, 8, 5, 8, 8, 8, 8, 8, 8, 8,
- 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
- 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
- 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
+ 0, 0, 3, 8, 4, 8, 3, 9, 3, 9, 3, 9, 4, 9, 4, 8,
+ 4, 9, 4,11, 5,11, 6, 9, 7,11,10,11, 8, 9, 9, 7,
+ 8,10, 8,11, 6,11, 7, 7, 7, 7, 8,11,10,11,11,11,
+ 11,11, 9,11,10,10,10, 9, 9,11,11,11, 9,10, 8,11,
+ 10,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
};
static static_codebook _huff_book_line_1024x31_2sub3 = {
1.3 +1 -1 vorbis/lib/books/floor/line_1024x31_3sub1.vqh
Index: line_1024x31_3sub1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_3sub1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_3sub1.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_3sub1.vqh 2001/12/14 07:21:22 1.3
@@ -20,7 +20,7 @@
#include "codebook.h"
static long _huff_lengthlist_line_1024x31_3sub1[] = {
- 0, 3, 3, 4, 4, 4, 4, 4, 5, 4, 5, 4, 5, 4, 5, 4,
+ 0, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5,
5, 5,
};
1.3 +3 -3 vorbis/lib/books/floor/line_1024x31_3sub2.vqh
Index: line_1024x31_3sub2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_3sub2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_3sub2.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_3sub2.vqh 2001/12/14 07:21:22 1.3
@@ -21,9 +21,9 @@
static long _huff_lengthlist_line_1024x31_3sub2[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 3, 3, 4, 3, 4, 4, 5, 4, 6, 4, 6, 5, 7, 5,
- 7, 5, 7, 6, 9, 6, 8, 6,10, 6, 8, 6,10, 6, 9, 6,
- 9, 7,
+ 0, 0, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6,
+ 6, 6, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 8, 9, 9, 9,
+ 9, 9,
};
static static_codebook _huff_book_line_1024x31_3sub2 = {
1.3 +5 -5 vorbis/lib/books/floor/line_1024x31_3sub3.vqh
Index: line_1024x31_3sub3.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_3sub3.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_3sub3.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_3sub3.vqh 2001/12/14 07:21:22 1.3
@@ -23,11 +23,11 @@
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 6, 3, 7, 3, 6, 3, 7, 3, 7, 4, 8, 4, 8, 5,
- 6, 6, 7, 8, 8, 8, 8, 8, 8, 8, 7, 8, 8, 8, 8, 8,
- 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
- 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
- 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
+ 0, 0, 4, 4, 4, 4, 5, 4, 5, 4, 6, 4, 6, 4, 6, 4,
+ 6, 4, 6, 5, 7, 6, 7, 6, 6, 6, 7, 7, 7, 7, 6,10,
+ 7,10, 7, 9,10, 9, 8,10, 9,10, 8, 9, 9,10, 9,10,
+ 8,10,10,10,10,10,10,10,10,10,10,10,10, 9,10, 9,
+ 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,
};
static static_codebook _huff_book_line_1024x31_3sub3 = {
1.3 +1 -1 vorbis/lib/books/floor/line_1024x31_class0.vqh
Index: line_1024x31_class0.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_class0.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_class0.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_class0.vqh 2001/12/14 07:21:22 1.3
@@ -20,7 +20,7 @@
#include "codebook.h"
static long _huff_lengthlist_line_1024x31_class0[] = {
- 1, 3, 4, 5, 2, 6, 7, 7,
+ 1, 3, 4, 4, 3, 5, 4, 5,
};
static static_codebook _huff_book_line_1024x31_class0 = {
1.3 +1 -1 vorbis/lib/books/floor/line_1024x31_class1.vqh
Index: line_1024x31_class1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_class1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_class1.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_class1.vqh 2001/12/14 07:21:22 1.3
@@ -20,7 +20,7 @@
#include "codebook.h"
static long _huff_lengthlist_line_1024x31_class1[] = {
- 1, 3, 3, 4, 7, 9,11,11, 3, 5, 7, 7,10, 9,10,10,
+ 1, 3, 5, 6, 3, 7, 5,11, 3, 7, 8, 9, 6,10, 7,11,
};
static static_codebook _huff_book_line_1024x31_class1 = {
1.3 +4 -4 vorbis/lib/books/floor/line_1024x31_class2.vqh
Index: line_1024x31_class2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_class2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_class2.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_class2.vqh 2001/12/14 07:21:22 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_1024x31_class2[] = {
- 1, 3, 5,10, 8, 4, 6, 9,12, 8,10,14,15,15,15,15,
- 7, 3, 5,10, 8, 4, 7,10,12, 9,10,13,15,15,15,15,
- 12, 9, 9,14,11, 9, 9,14,15,12,12,15,15,15,15,15,
- 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
+ 1, 3, 5,10, 7, 4, 7,12, 9, 6, 9,14,18,20,20,15,
+ 7, 3, 6,11, 8, 5, 6,11,10, 6, 9,10,20,20,20,20,
+ 11, 8, 8,11,11, 7, 8,10,14, 9,10,16,20,20,20,20,
+ 18,17,17,17,19,19,17,17,19,19,18,19,19,19,19,19,
};
static static_codebook _huff_book_line_1024x31_class2 = {
1.3 +4 -4 vorbis/lib/books/floor/line_1024x31_class3.vqh
Index: line_1024x31_class3.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_1024x31_class3.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_1024x31_class3.vqh 2001/12/12 09:45:48 1.2
+++ line_1024x31_class3.vqh 2001/12/14 07:21:22 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_1024x31_class3[] = {
- 1, 3, 6,10, 7, 3, 6,12,10, 7,10,15,15,15,15,15,
- 7, 4, 6, 8, 8, 4, 6,10,13, 7, 9,13,15,14,14,14,
- 13,10, 9, 9,12, 8, 8,11,14,10,11,12,14,14,14,14,
- 14,14,14,12,14,14,14,14,14,14,14,14,14,14,14,14,
+ 1, 3, 6,11, 7, 3, 6,12,10, 7, 8,13,18,15,14,17,
+ 8, 4, 6,11, 8, 4, 6,11,11, 7, 9,13,19,19,18,18,
+ 11, 8, 9,12,11, 7, 8,13,14, 9,11,15,18,18,18,18,
+ 18,16,15,13,18,17,14,14,18,18,15,15,18,18,18,18,
};
static static_codebook _huff_book_line_1024x31_class3 = {
1.3 +8 -8 vorbis/lib/books/floor/line_128x19_0sub0.vqh
Index: line_128x19_0sub0.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x19_0sub0.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x19_0sub0.vqh 2001/12/12 09:45:48 1.2
+++ line_128x19_0sub0.vqh 2001/12/14 07:21:22 1.3
@@ -20,14 +20,14 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x19_0sub0[] = {
- 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5,
- 6, 5, 6, 5, 6, 5, 6, 6, 6, 6, 6, 6, 7, 6, 7, 6,
- 7, 6, 7, 6, 7, 6, 7, 7, 7, 7, 8, 7, 8, 7, 8, 8,
- 8, 8, 8, 8, 8, 9, 8, 9, 8, 9, 8,10, 8,10, 8,10,
- 8,11, 8,12, 9,12, 9,14, 9,14, 9,14, 9,15,10,15,
- 11,15,11,15,12,15,15,15,14,15,14,15,15,15,15,15,
- 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
- 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,14,
+ 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 6, 5, 6, 5, 6, 5,
+ 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 5, 6, 6, 6, 6,
+ 6, 6, 7, 6, 7, 6, 7, 6, 7, 7, 7, 7, 7, 7, 8, 7,
+ 8, 7, 8, 8, 8, 8, 9, 8, 9, 9, 9, 9, 9, 9, 9,10,
+ 9,10,10,11,10,11,10,12,11,12,11,13,11,14,11,15,
+ 12,14,12,15,13,15,13,15,14,16,15,16,14,18,15,18,
+ 17,18,16,17,17,18,18,18,18,18,18,18,18,18,18,18,
+ 18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,18,
};
static static_codebook _huff_book_line_128x19_0sub0 = {
1.3 +2 -2 vorbis/lib/books/floor/line_128x19_1sub1.vqh
Index: line_128x19_1sub1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x19_1sub1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x19_1sub1.vqh 2001/12/12 09:45:48 1.2
+++ line_128x19_1sub1.vqh 2001/12/14 07:21:22 1.3
@@ -20,8 +20,8 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x19_1sub1[] = {
- 0, 3, 3, 3, 3, 3, 5, 2, 4, 9, 9, 9, 9, 9, 9, 9,
- 9, 9, 9, 9, 9, 9, 9, 9, 9,
+ 0, 4, 4, 4, 5, 4, 5, 4, 5, 3, 5, 4, 5, 4, 5, 4,
+ 5, 5, 5, 6, 6, 6, 6, 6, 6,
};
static static_codebook _huff_book_line_128x19_1sub1 = {
1.3 +4 -4 vorbis/lib/books/floor/line_128x19_1sub2.vqh
Index: line_128x19_1sub2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x19_1sub2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x19_1sub2.vqh 2001/12/12 09:45:48 1.2
+++ line_128x19_1sub2.vqh 2001/12/14 07:21:22 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x19_1sub2[] = {
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 4, 3, 4, 3,
- 5, 4, 5, 4, 5, 5, 6, 5, 7,12,12,12,12,12,12,12,
- 12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,
- 11,11,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0,13,13,13,13,13,13,12, 3, 3, 3, 3, 4, 4, 4,
+ 4, 5, 5, 5, 5, 5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 9,
+ 8,10,
};
static static_codebook _huff_book_line_128x19_1sub2 = {
1.3 +6 -6 vorbis/lib/books/floor/line_128x19_1sub3.vqh
Index: line_128x19_1sub3.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x19_1sub3.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x19_1sub3.vqh 2001/12/12 09:45:48 1.2
+++ line_128x19_1sub3.vqh 2001/12/14 07:21:22 1.3
@@ -21,12 +21,12 @@
static long _huff_lengthlist_line_128x19_1sub3[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 3, 5, 3, 6, 4,
- 9, 4, 9, 5, 8, 6, 0, 8, 0, 7, 0, 9, 0, 0, 0, 0,
- 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 3, 5, 3, 8, 3, 6, 4, 7, 5, 8, 5, 8, 6, 8,
+ 6, 8, 6, 8, 6, 8, 5, 8, 7, 8, 7, 8, 7, 8, 6, 8,
+ 7, 8, 6, 8, 6, 8, 6, 6, 5, 8, 8, 8, 8, 8, 8, 8,
+ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
};
1.3 +2 -2 vorbis/lib/books/floor/line_128x19_2sub1.vqh
Index: line_128x19_2sub1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x19_2sub1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x19_2sub1.vqh 2001/12/12 09:45:48 1.2
+++ line_128x19_2sub1.vqh 2001/12/14 07:21:22 1.3
@@ -20,8 +20,8 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x19_2sub1[] = {
- 0, 2, 3, 3, 3, 3, 4, 3, 5, 9, 9, 8, 8, 8, 8, 8,
- 8, 8,
+ 0, 3, 4, 4, 4, 4, 5, 4, 5, 4, 5, 4, 4, 4, 4, 4,
+ 5, 4,
};
static static_codebook _huff_book_line_128x19_2sub1 = {
1.3 +4 -4 vorbis/lib/books/floor/line_128x19_2sub2.vqh
Index: line_128x19_2sub2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x19_2sub2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x19_2sub2.vqh 2001/12/12 09:45:48 1.2
+++ line_128x19_2sub2.vqh 2001/12/14 07:21:22 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x19_2sub2[] = {
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 4, 3, 5, 3,
- 5, 4, 5, 4, 6, 4, 7, 4, 8,13,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,13,12,12,12,12,12,
- 12,12,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 4, 3, 4, 3, 5, 4, 5, 4, 6, 4, 6, 4, 6, 4,
+ 6, 5, 7, 5, 7, 5, 8, 6, 9, 6, 9, 6, 9, 7,10, 7,
+ 10, 8,
};
static static_codebook _huff_book_line_128x19_2sub2 = {
1.3 +7 -7 vorbis/lib/books/floor/line_128x19_2sub3.vqh
Index: line_128x19_2sub3.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x19_2sub3.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x19_2sub3.vqh 2001/12/12 09:45:48 1.2
+++ line_128x19_2sub3.vqh 2001/12/14 07:21:22 1.3
@@ -21,13 +21,13 @@
static long _huff_lengthlist_line_128x19_2sub3[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 3, 6, 3, 6, 3,
- 7, 4, 7, 4, 8, 5, 8, 5, 8, 6,10, 6, 9, 7,12, 7,
- 10, 7,12, 7,10, 9,11, 9,12, 8,12,11,11, 9,11, 9,
- 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
- 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
- 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
- 11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 4, 2, 4, 3, 5, 4, 5, 4, 6, 4, 6, 5, 7, 6,
+ 8, 7, 8, 7, 8, 8, 9, 8, 8, 9, 8, 9, 9, 8, 8, 9,
+ 9, 9, 8, 9, 9, 9, 9, 9, 8, 9, 9, 9, 9, 9, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
+ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8,
};
static static_codebook _huff_book_line_128x19_2sub3 = {
1.3 +4 -4 vorbis/lib/books/floor/line_128x19_class1.vqh
Index: line_128x19_class1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x19_class1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x19_class1.vqh 2001/12/12 09:45:48 1.2
+++ line_128x19_class1.vqh 2001/12/14 07:21:22 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x19_class1[] = {
- 1, 3, 3, 7, 8, 5, 5, 9, 9, 5, 5, 8,13,12,11,13,
- 8, 6, 6,12,13,11,11,13,12,10,10,14,14,13,14,14,
- 8, 5, 6, 9,12, 9, 9,11,13, 9, 9,12,13,13,14,14,
- 13,11,10,13,14,12,12,13,14,12,12,13,14,14,14,14,
+ 1, 2, 6,11, 8, 4, 7,14,15,11,12,17,17,17,17,17,
+ 8, 3, 7,11,10, 6, 9,14,15,13,14,17,17,17,17,17,
+ 14, 9,12,17,17,13,13,15,17,17,17,17,17,17,17,17,
+ 17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,
};
static static_codebook _huff_book_line_128x19_class1 = {
1.3 +4 -4 vorbis/lib/books/floor/line_128x19_class2.vqh
Index: line_128x19_class2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x19_class2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x19_class2.vqh 2001/12/12 09:45:48 1.2
+++ line_128x19_class2.vqh 2001/12/14 07:21:22 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x19_class2[] = {
- 2, 4, 3, 4, 8, 5, 5, 6, 8, 5, 4, 6,11, 9, 9,12,
- 7, 5, 4, 5,10, 7, 6, 8,10, 6, 6, 7,13,10, 9,11,
- 8, 6, 6, 7,10, 7, 7, 8,10, 7, 7, 7,12,10,10,11,
- 14,13,12,12,13,11,12,10,14,12,11,10,14,14,12,13,
+ 2, 3, 3,10, 7, 4, 4,10,10, 6, 7,13,17,17,16,16,
+ 7, 3, 4,11, 8, 4, 5,11,10, 6, 7,12,17,16,16,16,
+ 11, 8,10,14,11, 7, 8,13,13, 9, 9,15,17,17,16,17,
+ 17,17,17,17,17,17,17,16,17,17,17,17,17,17,17,16,
};
static static_codebook _huff_book_line_128x19_class2 = {
1.3 +4 -4 vorbis/lib/books/floor/line_128x7_0sub0.vqh
Index: line_128x7_0sub0.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x7_0sub0.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x7_0sub0.vqh 2001/12/12 09:45:49 1.2
+++ line_128x7_0sub0.vqh 2001/12/14 07:21:22 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x7_0sub0[] = {
- 4, 4, 4, 4, 5, 4, 4, 4, 5, 5, 5, 4, 5, 5, 5, 5,
- 5, 5, 6, 5, 6, 6, 6, 7, 6, 8, 6, 9, 7,10, 7,10,
- 7,13, 7,13, 8,13, 9,13, 9,13, 9,12,11,13,11,13,
- 12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,
+ 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5,
+ 5, 5, 6, 5, 6, 5, 6, 6, 6, 6, 7, 7, 7, 7, 7, 9,
+ 8,10, 8,13, 9,15, 9,14, 9,15, 9,13,10,15,10,13,
+ 10,13,11,12,13,13,14,15,15,15,15,15,15,15,15,15,
};
static static_codebook _huff_book_line_128x7_0sub0 = {
1.3 +1 -1 vorbis/lib/books/floor/line_128x7_1sub1.vqh
Index: line_128x7_1sub1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x7_1sub1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x7_1sub1.vqh 2001/12/12 09:45:49 1.2
+++ line_128x7_1sub1.vqh 2001/12/14 07:21:22 1.3
@@ -20,7 +20,7 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x7_1sub1[] = {
- 0, 3, 4, 3, 4, 2, 4, 2, 4,
+ 0, 3, 3, 3, 3, 3, 3, 3, 3,
};
static static_codebook _huff_book_line_128x7_1sub1 = {
1.3 +1 -1 vorbis/lib/books/floor/line_128x7_1sub2.vqh
Index: line_128x7_1sub2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x7_1sub2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x7_1sub2.vqh 2001/12/12 09:45:49 1.2
+++ line_128x7_1sub2.vqh 2001/12/14 07:21:22 1.3
@@ -20,7 +20,7 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x7_1sub2[] = {
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 3, 4, 5,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 3, 4, 3, 5,
4, 6, 5, 7, 6, 9, 6, 9, 8,
};
1.3 +3 -3 vorbis/lib/books/floor/line_128x7_1sub3.vqh
Index: line_128x7_1sub3.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x7_1sub3.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x7_1sub3.vqh 2001/12/12 09:45:49 1.2
+++ line_128x7_1sub3.vqh 2001/12/14 07:21:22 1.3
@@ -21,9 +21,9 @@
static long _huff_lengthlist_line_128x7_1sub3[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 4, 6, 4, 6, 5, 6,
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5,
- 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 7, 3, 7, 4, 7,
+ 5, 7, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
};
static static_codebook _huff_book_line_128x7_1sub3 = {
1.3 +1 -1 vorbis/lib/books/floor/line_128x7_2sub2.vqh
Index: line_128x7_2sub2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x7_2sub2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x7_2sub2.vqh 2001/12/12 09:45:49 1.2
+++ line_128x7_2sub2.vqh 2001/12/14 07:21:22 1.3
@@ -21,7 +21,7 @@
static long _huff_lengthlist_line_128x7_2sub2[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 4, 3, 4, 4,
- 5, 4, 5, 4, 6, 4, 7, 5, 7,
+ 4, 4, 5, 5, 5, 5, 6, 5, 6,
};
static static_codebook _huff_book_line_128x7_2sub2 = {
1.3 +3 -3 vorbis/lib/books/floor/line_128x7_2sub3.vqh
Index: line_128x7_2sub3.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x7_2sub3.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x7_2sub3.vqh 2001/12/12 09:45:49 1.2
+++ line_128x7_2sub3.vqh 2001/12/14 07:21:22 1.3
@@ -21,9 +21,9 @@
static long _huff_lengthlist_line_128x7_2sub3[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 4, 3, 6, 5,
- 6, 4, 6, 5, 8, 6, 8, 8, 9, 9, 9, 9, 8, 9, 9, 9,
- 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 3, 4, 4, 4, 4,
+ 4, 5, 5, 5, 6, 6, 6, 8, 7, 9, 7, 8, 8, 9, 8, 9,
+ 8,11,10,12,12,12,10,12,11,11,12,12,12,12,12,12,
};
static static_codebook _huff_book_line_128x7_2sub3 = {
1.3 +4 -4 vorbis/lib/books/floor/line_128x7_class1.vqh
Index: line_128x7_class1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x7_class1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x7_class1.vqh 2001/12/12 09:45:49 1.2
+++ line_128x7_class1.vqh 2001/12/14 07:21:23 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x7_class1[] = {
- 2, 3, 4,14,11, 9,11,14,13,10,12,13,13,13,13,13,
- 5, 2, 4,13,11, 8,13,13,12, 9,12,13,13,13,13,13,
- 7, 3, 4,13,10, 8,10,13,12,10,12,13,13,13,13,13,
- 13,12,11,13,13,13,13,13,13,13,13,13,13,13,13,13,
+ 2, 3, 4,14,12, 8, 8,15,12, 9, 9,15,15,15,15,15,
+ 5, 2, 4,13,11, 8, 9,15,12,10,12,15,15,15,15,15,
+ 5, 3, 5,13,11, 8, 8,15,14,11,12,15,15,15,15,15,
+ 14,11,12,15,14,14,14,15,15,15,15,15,15,15,15,15,
};
static static_codebook _huff_book_line_128x7_class1 = {
1.3 +4 -4 vorbis/lib/books/floor/line_128x7_class2.vqh
Index: line_128x7_class2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x7_class2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x7_class2.vqh 2001/12/12 09:45:49 1.2
+++ line_128x7_class2.vqh 2001/12/14 07:21:23 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x7_class2[] = {
- 9, 7, 8,10, 7, 5, 6, 9, 9, 7, 8, 9,13,13,13,12,
- 7, 5, 6, 8, 5, 2, 3, 6, 7, 4, 5, 8,13,10,10,13,
- 11, 7, 6, 9, 7, 4, 3, 6, 8, 5, 5, 8,11, 8, 8,13,
- 13,10,12,13,11, 9,11,13,10, 9,11,13,13,13,12,12,
+ 9, 7, 7,11, 8, 5, 5, 9, 9, 6, 6, 8,13,10, 9,12,
+ 8, 5, 5, 9, 5, 3, 3, 7, 7, 4, 4, 6,10, 7, 7, 9,
+ 9, 6, 6,10, 6, 4, 4, 7, 7, 4, 4, 7,13, 9, 7, 8,
+ 15,13,13,15,12, 9, 9,12,11, 9, 9,10,14,13,11,10,
};
static static_codebook _huff_book_line_128x7_class2 = {
1.3 +4 -4 vorbis/lib/books/floor/line_128x9_0sub0.vqh
Index: line_128x9_0sub0.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x9_0sub0.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x9_0sub0.vqh 2001/12/12 09:45:49 1.2
+++ line_128x9_0sub0.vqh 2001/12/14 07:21:23 1.3
@@ -20,10 +20,10 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x9_0sub0[] = {
- 4, 4, 4, 5, 4, 5, 4, 5, 4, 6, 4, 6, 4, 7, 4, 7,
- 5, 8, 5, 9, 5, 9, 5,11, 5,13, 6,13, 6,13, 6,13,
- 6,13, 6,13, 7,13, 7,13, 8,13, 8, 9, 8,10, 8,12,
- 8,10, 8, 9, 8, 9,11,13,13,13,13,13,12,12,12,12,
+ 4, 4, 4, 5, 4, 5, 4, 5, 4, 5, 4, 6, 4, 6, 4, 6,
+ 5, 7, 5, 7, 5, 7, 5, 7, 6, 7, 6, 8, 6, 9, 7, 9,
+ 7,11, 8,14, 8,15, 8,14, 8,13, 8,10, 9,11, 9,11,
+ 9,10,10,11,11,14,16,16,16,16,16,16,16,16,16,16,
};
static static_codebook _huff_book_line_128x9_0sub0 = {
1.3 +1 -1 vorbis/lib/books/floor/line_128x9_1sub1.vqh
Index: line_128x9_1sub1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x9_1sub1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x9_1sub1.vqh 2001/12/12 09:45:49 1.2
+++ line_128x9_1sub1.vqh 2001/12/14 07:21:23 1.3
@@ -20,7 +20,7 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x9_1sub1[] = {
- 0, 3, 3, 4, 2, 5, 2, 5, 3,
+ 0, 3, 3, 4, 3, 5, 2, 5, 2,
};
static static_codebook _huff_book_line_128x9_1sub1 = {
1.3 +2 -2 vorbis/lib/books/floor/line_128x9_1sub2.vqh
Index: line_128x9_1sub2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x9_1sub2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x9_1sub2.vqh 2001/12/12 09:45:49 1.2
+++ line_128x9_1sub2.vqh 2001/12/14 07:21:23 1.3
@@ -20,8 +20,8 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x9_1sub2[] = {
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 5, 2, 6, 3, 9,
- 3, 9, 4, 9, 4,10, 5,10, 7,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 5, 2, 6, 3, 8,
+ 3, 9, 4,10, 5,11, 5,11, 7,
};
static static_codebook _huff_book_line_128x9_1sub2 = {
1.3 +3 -3 vorbis/lib/books/floor/line_128x9_1sub3.vqh
Index: line_128x9_1sub3.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x9_1sub3.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x9_1sub3.vqh 2001/12/12 09:45:49 1.2
+++ line_128x9_1sub3.vqh 2001/12/14 07:21:23 1.3
@@ -21,9 +21,9 @@
static long _huff_lengthlist_line_128x9_1sub3[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 2, 6, 4, 6, 6, 6,
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
- 6, 6, 6, 6, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 5, 5,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 7, 2, 7, 3, 7,
+ 4, 7, 6, 7, 7, 7, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7,
+ 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 6, 6, 6,
};
static static_codebook _huff_book_line_128x9_1sub3 = {
1.3 +1 -1 vorbis/lib/books/floor/line_128x9_2sub1.vqh
Index: line_128x9_2sub1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x9_2sub1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x9_2sub1.vqh 2001/12/12 09:45:49 1.2
+++ line_128x9_2sub1.vqh 2001/12/14 07:21:23 1.3
@@ -20,7 +20,7 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x9_2sub1[] = {
- 0, 2, 3, 3, 3, 3, 4, 3, 4,
+ 0, 3, 3, 2, 3, 3, 4, 3, 4,
};
static static_codebook _huff_book_line_128x9_2sub1 = {
1.3 +2 -2 vorbis/lib/books/floor/line_128x9_2sub2.vqh
Index: line_128x9_2sub2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x9_2sub2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x9_2sub2.vqh 2001/12/12 09:45:49 1.2
+++ line_128x9_2sub2.vqh 2001/12/14 07:21:23 1.3
@@ -20,8 +20,8 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x9_2sub2[] = {
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 2, 5, 3, 5, 4,
- 6, 4, 7, 5, 8, 5, 9, 5, 9,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 3, 5, 3, 5, 3,
+ 6, 4, 7, 4, 8, 4, 9, 5, 9,
};
static static_codebook _huff_book_line_128x9_2sub2 = {
1.3 +3 -3 vorbis/lib/books/floor/line_128x9_2sub3.vqh
Index: line_128x9_2sub3.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x9_2sub3.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x9_2sub3.vqh 2001/12/12 09:45:49 1.2
+++ line_128x9_2sub3.vqh 2001/12/14 07:21:23 1.3
@@ -21,9 +21,9 @@
static long _huff_lengthlist_line_128x9_2sub3[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 3, 8, 3, 8, 3,
- 8, 3, 6, 3, 7, 4, 8, 4, 7, 5, 8, 6, 8, 7, 8,12,
- 12,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 2, 8, 3, 8, 3,
+ 7, 3, 7, 5, 8, 5, 9, 7,11, 8,10,12,13,13,11,13,
+ 13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,
};
static static_codebook _huff_book_line_128x9_2sub3 = {
1.3 +16 -16 vorbis/lib/books/floor/line_128x9_class1.vqh
Index: line_128x9_class1.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x9_class1.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x9_class1.vqh 2001/12/12 09:45:49 1.2
+++ line_128x9_class1.vqh 2001/12/14 07:21:23 1.3
@@ -20,22 +20,22 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x9_class1[] = {
- 3, 3, 3,11,13,11,12,13,13,13,10,13,13,13,13,13,
- 5, 2, 2,10,13,11,11,13,13,11, 8,11,13,13,13,13,
- 8, 5, 6,11,13,11,13,13,13,12,11,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,11,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,11,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,11,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,10,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,10,12,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,10,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,
+ 2, 3, 3,13,14,12, 9,16,15, 9,12,16,16,16,16,16,
+ 5, 2, 3,11,13,10, 8,13,15,11,11,13,16,16,16,16,
+ 7, 5, 5,10,12,10, 8,11,16,14,13,15,16,16,16,16,
+ 15,16,16,16,13,14,16,16,16,16,16,16,16,16,16,16,
+ 16,16,15,16,16,16,16,16,16,16,16,16,16,16,16,16,
+ 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
+ 16,16,16,16,16,15,16,16,16,16,16,16,16,16,16,16,
+ 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
+ 16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,
+ 16,16,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
+ 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
+ 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
+ 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
+ 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
+ 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
+ 15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,
};
static static_codebook _huff_book_line_128x9_class1 = {
1.3 +16 -16 vorbis/lib/books/floor/line_128x9_class2.vqh
Index: line_128x9_class2.vqh
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/books/floor/line_128x9_class2.vqh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- line_128x9_class2.vqh 2001/12/12 09:45:49 1.2
+++ line_128x9_class2.vqh 2001/12/14 07:21:23 1.3
@@ -20,22 +20,22 @@
#include "codebook.h"
static long _huff_lengthlist_line_128x9_class2[] = {
- 6, 5, 6, 8, 7, 5, 5, 6,11, 8, 7, 6,13,13,12,13,
- 7, 5, 5, 7, 7, 4, 5, 6,11, 6, 6, 6,13,13,13,13,
- 11, 7, 7,11,10, 6, 6, 8,11, 9, 8, 8,13,13,13,12,
- 13,13,13,13,13,13,13,12,13,13,12,11,13,13,13,13,
- 10, 7, 9, 9, 8, 5, 5, 6,10, 8, 7, 6,13,13,12,13,
- 9, 7, 7, 7, 7, 4, 5, 5,10, 7, 7, 6,13,13,13,13,
- 12, 9, 9,11,10, 6, 6, 9,10, 8, 7, 9,13,13,13,13,
- 13,13,13,13,13,13,12,13,13,13,10,12,13,13,13,13,
- 12, 9,10,10, 9, 7, 7, 7,12, 9, 9, 8,13,13,13,13,
- 11, 8, 9, 8, 9, 6, 6, 6,10, 8, 8, 8,13,13,13,13,
- 13,11,10,13,11, 8, 8,10,13, 9, 9,10,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,12,12,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,11,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,12,13,12,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,10,13,13,13,13,13,13,
- 13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,
+ 7, 6, 8,11, 8, 5, 6, 9,10, 8, 8,10,16,15,14,16,
+ 8, 5, 6, 9, 7, 4, 5, 9, 9, 6, 6,10,16,13,12,16,
+ 11, 8, 7, 9, 9, 7, 7,10,11, 8, 8,11,16,13,12,16,
+ 16,16,16,16,16,16,13,16,16,15,14,16,16,16,16,16,
+ 10, 7, 8,10, 7, 5, 5, 7,10, 6, 7, 8,14,12,12,13,
+ 9, 6, 7,10, 6, 4, 4, 7, 8, 5, 5, 7,13,10,10,10,
+ 11, 9, 9,11, 9, 6, 6, 9, 9, 6, 6,10,14,10, 9,11,
+ 16,16,15,16,16,13,13,16,15,12,13,16,16,16,16,16,
+ 12, 9,10,11,10, 7, 7, 8,11, 8, 7, 7,15,14,11,10,
+ 11, 8, 9,11, 9, 6, 6, 8, 9, 6, 5, 6,12,10, 8, 8,
+ 12,10,10,13,10, 7, 8,10, 9, 7, 6, 8,12,10, 7, 9,
+ 16,16,16,16,16,15,15,16,16,12,13,13,16,15,15,14,
+ 16,14,14,16,15,12,13,15,16,13,12,15,16,16,15,16,
+ 16,15,16,16,16,12,13,12,14,13,11,14,16,16,15,16,
+ 16,16,16,15,16,13,14,11,16,13,12,12,16,16,14,16,
+ 16,16,16,15,16,16,15,12,16,15,15,13,15,15,15,15,
};
static static_codebook _huff_book_line_128x9_class2 = {
1.3 +24 -21 vorbis/lib/modes/psych_44.h
Index: psych_44.h
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/modes/psych_44.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- psych_44.h 2001/12/12 09:45:55 1.2
+++ psych_44.h 2001/12/14 07:21:29 1.3
@@ -11,7 +11,7 @@
********************************************************************
function: key psychoacoustic settings for 44.1/48kHz
- last mod: $Id: psych_44.h,v 1.2 2001/12/12 09:45:55 xiphmont Exp $
+ last mod: $Id: psych_44.h,v 1.3 2001/12/14 07:21:29 xiphmont Exp $
********************************************************************/
@@ -496,28 +496,30 @@
{-20,-20,-20,-20,-20,-20,-20,-10, -6, -2, -3, -3, -1, -1, 0, 1, 2},
{-20,-20,-20,-20,-20,-20,-20,-10, -6, -3, -4, -4, -2, -1, 0, 0, 2},
- {-20,-20,-20,-20,-20,-20,-20,-14,-10, -6, -6, -6, -3, 0, 0, 1, 2},
- {-24,-24,-24,-24,-24,-24,-24,-18,-14, -8, -8, -6, -3, -2, -2, 0, 1},
- {-24,-24,-24,-24,-24,-24,-24,-18,-14, -8, -8, -6, -3, -2, -2, -1, 0},
- {-24,-24,-24,-24,-24,-24,-24,-18,-14, -8, -8, -8, -4, -3, -3, -2, -2},
- {-28,-28,-28,-28,-28,-26,-24,-18,-14,-10,-10,-10, -8, -7, -7, -6, -6},
- {-50,-50,-50,-50,-50,-50,-50,-48,-44,-40,-40,-40,-40,-40,-40,-40,-40},
+ {-20,-20,-20,-20,-20,-20,-20,-18,-10, -4, -6, -6, -3, -2, -2, -2, 0},
+ {-24,-24,-24,-24,-24,-24,-24,-18,-14, -8, -8, -8, -7, -7, -6, -6, -4},
+ {-24,-24,-24,-24,-24,-24,-24,-18,-14,-14,-16,-16,-14,-12,-10,-10, -8},
+
+ {-24,-24,-24,-24,-24,-24,-24,-20,-20,-20,-20,-20,-16,-16,-14,-14,-10},
+ {-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-30,-24,-24,-24,-24},
+ {-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-46},
};
static int _psy_noisebias_impulse[11][17]={
/*63 125 250 500 1k 2k 4k 8k 16k*/
- {-20,-20,-20,-20,-20,-18,-14,-10,-10, -2, 0, 0, 0, 0, 0, 3, 6},
+ {-20,-20,-20,-20,-20,-18,-14,-10,-10, -2, 2, 2, 2, 2, 2, 3, 6},
{-30,-30,-30,-30,-26,-22,-20,-14,-10, -4, -4, -4, -2, -2, -2, -2, 2},
{-30,-30,-30,-30,-26,-22,-20,-14,-10, -6, -6, -6, -4, -4, -4, -2, 0},
{-30,-30,-30,-30,-30,-24,-20,-14,-10, -6, -6, -6, -4, -4, -4, -2, -2},
- {-30,-30,-30,-30,-30,-24,-20,-14,-10, -6, -8, -8, -6, -6, -6, -2, -2},
+ {-30,-30,-30,-30,-30,-24,-20,-14,-10, -6, -8, -8, -6, -6, -6, -4, -2},
- {-30,-30,-30,-30,-26,-24,-20,-14,-10, -6, -6, -6, -3, 0, 0, 1, 2},
- {-34,-34,-34,-34,-30,-26,-24,-18,-14, -8, -8, -6, -3, -2, -2, 0, 1},
- {-34,-34,-34,-34,-30,-26,-24,-18,-14, -8, -8, -6, -3, -2, -2, -1, 0},
- {-34,-34,-34,-34,-30,-26,-24,-18,-14, -8, -8, -8, -4, -3, -3, -2, -2},
- {-34,-34,-34,-34,-30,-26,-24,-18,-14,-10,-10,-10, -8, -7, -7, -6, -6},
- {-50,-50,-50,-50,-50,-50,-50,-48,-44,-40,-40,-40,-40,-40,-40,-40,-40},
+ {-30,-30,-30,-30,-30,-30,-24,-20,-10,-12,-14,-14,-10, -9, -8, -6, -4},
+ {-34,-34,-34,-34,-30,-30,-24,-20,-14,-14,-16,-16,-14,-12,-10,-10, -8},
+ {-34,-34,-34,-34,-30,-30,-30,-24,-20,-20,-20,-20,-20,-18,-16,-16,-14},
+
+ {-34,-34,-34,-34,-30,-30,-30,-30,-30,-26,-26,-26,-26,-22,-20,-20,-16},
+ {-40,-40,-40,-40,-40,-40,-40,-40,-40,-36,-36,-36,-36,-36,-36,-30,-30},
+ {-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50},
};
static int _psy_noisebias_other[11][17]={
@@ -528,12 +530,13 @@
{-30,-30,-30,-30,-26,-22,-20,-14,-10, -4, -3, -3, -1, -1, 0, 1, 2},
{-30,-30,-30,-30,-26,-22,-20,-14,-10, -4, -4, -4, -2, -1, 0, 0, 2},
- {-30,-30,-30,-30,-26,-22,-20,-14,-10, -6, -6, -6, -3, 0, 0, 1, 2},
- {-34,-34,-34,-34,-30,-26,-24,-18,-14, -8, -8, -6, -3, -2, -2, 0, 1},
- {-34,-34,-34,-34,-30,-26,-24,-18,-14, -8, -8, -6, -3, -2, -2, -1, 0},
- {-34,-34,-34,-34,-30,-26,-24,-18,-14, -8, -8, -8, -4, -3, -3, -2, -2},
- {-34,-34,-34,-34,-30,-26,-24,-18,-14,-10,-10,-10, -8, -7, -7, -6, -6},
- {-50,-50,-50,-50,-50,-50,-50,-48,-44,-40,-40,-40,-40,-40,-40,-40,-40},
+ {-30,-30,-30,-30,-30,-30,-24,-20,-10, -4, -6, -6, -3, -2, -2, -2, 0},
+ {-34,-34,-34,-34,-30,-30,-24,-20,-14, -8, -8, -8, -7, -7, -6, -6, -4},
+ {-34,-34,-34,-34,-30,-30,-24,-20,-14,-14,-16,-16,-14,-12,-10,-10, -8},
+
+ {-34,-34,-34,-34,-30,-30,-30,-20,-20,-20,-20,-20,-16,-16,-14,-14,-10},
+ {-40,-40,-40,-40,-40,-40,-40,-30,-30,-30,-30,-30,-30,-24,-24,-24,-24},
+ {-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-50,-46},
};
static int _psy_noiseguards_short[33]={
1.3 +264 -5 vorbis/lib/modes/residue_44.h
Index: residue_44.h
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/modes/residue_44.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- residue_44.h 2001/12/12 09:45:55 1.2
+++ residue_44.h 2001/12/14 07:21:29 1.3
@@ -11,7 +11,7 @@
********************************************************************
function: toplevel residue templates for 32/44.1/48kHz
- last mod: $Id: residue_44.h,v 1.2 2001/12/12 09:45:55 xiphmont Exp $
+ last mod: $Id: residue_44.h,v 1.3 2001/12/14 07:21:29 xiphmont Exp $
********************************************************************/
@@ -78,7 +78,7 @@
};
-/* 0 4 42 1 2 4 8 16 56 +
+/* 0 8 42 1 2 4 8 16 56 +
0 0 0
0 1 2 3 4 5 6 7 8 9
@@ -93,7 +93,7 @@
{0},
{-1},
{9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999, 9999},
- { .5, 4.5, 42.5, 1.5, 2.5, 4.5, 8.5, 16.5, 56.5},
+ { .5, 8.5, 42.5, 1.5, 2.5, 4.5, 8.5, 16.5, 56.5},
{0},
{ 99, -1, -1, 99, 99, 99, 99, 99, 99}
};
@@ -171,6 +171,100 @@
#include "books/coupled/_44c4_s1_p9_1.vqh"
#include "books/coupled/_44c4_s1_p9_2.vqh"
+#include "books/coupled/_44c5_short.vqh"
+#include "books/coupled/_44c5_long.vqh"
+
+#include "books/coupled/_44c5_s0_p1_0.vqh"
+#include "books/coupled/_44c5_s0_p2_0.vqh"
+#include "books/coupled/_44c5_s0_p3_0.vqh"
+#include "books/coupled/_44c5_s0_p4_0.vqh"
+#include "books/coupled/_44c5_s0_p5_0.vqh"
+#include "books/coupled/_44c5_s0_p6_0.vqh"
+#include "books/coupled/_44c5_s0_p7_0.vqh"
+#include "books/coupled/_44c5_s0_p7_1.vqh"
+#include "books/coupled/_44c5_s0_p8_0.vqh"
+#include "books/coupled/_44c5_s0_p8_1.vqh"
+#include "books/coupled/_44c5_s0_p9_0.vqh"
+#include "books/coupled/_44c5_s0_p9_1.vqh"
+#include "books/coupled/_44c5_s0_p9_2.vqh"
+
+#include "books/coupled/_44c6_short.vqh"
+#include "books/coupled/_44c6_long.vqh"
+
+#include "books/coupled/_44c6_s0_p1_0.vqh"
+#include "books/coupled/_44c6_s0_p2_0.vqh"
+#include "books/coupled/_44c6_s0_p3_0.vqh"
+#include "books/coupled/_44c6_s0_p4_0.vqh"
+#include "books/coupled/_44c6_s0_p5_0.vqh"
+#include "books/coupled/_44c6_s0_p6_0.vqh"
+#include "books/coupled/_44c6_s0_p7_0.vqh"
+#include "books/coupled/_44c6_s0_p7_1.vqh"
+#include "books/coupled/_44c6_s0_p8_0.vqh"
+#include "books/coupled/_44c6_s0_p8_1.vqh"
+#include "books/coupled/_44c6_s0_p9_0.vqh"
+#include "books/coupled/_44c6_s0_p9_1.vqh"
+#include "books/coupled/_44c6_s0_p9_2.vqh"
+
+#include "books/coupled/_44c7_short.vqh"
+#include "books/coupled/_44c7_long.vqh"
+
+#include "books/coupled/_44c7_s0_p1_0.vqh"
+#include "books/coupled/_44c7_s0_p1_1.vqh"
+#include "books/coupled/_44c7_s0_p2_0.vqh"
+#include "books/coupled/_44c7_s0_p2_1.vqh"
+#include "books/coupled/_44c7_s0_p3_0.vqh"
+#include "books/coupled/_44c7_s0_p4_0.vqh"
+#include "books/coupled/_44c7_s0_p5_0.vqh"
+#include "books/coupled/_44c7_s0_p6_0.vqh"
+#include "books/coupled/_44c7_s0_p6_1.vqh"
+#include "books/coupled/_44c7_s0_p7_0.vqh"
+#include "books/coupled/_44c7_s0_p7_1.vqh"
+#include "books/coupled/_44c7_s0_p8_0.vqh"
+#include "books/coupled/_44c7_s0_p8_1.vqh"
+#include "books/coupled/_44c7_s0_p9_0.vqh"
+#include "books/coupled/_44c7_s0_p9_1.vqh"
+#include "books/coupled/_44c7_s0_p9_2.vqh"
+
+#include "books/coupled/_44c8_short.vqh"
+#include "books/coupled/_44c8_long.vqh"
+
+#include "books/coupled/_44c8_s0_p1_0.vqh"
+#include "books/coupled/_44c8_s0_p1_1.vqh"
+#include "books/coupled/_44c8_s0_p2_0.vqh"
+#include "books/coupled/_44c8_s0_p2_1.vqh"
+#include "books/coupled/_44c8_s0_p3_0.vqh"
+#include "books/coupled/_44c8_s0_p4_0.vqh"
+#include "books/coupled/_44c8_s0_p5_0.vqh"
+#include "books/coupled/_44c8_s0_p6_0.vqh"
+#include "books/coupled/_44c8_s0_p6_1.vqh"
+#include "books/coupled/_44c8_s0_p7_0.vqh"
+#include "books/coupled/_44c8_s0_p7_1.vqh"
+#include "books/coupled/_44c8_s0_p8_0.vqh"
+#include "books/coupled/_44c8_s0_p8_1.vqh"
+#include "books/coupled/_44c8_s0_p9_0.vqh"
+#include "books/coupled/_44c8_s0_p9_1.vqh"
+#include "books/coupled/_44c8_s0_p9_2.vqh"
+
+#include "books/coupled/_44c9_short.vqh"
+#include "books/coupled/_44c9_long.vqh"
+
+#include "books/coupled/_44c9_s0_p1_0.vqh"
+#include "books/coupled/_44c9_s0_p1_1.vqh"
+#include "books/coupled/_44c9_s0_p2_0.vqh"
+#include "books/coupled/_44c9_s0_p2_1.vqh"
+#include "books/coupled/_44c9_s0_p3_0.vqh"
+#include "books/coupled/_44c9_s0_p4_0.vqh"
+#include "books/coupled/_44c9_s0_p5_0.vqh"
+#include "books/coupled/_44c9_s0_p6_0.vqh"
+#include "books/coupled/_44c9_s0_p6_1.vqh"
+#include "books/coupled/_44c9_s0_p7_0.vqh"
+#include "books/coupled/_44c9_s0_p7_1.vqh"
+#include "books/coupled/_44c9_s0_p8_0.vqh"
+#include "books/coupled/_44c9_s0_p8_1.vqh"
+#include "books/coupled/_44c9_s0_p9_0.vqh"
+#include "books/coupled/_44c9_s0_p9_1.vqh"
+#include "books/coupled/_44c9_s0_p9_2.vqh"
+
/* residue backfill is entered in the template array as if stereo
backfill is not in use. It's up to vorbisenc to make the
appropriate index adjustment */
@@ -329,12 +423,177 @@
// {&44c0_s4_r8_0,&44c0_s3_r8_1},{&44c0_s4_r9_0,&44c0_s3_r9_1}}, /* 18dB (8.5) stereo */
{{0}}, /* 24dB (16.5) stereo */
},
- }
+ },
-};
+ /* mode 5; 160-ish */
+ {{&_residue_44_mid, &_residue_44_mid},
+ {&_huff_book__44c5_short,&_huff_book__44c5_long},
+ { {{0},{0,0,&_44c5_s0_p1_0},{0,0,&_44c5_s0_p2_0},{0,0,&_44c5_s0_p3_0},
+ {0,0,&_44c5_s0_p4_0},{0,0,&_44c5_s0_p5_0},{0,0,&_44c5_s0_p6_0},
+ {&_44c5_s0_p7_0,&_44c5_s0_p7_1},{&_44c5_s0_p8_0,&_44c5_s0_p8_1},
+ {&_44c5_s0_p9_0,&_44c5_s0_p9_1,&_44c5_s0_p9_2}},
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ { {0}, /* lossless stereo */
+ {0}, /* 6dB (2.5) stereo */
+ {0}, /* 12dB (4.5) stereo */
+ {0}, /* 18dB (8.5) stereo */
+ {0},
+ //{0,0,0,0,0,0,0,0,&44c0_s4_s8,&44c0_s4_s9},/* 24dB (16.5) stereo */
+ },
+ { {{0}}, /* lossless stereo */
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ //{{&44c0_s0_r0_0,&44c0_s0_r0_1},{&44c0_s0_r1_0,&44c0_s0_r1_1},
+ // {&44c0_s0_r2_0,&44c0_s0_r2_1},{&44c0_s0_r3_0,&44c0_s0_r3_1},
+ // {&44c0_s0_r4_0,&44c0_s0_r4_1},{&44c0_s1_r5_0,&44c0_s1_r5_1},
+ // {&44c0_s1_r6_0,&44c0_s1_r6_1},{&44c0_s2_r7_0,&44c0_s2_r7_1},
+ // {&44c0_s4_r8_0,&44c0_s3_r8_1},{&44c0_s4_r9_0,&44c0_s3_r9_1}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ },
+ /* mode 6; 192-ish */
+ {{&_residue_44_mid, &_residue_44_mid},
+ {&_huff_book__44c6_short,&_huff_book__44c6_long},
+ { {{0},{0,0,&_44c6_s0_p1_0},{0,0,&_44c6_s0_p2_0},{0,0,&_44c6_s0_p3_0},
+ {0,0,&_44c6_s0_p4_0},{0,0,&_44c6_s0_p5_0},{0,0,&_44c6_s0_p6_0},
+ {&_44c6_s0_p7_0,&_44c6_s0_p7_1},{&_44c6_s0_p8_0,&_44c6_s0_p8_1},
+ {&_44c6_s0_p9_0,&_44c6_s0_p9_1,&_44c6_s0_p9_2}},
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ { {0}, /* lossless stereo */
+ {0}, /* 6dB (2.5) stereo */
+ {0}, /* 12dB (4.5) stereo */
+ {0}, /* 18dB (8.5) stereo */
+ {0},
+ //{0,0,0,0,0,0,0,0,&44c0_s4_s8,&44c0_s4_s9},/* 24dB (16.5) stereo */
+ },
+ { {{0}}, /* lossless stereo */
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ //{{&44c0_s0_r0_0,&44c0_s0_r0_1},{&44c0_s0_r1_0,&44c0_s0_r1_1},
+ // {&44c0_s0_r2_0,&44c0_s0_r2_1},{&44c0_s0_r3_0,&44c0_s0_r3_1},
+ // {&44c0_s0_r4_0,&44c0_s0_r4_1},{&44c0_s1_r5_0,&44c0_s1_r5_1},
+ // {&44c0_s1_r6_0,&44c0_s1_r6_1},{&44c0_s2_r7_0,&44c0_s2_r7_1},
+ // {&44c0_s4_r8_0,&44c0_s3_r8_1},{&44c0_s4_r9_0,&44c0_s3_r9_1}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ },
+
+ /* mode 7; 224-ish */
+ {{&_residue_44_high, &_residue_44_high},
+ {&_huff_book__44c7_short,&_huff_book__44c7_long},
+ { {{0},{&_44c7_s0_p1_0,&_44c7_s0_p1_1},
+ {&_44c7_s0_p2_0,&_44c7_s0_p2_1},
+ {0,0,&_44c6_s0_p3_0},{0,0,&_44c6_s0_p4_0},{0,0,&_44c6_s0_p5_0},
+ {&_44c7_s0_p6_0,&_44c7_s0_p6_1},
+ {&_44c7_s0_p7_0,&_44c7_s0_p7_1},
+ {&_44c7_s0_p8_0,&_44c7_s0_p8_1},
+ {&_44c7_s0_p9_0,&_44c7_s0_p9_1,&_44c7_s0_p9_2}},
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ { {0}, /* lossless stereo */
+ {0}, /* 6dB (2.5) stereo */
+ {0}, /* 12dB (4.5) stereo */
+ {0}, /* 18dB (8.5) stereo */
+ {0},
+ //{0,0,0,0,0,0,0,0,&44c0_s4_s8,&44c0_s4_s9},/* 24dB (16.5) stereo */
+ },
+ { {{0}}, /* lossless stereo */
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ //{{&44c0_s0_r0_0,&44c0_s0_r0_1},{&44c0_s0_r1_0,&44c0_s0_r1_1},
+ // {&44c0_s0_r2_0,&44c0_s0_r2_1},{&44c0_s0_r3_0,&44c0_s0_r3_1},
+ // {&44c0_s0_r4_0,&44c0_s0_r4_1},{&44c0_s1_r5_0,&44c0_s1_r5_1},
+ // {&44c0_s1_r6_0,&44c0_s1_r6_1},{&44c0_s2_r7_0,&44c0_s2_r7_1},
+ // {&44c0_s4_r8_0,&44c0_s3_r8_1},{&44c0_s4_r9_0,&44c0_s3_r9_1}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ },
+ /* mode 8; 256-ish */
+ {{&_residue_44_high, &_residue_44_high},
+ {&_huff_book__44c8_short,&_huff_book__44c8_long},
+ { {{0},{&_44c8_s0_p1_0,&_44c8_s0_p1_1},
+ {&_44c8_s0_p2_0,&_44c8_s0_p2_1},
+ {0,0,&_44c6_s0_p3_0},{0,0,&_44c6_s0_p4_0},{0,0,&_44c6_s0_p5_0},
+ {&_44c8_s0_p6_0,&_44c8_s0_p6_1},
+ {&_44c8_s0_p7_0,&_44c8_s0_p7_1},
+ {&_44c8_s0_p8_0,&_44c8_s0_p8_1},
+ {&_44c8_s0_p9_0,&_44c8_s0_p9_1,&_44c8_s0_p9_2}},
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ { {0}, /* lossless stereo */
+ {0}, /* 6dB (2.5) stereo */
+ {0}, /* 12dB (4.5) stereo */
+ {0}, /* 18dB (8.5) stereo */
+ {0},
+ //{0,0,0,0,0,0,0,0,&44c0_s4_s8,&44c0_s4_s9},/* 24dB (16.5) stereo */
+ },
+ { {{0}}, /* lossless stereo */
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ //{{&44c0_s0_r0_0,&44c0_s0_r0_1},{&44c0_s0_r1_0,&44c0_s0_r1_1},
+ // {&44c0_s0_r2_0,&44c0_s0_r2_1},{&44c0_s0_r3_0,&44c0_s0_r3_1},
+ // {&44c0_s0_r4_0,&44c0_s0_r4_1},{&44c0_s1_r5_0,&44c0_s1_r5_1},
+ // {&44c0_s1_r6_0,&44c0_s1_r6_1},{&44c0_s2_r7_0,&44c0_s2_r7_1},
+ // {&44c0_s4_r8_0,&44c0_s3_r8_1},{&44c0_s4_r9_0,&44c0_s3_r9_1}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ },
+ /* mode 9; 320-ish */
+ {{&_residue_44_high, &_residue_44_high},
+ {&_huff_book__44c9_short,&_huff_book__44c9_long},
+ { {{0},{&_44c9_s0_p1_0,&_44c9_s0_p1_1},
+ {&_44c9_s0_p2_0,&_44c9_s0_p2_1},
+ {0,0,&_44c6_s0_p3_0},{0,0,&_44c6_s0_p4_0},{0,0,&_44c6_s0_p5_0},
+ {&_44c9_s0_p6_0,&_44c9_s0_p6_1},
+ {&_44c9_s0_p7_0,&_44c9_s0_p7_1},
+ {&_44c9_s0_p8_0,&_44c9_s0_p8_1},
+ {&_44c9_s0_p9_0,&_44c9_s0_p9_1,&_44c9_s0_p9_2}},
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ { {0}, /* lossless stereo */
+ {0}, /* 6dB (2.5) stereo */
+ {0}, /* 12dB (4.5) stereo */
+ {0}, /* 18dB (8.5) stereo */
+ {0},
+ //{0,0,0,0,0,0,0,0,&44c0_s4_s8,&44c0_s4_s9},/* 24dB (16.5) stereo */
+ },
+ { {{0}}, /* lossless stereo */
+ {{0}}, /* 6dB (2.5) stereo */
+ {{0}}, /* 12dB (4.5) stereo */
+ {{0}}, /* 18dB (8.5) stereo */
+ //{{&44c0_s0_r0_0,&44c0_s0_r0_1},{&44c0_s0_r1_0,&44c0_s0_r1_1},
+ // {&44c0_s0_r2_0,&44c0_s0_r2_1},{&44c0_s0_r3_0,&44c0_s0_r3_1},
+ // {&44c0_s0_r4_0,&44c0_s0_r4_1},{&44c0_s1_r5_0,&44c0_s1_r5_1},
+ // {&44c0_s1_r6_0,&44c0_s1_r6_1},{&44c0_s2_r7_0,&44c0_s2_r7_1},
+ // {&44c0_s4_r8_0,&44c0_s3_r8_1},{&44c0_s4_r9_0,&44c0_s3_r9_1}}, /* 18dB (8.5) stereo */
+ {{0}}, /* 24dB (16.5) stereo */
+ },
+ }
+};
1.3 +1 -1 vorbis/vq/44c3_s2.vqs
Index: 44c3_s2.vqs
===================================================================
RCS file: /usr/local/cvsroot/vorbis/vq/44c3_s2.vqs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- 44c3_s2.vqs 2001/12/12 09:45:56 1.2
+++ 44c3_s2.vqs 2001/12/14 07:21:29 1.3
@@ -38,7 +38,7 @@
:_s1_p5_0 res_long_part5_it0.vqd, 4, nonseq cull, 0 +- 1
:_s2_p6_0 res_long_part6_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4
-:_s2_p7_0 res_long_part7_it0.vqd, 2, nonseq, 0 +- 67 134 201
+:_s2_p7_0 res_long_part7_it0.vqd, 2, nonseq, 0 +- 67 134 201 268 335 402
+_s2_p7_1, 2, nonseq, 0 +- 3 6 9 12 15 18 21 24 27 30 33
+_s2_p7_2, 4, nonseq, 0 +- 1
1.3 +1 -1 vorbis/vq/44c4_s1.vqs
Index: 44c4_s1.vqs
===================================================================
RCS file: /usr/local/cvsroot/vorbis/vq/44c4_s1.vqs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- 44c4_s1.vqs 2001/12/12 09:45:56 1.2
+++ 44c4_s1.vqs 2001/12/14 07:21:29 1.3
@@ -7,7 +7,7 @@
haux _44c4_short.vqd 0,16,2
>_44c4 noninterleaved
-haux _44c4_long.vqd 0,60,2
+haux _44c4_long.vqd 0,64,2
#iter 0
1.1 vorbis/vq/44c5_s0.vqs
Index: 44c5_s0.vqs
===================================================================
cp resaux_short.vqd _44c5_short.vqd
cp resaux_long.vqd _44c5_long.vqd
GO
>_44c5s noninterleaved
haux _44c5_short.vqd 0,16,2
>_44c5 noninterleaved
haux _44c5_long.vqd 0,64,2
#iter 0
# 0 1 1 2 2 4 4 16 42 +
# 0 0 0
# 0 1 2 3 4 5 6 7 8 9
# 1 . . .
# 2 . . .
# 4 . . . . . . .
:_s0_p1_0 res_long_part1_it0.vqd, 4, nonseq cull, 0 +- 1 2
:_s0_p2_0 res_long_part2_it0.vqd, 4, nonseq cull, 0 +- 1 2
:_s0_p3_0 res_long_part3_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4
:_s0_p4_0 res_long_part4_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4
:_s0_p5_0 res_long_part5_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7 8
:_s0_p6_0 res_long_part6_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7 8
:_s0_p7_0 res_long_part7_it0.vqd, 2, nonseq cull, 0 +- 5 10 15 20 25 30
+_s0_p7_1, 2, nonseq cull, 0 +- 1 2
:_s0_p8_0 res_long_part8_it0.vqd, 2, nonseq cull, 0 +- 13 26 39 52 65 78
+_s0_p8_1, 2, nonseq cull, 0 +- 1 2 3 4 5 6
:_s0_p9_0 res_long_part9_it0.vqd, 2, nonseq, 0 +- 221 442 663 884 1005 1226 1447
+_s0_p9_1, 2, nonseq, 0 +- 13 26 39 52 65 78 91 104
+_s0_p9_2, 2, nonseq, 0 +- 1 2 3 4 5 6
1.1 vorbis/vq/44c6_s0.vqs
Index: 44c6_s0.vqs
===================================================================
cp resaux_short.vqd _44c6_short.vqd
cp resaux_long.vqd _44c6_long.vqd
GO
>_44c6s noninterleaved
haux _44c6_short.vqd 0,16,2
>_44c6 noninterleaved
haux _44c6_long.vqd 0,64,2
#iter 0
# 0 1 1 2 2 4 4 16 42 +
# 0 0 0
# 0 1 2 3 4 5 6 7 8 9
# 1 . . .
# 2 . . .
# 4 . . . . . . .
:_s0_p1_0 res_long_part1_it0.vqd, 4, nonseq cull, 0 +- 1 2
:_s0_p2_0 res_long_part2_it0.vqd, 4, nonseq cull, 0 +- 1 2
:_s0_p3_0 res_long_part3_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4
:_s0_p4_0 res_long_part4_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4
:_s0_p5_0 res_long_part5_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7 8
:_s0_p6_0 res_long_part6_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7 8
:_s0_p7_0 res_long_part7_it0.vqd, 2, nonseq cull, 0 +- 5 10 15 20 25 30
+_s0_p7_1, 2, nonseq cull, 0 +- 1 2
:_s0_p8_0 res_long_part8_it0.vqd, 2, nonseq cull, 0 +- 13 26 39 52 65 78
+_s0_p8_1, 2, nonseq cull, 0 +- 1 2 3 4 5 6
:_s0_p9_0 res_long_part9_it0.vqd, 2, nonseq, 0 +- 637 1274 1911 2548
+_s0_p9_1, 2, nonseq, 0 +- 49 98 147 196 245 294
+_s0_p9_2, 1, nonseq, 0 +- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
1.1 vorbis/vq/44c7_s0.vqs
Index: 44c7_s0.vqs
===================================================================
cp resaux_short.vqd _44c7_short.vqd
cp resaux_long.vqd _44c7_long.vqd
GO
>_44c7s noninterleaved
haux _44c7_short.vqd 0,16,2
>_44c7 noninterleaved
haux _44c7_long.vqd 0,64,2
#iter 0
# 0 8 42 1 2 4 8 16 56 +
# 0 0 0
# 0 1 2 3 4 5 6 7 8 9
# 1 . . . . . .
# 2 . . . . . .
# 4 . . . .
:_s0_p1_0 res_long_part1_it0.vqd, 2, nonseq cull, 0 +- 3 6 19 12 15
+_s0_p1_1, 2, nonseq cull, 0 +- 1
:_s0_p2_0 res_long_part2_it0.vqd, 2, nonseq cull, 0 +- 13 26 39 52 65 78
+_s0_p2_1, 2, nonseq cull, 0 +- 1 2 3 4 5 6
:_s0_p3_0 res_long_part3_it0.vqd, 4, nonseq cull, 0 +- 1 2
:_s0_p4_0 res_long_part4_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4
:_s0_p5_0 res_long_part5_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7 8
:_s0_p6_0 res_long_part6_it0.vqd, 2, nonseq cull, 0 +- 3 6 19 12 15
+_s0_p6_1, 2, nonseq cull, 0 +- 1
:_s0_p7_0 res_long_part7_it0.vqd, 2, nonseq cull, 0 +- 5 10 15 20 25 30
+_s0_p7_1, 2, nonseq cull, 0 +- 1 2
:_s0_p8_0 res_long_part8_it0.vqd, 2, nonseq cull, 0 +- 15 30 45 60 75 90 105
+_s0_p8_1, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7
:_s0_p9_0 res_long_part9_it0.vqd, 2, nonseq, 0 +- 637 1274 1911 2548
+_s0_p9_1, 2, nonseq, 0 +- 49 98 147 196 245 294
+_s0_p9_2, 1, nonseq, 0 +- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
1.1 vorbis/vq/44c8_s0.vqs
Index: 44c8_s0.vqs
===================================================================
cp resaux_short.vqd _44c8_short.vqd
cp resaux_long.vqd _44c8_long.vqd
GO
>_44c8s noninterleaved
haux _44c8_short.vqd 0,16,2
>_44c8 noninterleaved
haux _44c8_long.vqd 0,64,2
#iter 0
# 0 8 42 1 2 4 8 16 56 +
# 0 0 0
# 0 1 2 3 4 5 6 7 8 9
# 1 . . . . . .
# 2 . . . . . .
# 4 . . . .
:_s0_p1_0 res_long_part1_it0.vqd, 2, nonseq cull, 0 +- 3 6 19 12 15
+_s0_p1_1, 2, nonseq cull, 0 +- 1
:_s0_p2_0 res_long_part2_it0.vqd, 2, nonseq cull, 0 +- 13 26 39 52 65 78
+_s0_p2_1, 2, nonseq cull, 0 +- 1 2 3 4 5 6
:_s0_p3_0 res_long_part3_it0.vqd, 4, nonseq cull, 0 +- 1 2
:_s0_p4_0 res_long_part4_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4
:_s0_p5_0 res_long_part5_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7 8
:_s0_p6_0 res_long_part6_it0.vqd, 2, nonseq cull, 0 +- 3 6 19 12 15
+_s0_p6_1, 2, nonseq cull, 0 +- 1
:_s0_p7_0 res_long_part7_it0.vqd, 2, nonseq cull, 0 +- 5 10 15 20 25 30
+_s0_p7_1, 2, nonseq cull, 0 +- 1 2
:_s0_p8_0 res_long_part8_it0.vqd, 2, nonseq cull, 0 +- 15 30 45 60 75 90 105
+_s0_p8_1, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7
:_s0_p9_0 res_long_part9_it0.vqd, 2, nonseq, 0 +- 637 1274 1911 2548 3185
+_s0_p9_1, 2, nonseq, 0 +- 49 98 147 196 245 294
+_s0_p9_2, 1, nonseq, 0 +- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
1.1 vorbis/vq/44c9_s0.vqs
Index: 44c9_s0.vqs
===================================================================
cp resaux_short.vqd _44c9_short.vqd
cp resaux_long.vqd _44c9_long.vqd
GO
>_44c9s noninterleaved
haux _44c9_short.vqd 0,16,2
>_44c9 noninterleaved
haux _44c9_long.vqd 0,64,2
#iter 0
# 0 8 42 1 2 4 8 16 56 +
# 0 0 0
# 0 1 2 3 4 5 6 7 8 9
# 1 . . . . . .
# 2 . . . . . .
# 4 . . . .
:_s0_p1_0 res_long_part1_it0.vqd, 2, nonseq cull, 0 +- 3 6 19 12 15
+_s0_p1_1, 2, nonseq cull, 0 +- 1
:_s0_p2_0 res_long_part2_it0.vqd, 2, nonseq cull, 0 +- 13 26 39 52 65 78
+_s0_p2_1, 2, nonseq cull, 0 +- 1 2 3 4 5 6
:_s0_p3_0 res_long_part3_it0.vqd, 4, nonseq cull, 0 +- 1 2
:_s0_p4_0 res_long_part4_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4
:_s0_p5_0 res_long_part5_it0.vqd, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7 8
:_s0_p6_0 res_long_part6_it0.vqd, 2, nonseq cull, 0 +- 3 6 19 12 15
+_s0_p6_1, 2, nonseq cull, 0 +- 1
:_s0_p7_0 res_long_part7_it0.vqd, 2, nonseq cull, 0 +- 5 10 15 20 25 30
+_s0_p7_1, 2, nonseq cull, 0 +- 1 2
:_s0_p8_0 res_long_part8_it0.vqd, 2, nonseq cull, 0 +- 15 30 45 60 75 90 105
+_s0_p8_1, 2, nonseq cull, 0 +- 1 2 3 4 5 6 7
:_s0_p9_0 res_long_part9_it0.vqd, 2, nonseq, 0 +- 1863 3726 5589 7452 9315 11178 13041 14904 16767 18630 20493
+_s0_p9_1, 2, nonseq, 0 +- 81 162 243 324 405 486 567 648 729 810 891
+_s0_p9_2, 1, nonseq, 0 +- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list