123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- /********************************************************************
- * *
- * 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-2000 *
- * by Monty <monty@xiph.org> and The XIPHOPHORUS Company *
- * http://www.xiph.org/ *
- * *
- ********************************************************************
- function: residue backend 0 implementation
- last mod: $Id: res0.c,v 1.8.4.6 2000/05/08 08:25:43 xiphmont Exp $
- ********************************************************************/
- /* Slow, slow, slow, simpleminded and did I mention it was slow? The
- encode/decode loops are coded for clarity and performance is not
- yet even a nagging little idea lurking in the shadows. Oh and BTW,
- it's slow. */
- #include <stdlib.h>
- #include <string.h>
- #include <math.h>
- #include <stdio.h>
- #include "vorbis/codec.h"
- #include "bitwise.h"
- #include "registry.h"
- #include "bookinternal.h"
- #include "sharedbook.h"
- #include "misc.h"
- typedef struct {
- vorbis_info_residue0 *info;
-
- int parts;
- codebook *phrasebook;
- codebook ***partbooks;
- int partvals;
- int **decodemap;
- } vorbis_look_residue0;
- void free_info(vorbis_info_residue *i){
- if(i){
- memset(i,0,sizeof(vorbis_info_residue0));
- free(i);
- }
- }
- void free_look(vorbis_look_residue *i){
- int j;
- if(i){
- vorbis_look_residue0 *look=(vorbis_look_residue0 *)i;
- for(j=0;j<look->parts;j++)
- if(look->partbooks[j])free(look->partbooks[j]);
- free(look->partbooks);
- for(j=0;j<look->partvals;j++)
- free(look->decodemap[j]);
- free(look->decodemap);
- memset(i,0,sizeof(vorbis_look_residue0));
- free(i);
- }
- }
- void pack(vorbis_info_residue *vr,oggpack_buffer *opb){
- vorbis_info_residue0 *info=(vorbis_info_residue0 *)vr;
- int j,acc=0;
- _oggpack_write(opb,info->begin,24);
- _oggpack_write(opb,info->end,24);
- _oggpack_write(opb,info->grouping-1,24); /* residue vectors to group and
- code with a partitioned book */
- _oggpack_write(opb,info->partitions-1,6); /* possible partition choices */
- _oggpack_write(opb,info->groupbook,8); /* group huffman book */
- for(j=0;j<info->partitions;j++){
- _oggpack_write(opb,info->secondstages[j],4); /* zero *is* a valid choice */
- acc+=info->secondstages[j];
- }
- for(j=0;j<acc;j++)
- _oggpack_write(opb,info->booklist[j],8);
- }
- /* vorbis_info is for range checking */
- vorbis_info_residue *unpack(vorbis_info *vi,oggpack_buffer *opb){
- int j,acc=0;
- vorbis_info_residue0 *info=calloc(1,sizeof(vorbis_info_residue0));
- info->begin=_oggpack_read(opb,24);
- info->end=_oggpack_read(opb,24);
- info->grouping=_oggpack_read(opb,24)+1;
- info->partitions=_oggpack_read(opb,6)+1;
- info->groupbook=_oggpack_read(opb,8);
- for(j=0;j<info->partitions;j++){
- acc+=info->secondstages[j]=_oggpack_read(opb,4);
- }
- for(j=0;j<acc;j++)
- info->booklist[j]=_oggpack_read(opb,8);
- if(info->groupbook>=vi->books)goto errout;
- for(j=0;j<acc;j++)
- if(info->booklist[j]>=vi->books)goto errout;
- return(info);
- errout:
- free_info(info);
- return(NULL);
- }
- vorbis_look_residue *look (vorbis_dsp_state *vd,vorbis_info_mode *vm,
- vorbis_info_residue *vr){
- vorbis_info_residue0 *info=(vorbis_info_residue0 *)vr;
- vorbis_look_residue0 *look=calloc(1,sizeof(vorbis_look_residue0));
- int j,k,acc=0;
- int dim;
- look->info=info;
- look->parts=info->partitions;
- look->phrasebook=vd->fullbooks+info->groupbook;
- dim=look->phrasebook->dim;
- look->partbooks=calloc(look->parts,sizeof(codebook **));
- for(j=0;j<look->parts;j++){
- int stages=info->secondstages[j];
- if(stages){
- look->partbooks[j]=malloc(stages*sizeof(codebook *));
- for(k=0;k<stages;k++)
- look->partbooks[j][k]=vd->fullbooks+info->booklist[acc++];
- }
- }
- look->partvals=rint(pow(look->parts,dim));
- look->decodemap=malloc(look->partvals*sizeof(int *));
- for(j=0;j<look->partvals;j++){
- long val=j;
- long mult=look->partvals/look->parts;
- look->decodemap[j]=malloc(dim*sizeof(int));
- for(k=0;k<dim;k++){
- long deco=val/mult;
- val-=deco*mult;
- mult/=look->parts;
- look->decodemap[j][k]=deco;
- }
- }
- return(look);
- }
- /* classify by max quantized amplitude only */
- static int _testhack(double *vec,int n,vorbis_look_residue0 *look){
- vorbis_info_residue0 *info=look->info;
- double max=0.;
- int i;
-
- for(i=0;i<n;i++)
- if(fabs(vec[i])>max)max=fabs(vec[i]);
-
- for(i=0;i<look->parts-1;i++)
- if(max>=info->ampmax[i])
- break;
- return(i);
- }
- static int _encodepart(oggpack_buffer *opb,double *vec, int n,
- int stages, codebook **books){
- int i,j,bits=0;
- for(j=0;j<stages;j++){
- int dim=books[j]->dim;
- int step=n/dim;
- for(i=0;i<step;i++)
- bits+=vorbis_book_encodevs(books[j],vec+i,opb,step,0);
-
- }
- return(bits);
- }
- static int _decodepart(oggpack_buffer *opb,double *work,double *vec, int n,
- int stages, codebook **books){
- int i,j;
-
- memset(work,0,sizeof(double)*n);
- for(j=0;j<stages;j++){
- int dim=books[j]->dim;
- int step=n/dim;
- for(i=0;i<step;i++)
- vorbis_book_decodevs(books[j],work+i,opb,step,0);
- }
-
- for(i=0;i<n;i++)
- vec[i]*=work[i];
-
- return(0);
- }
- int forward(vorbis_block *vb,vorbis_look_residue *vl,
- double **in,int ch){
- long i,j,k,l;
- vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl;
- vorbis_info_residue0 *info=look->info;
- /* move all this setup out later */
- int samples_per_partition=info->grouping;
- int possible_partitions=info->partitions;
- int partitions_per_word=look->phrasebook->dim;
- int n=info->end-info->begin;
- long phrasebits=0,resbitsT=0;
- long *resbits=alloca(sizeof(long)*possible_partitions);
- long *resvals=alloca(sizeof(long)*possible_partitions);
- int partvals=n/samples_per_partition;
- int partwords=(partvals+partitions_per_word-1)/partitions_per_word;
- long **partword=_vorbis_block_alloc(vb,ch*sizeof(long *));
- partvals=partwords*partitions_per_word;
- /* we find the patition type for each partition of each
- channel. We'll go back and do the interleaved encoding in a
- bit. For now, clarity */
-
- memset(resbits,0,sizeof(long)*possible_partitions);
- memset(resvals,0,sizeof(long)*possible_partitions);
- for(i=0;i<ch;i++){
- partword[i]=_vorbis_block_alloc(vb,n/samples_per_partition*sizeof(long));
- memset(partword[i],0,n/samples_per_partition*sizeof(long));
- }
- for(i=info->begin,l=0;i<info->end;i+=samples_per_partition,l++)
- for(j=0;j<ch;j++)
- /* do the partition decision based on the number of 'bits'
- needed to encode the block */
- partword[j][l]=_testhack(in[j]+i,samples_per_partition,look);
-
- /* we code the partition words for each channel, then the residual
- words for a partition per channel until we've written all the
- residual words for that partition word. Then write the next
- parition channel words... */
-
- for(i=info->begin,l=0;i<info->end;){
- /* first we encode a partition codeword for each channel */
- for(j=0;j<ch;j++){
- long val=partword[j][l];
- for(k=1;k<partitions_per_word;k++)
- val= val*possible_partitions+partword[j][l+k];
- phrasebits+=vorbis_book_encode(look->phrasebook,val,&vb->opb);
- }
- /* now we encode interleaved residual values for the partitions */
- for(k=0;k<partitions_per_word;k++,l++,i+=samples_per_partition)
- for(j=0;j<ch;j++){
- resbits[partword[j][l]]+=
- _encodepart(&vb->opb,in[j]+i,samples_per_partition,
- info->secondstages[partword[j][l]],
- look->partbooks[partword[j][l]]);
- resvals[partword[j][l]]+=samples_per_partition;
- }
-
- }
- for(i=0;i<possible_partitions;i++)resbitsT+=resbits[i];
- fprintf(stderr,
- "Encoded %ld res vectors in %ld phrasing and %ld res bits\n\t",
- ch*(info->end-info->begin),phrasebits,resbitsT);
- for(i=0;i<possible_partitions;i++)
- fprintf(stderr,"%ld(%ld):%ld ",i,resvals[i],resbits[i]);
- fprintf(stderr,"\n");
-
- return(0);
- }
- int inverse(vorbis_block *vb,vorbis_look_residue *vl,double **in,int ch){
- long i,j,k,l;
- vorbis_look_residue0 *look=(vorbis_look_residue0 *)vl;
- vorbis_info_residue0 *info=look->info;
- /* move all this setup out later */
- int samples_per_partition=info->grouping;
- int partitions_per_word=look->phrasebook->dim;
- int n=info->end-info->begin;
- int partvals=n/samples_per_partition;
- int partwords=(partvals+partitions_per_word-1)/partitions_per_word;
- int **partword=alloca(ch*sizeof(long *));
- double *work=alloca(sizeof(double)*samples_per_partition);
- partvals=partwords*partitions_per_word;
- for(i=info->begin,l=0;i<info->end;){
- /* fetch the partition word for each channel */
- for(j=0;j<ch;j++){
- int temp=vorbis_book_decode(look->phrasebook,&vb->opb);
- partword[j]=look->decodemap[temp];
- if(partword[j]==NULL)exit(1);
- }
-
- /* now we decode interleaved residual values for the partitions */
- for(k=0;k<partitions_per_word;k++,l++,i+=samples_per_partition)
- for(j=0;j<ch;j++){
- int part=partword[j][k];
- _decodepart(&vb->opb,work,in[j]+i,samples_per_partition,
- info->secondstages[part],
- look->partbooks[part]);
- }
- }
- return(0);
- }
- vorbis_func_residue residue0_exportbundle={
- &pack,
- &unpack,
- &look,
- &free_info,
- &free_look,
- &forward,
- &inverse
- };
|