Coverage Report

Created: 2026-02-14 06:59

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/vorbis/lib/sharedbook.c
Line
Count
Source
1
/********************************************************************
2
 *                                                                  *
3
 * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
4
 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
5
 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6
 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
7
 *                                                                  *
8
 * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2015             *
9
 * by the Xiph.Org Foundation https://xiph.org/                     *
10
 *                                                                  *
11
 ********************************************************************
12
13
 function: basic shared codebook operations
14
15
 ********************************************************************/
16
17
#include <stdlib.h>
18
#include <limits.h>
19
#include <math.h>
20
#include <string.h>
21
#include <ogg/ogg.h>
22
#include "os.h"
23
#include "misc.h"
24
#include "vorbis/codec.h"
25
#include "codebook.h"
26
#include "scales.h"
27
28
/**** pack/unpack helpers ******************************************/
29
30
386k
int ov_ilog(ogg_uint32_t v){
31
386k
  int ret;
32
2.76M
  for(ret=0;v;ret++)v>>=1;
33
386k
  return ret;
34
386k
}
35
36
/* 32 bit float (not IEEE; nonnormalized mantissa +
37
   biased exponent) : neeeeeee eeemmmmm mmmmmmmm mmmmmmmm
38
   Why not IEEE?  It's just not that important here. */
39
40
#define VQ_FEXP 10
41
3.08k
#define VQ_FMAN 21
42
1.54k
#define VQ_FEXP_BIAS 768 /* bias toward values smaller than 1. */
43
44
/* doesn't currently guard under/overflow */
45
0
long _float32_pack(float val){
46
0
  int sign=0;
47
0
  long exp;
48
0
  long mant;
49
0
  if(val<0){
50
0
    sign=0x80000000;
51
0
    val= -val;
52
0
  }
53
0
  exp= floor(log(val)/log(2.f)+.001); /* +epsilon */
54
0
  mant=rint(ldexp(val,(VQ_FMAN-1)-exp));
55
0
  exp=(exp+VQ_FEXP_BIAS)<<VQ_FMAN;
56
57
0
  return(sign|exp|mant);
58
0
}
59
60
1.54k
float _float32_unpack(long val){
61
1.54k
  double mant=val&0x1fffff;
62
1.54k
  int    sign=val&0x80000000;
63
1.54k
  long   exp =(val&0x7fe00000L)>>VQ_FMAN;
64
1.54k
  if(sign)mant= -mant;
65
1.54k
  exp=exp-(VQ_FMAN-1)-VQ_FEXP_BIAS;
66
  /* clamp excessive exponent values */
67
1.54k
  if (exp>63){
68
23
    exp=63;
69
23
  }
70
1.54k
  if (exp<-63){
71
1.15k
    exp=-63;
72
1.15k
  }
73
1.54k
  return(ldexp(mant,exp));
74
1.54k
}
75
76
/* given a list of word lengths, generate a list of codewords.  Works
77
   for length ordered or unordered, always assigns the lowest valued
78
   codewords first.  Extended to handle unused entries (length 0) */
79
923
ogg_uint32_t *_make_words(char *l,long n,long sparsecount){
80
923
  long i,j,count=0;
81
923
  ogg_uint32_t marker[33];
82
923
  ogg_uint32_t *r=_ogg_malloc((sparsecount?sparsecount:n)*sizeof(*r));
83
923
  memset(marker,0,sizeof(marker));
84
85
2.81k
  for(i=0;i<n;i++){
86
1.90k
    long length=l[i];
87
1.90k
    if(length>0){
88
1.90k
      ogg_uint32_t entry=marker[length];
89
90
      /* when we claim a node for an entry, we also claim the nodes
91
         below it (pruning off the imagined tree that may have dangled
92
         from it) as well as blocking the use of any nodes directly
93
         above for leaves */
94
95
      /* update ourself */
96
1.90k
      if(length<32 && (entry>>length)){
97
        /* error condition; the lengths must specify an overpopulated tree */
98
13
        _ogg_free(r);
99
13
        return(NULL);
100
13
      }
101
1.88k
      r[count++]=entry;
102
103
      /* Look to see if the next shorter marker points to the node
104
         above. if so, update it and repeat.  */
105
1.88k
      {
106
7.68k
        for(j=length;j>0;j--){
107
108
6.76k
          if(marker[j]&1){
109
            /* have to jump branches */
110
965
            if(j==1)
111
248
              marker[1]++;
112
717
            else
113
717
              marker[j]=marker[j-1]<<1;
114
965
            break; /* invariant says next upper marker would already
115
                      have been moved if it was on the same path */
116
965
          }
117
5.79k
          marker[j]++;
118
5.79k
        }
119
1.88k
      }
120
121
      /* prune the tree; the implicit invariant says all the longer
122
         markers were dangling from our just-taken node.  Dangle them
123
         from our *new* node. */
124
34.5k
      for(j=length+1;j<33;j++)
125
33.1k
        if((marker[j]>>1) == entry){
126
32.6k
          entry=marker[j];
127
32.6k
          marker[j]=marker[j-1]<<1;
128
32.6k
        }else
129
505
          break;
130
1.88k
    }else
131
6
      if(sparsecount==0)count++;
132
1.90k
  }
133
134
  /* any underpopulated tree must be rejected. */
135
  /* Single-entry codebooks are a retconned extension to the spec.
136
     They have a single codeword '0' of length 1 that results in an
137
     underpopulated tree.  Shield that case from the underformed tree check. */
138
910
  if(!(count==1 && marker[2]==2)){
139
7.74k
    for(i=1;i<33;i++)
140
7.51k
      if(marker[i] & (0xffffffffUL>>(32-i))){
141
140
        _ogg_free(r);
142
140
        return(NULL);
143
140
      }
144
370
  }
145
146
  /* bitreverse the words because our bitwise packer/unpacker is LSb
147
     endian */
148
1.77k
  for(i=0,count=0;i<n;i++){
149
1.00k
    ogg_uint32_t temp=0;
150
2.00k
    for(j=0;j<l[i];j++){
151
1.00k
      temp<<=1;
152
1.00k
      temp|=(r[count]>>j)&1;
153
1.00k
    }
154
155
1.00k
    if(sparsecount){
156
1.00k
      if(l[i])
157
1.00k
        r[count++]=temp;
158
1.00k
    }else
159
0
      r[count++]=temp;
160
1.00k
  }
161
162
770
  return(r);
163
910
}
164
165
/* there might be a straightforward one-line way to do the below
166
   that's portable and totally safe against roundoff, but I haven't
167
   thought of it.  Therefore, we opt on the side of caution */
168
2.02k
long _book_maptype1_quantvals(const static_codebook *b){
169
2.02k
  long vals;
170
2.02k
  if(b->entries<1){
171
11
    return(0);
172
11
  }
173
2.01k
  vals=floor(pow((float)b->entries,1.f/b->dim));
174
175
  /* the above *should* be reliable, but we'll not assume that FP is
176
     ever reliable when bitstream sync is at stake; verify via integer
177
     means that vals really is the greatest value of dim for which
178
     vals^b->bim <= b->entries */
179
  /* treat the above as an initial guess */
180
2.01k
  if(vals<1){
181
0
    vals=1;
182
0
  }
183
2.01k
  while(1){
184
2.01k
    long acc=1;
185
2.01k
    long acc1=1;
186
2.01k
    int i;
187
34.3M
    for(i=0;i<b->dim;i++){
188
34.3M
      if(b->entries/vals<acc)break;
189
34.3M
      acc*=vals;
190
34.3M
      if(LONG_MAX/(vals+1)<acc1)acc1=LONG_MAX;
191
61.3k
      else acc1*=vals+1;
192
34.3M
    }
193
2.01k
    if(i>=b->dim && acc<=b->entries && acc1>b->entries){
194
2.01k
      return(vals);
195
2.01k
    }else{
196
0
      if(i<b->dim || acc>b->entries){
197
0
        vals--;
198
0
      }else{
199
0
        vals++;
200
0
      }
201
0
    }
202
2.01k
  }
203
2.01k
}
204
205
/* unpack the quantized list of values for encode/decode ***********/
206
/* we need to deal with two map types: in map type 1, the values are
207
   generated algorithmically (each column of the vector counts through
208
   the values in the quant vector). in map type 2, all the values came
209
   in in an explicit list.  Both value lists must be unpacked */
210
770
float *_book_unquantize(const static_codebook *b,int n,int *sparsemap){
211
770
  long j,k,count=0;
212
770
  if(b->maptype==1 || b->maptype==2){
213
770
    int quantvals;
214
770
    float mindel=_float32_unpack(b->q_min);
215
770
    float delta=_float32_unpack(b->q_delta);
216
770
    float *r=_ogg_calloc(n*b->dim,sizeof(*r));
217
218
    /* maptype 1 and 2 both use a quantized value vector, but
219
       different sizes */
220
770
    switch(b->maptype){
221
764
    case 1:
222
      /* most of the time, entries%dimensions == 0, but we need to be
223
         well defined.  We define that the possible vales at each
224
         scalar is values == entries/dim.  If entries%dim != 0, we'll
225
         have 'too few' values (values*dim<entries), which means that
226
         we'll have 'left over' entries; left over entries use zeroed
227
         values (and are wasted).  So don't generate codebooks like
228
         that */
229
764
      quantvals=_book_maptype1_quantvals(b);
230
1.75k
      for(j=0;j<b->entries;j++){
231
994
        if((sparsemap && b->lengthlist[j]) || !sparsemap){
232
994
          float last=0.f;
233
994
          int indexdiv=1;
234
22.4M
          for(k=0;k<b->dim;k++){
235
22.4M
            int index= (j/indexdiv)%quantvals;
236
22.4M
            float val=b->quantlist[index];
237
22.4M
            val=fabs(val)*delta+mindel+last;
238
22.4M
            if(b->q_sequencep)last=val;
239
22.4M
            if(sparsemap)
240
22.4M
              r[sparsemap[count]*b->dim+k]=val;
241
0
            else
242
0
              r[count*b->dim+k]=val;
243
22.4M
            indexdiv*=quantvals;
244
22.4M
          }
245
994
          count++;
246
994
        }
247
248
994
      }
249
764
      break;
250
6
    case 2:
251
12
      for(j=0;j<b->entries;j++){
252
6
        if((sparsemap && b->lengthlist[j]) || !sparsemap){
253
6
          float last=0.f;
254
255
14
          for(k=0;k<b->dim;k++){
256
8
            float val=b->quantlist[j*b->dim+k];
257
8
            val=fabs(val)*delta+mindel+last;
258
8
            if(b->q_sequencep)last=val;
259
8
            if(sparsemap)
260
8
              r[sparsemap[count]*b->dim+k]=val;
261
0
            else
262
0
              r[count*b->dim+k]=val;
263
8
          }
264
6
          count++;
265
6
        }
266
6
      }
267
6
      break;
268
770
    }
269
270
770
    return(r);
271
770
  }
272
0
  return(NULL);
273
770
}
274
275
1.51k
void vorbis_staticbook_destroy(static_codebook *b){
276
1.51k
  if(b->allocedp){
277
1.51k
    if(b->quantlist)_ogg_free(b->quantlist);
278
1.51k
    if(b->lengthlist)_ogg_free(b->lengthlist);
279
1.51k
    memset(b,0,sizeof(*b));
280
1.51k
    _ogg_free(b);
281
1.51k
  } /* otherwise, it is in static memory */
282
1.51k
}
283
284
1.07k
void vorbis_book_clear(codebook *b){
285
  /* static book is not cleared; we're likely called on the lookup and
286
     the static codebook belongs to the info struct */
287
1.07k
  if(b->valuelist)_ogg_free(b->valuelist);
288
1.07k
  if(b->codelist)_ogg_free(b->codelist);
289
290
1.07k
  if(b->dec_index)_ogg_free(b->dec_index);
291
1.07k
  if(b->dec_codelengths)_ogg_free(b->dec_codelengths);
292
1.07k
  if(b->dec_firsttable)_ogg_free(b->dec_firsttable);
293
294
1.07k
  memset(b,0,sizeof(*b));
295
1.07k
}
296
297
0
int vorbis_book_init_encode(codebook *c,const static_codebook *s){
298
299
0
  memset(c,0,sizeof(*c));
300
0
  c->c=s;
301
0
  c->entries=s->entries;
302
0
  c->used_entries=s->entries;
303
0
  c->dim=s->dim;
304
0
  c->codelist=_make_words(s->lengthlist,s->entries,0);
305
  /* c->valuelist=_book_unquantize(s,s->entries,NULL); */
306
0
  c->quantvals=_book_maptype1_quantvals(s);
307
0
  c->minval=(int)rint(_float32_unpack(s->q_min));
308
0
  c->delta=(int)rint(_float32_unpack(s->q_delta));
309
310
0
  return(0);
311
0
}
312
313
8.82k
static ogg_uint32_t bitreverse(ogg_uint32_t x){
314
8.82k
  x=    ((x>>16)&0x0000ffffUL) | ((x<<16)&0xffff0000UL);
315
8.82k
  x=    ((x>> 8)&0x00ff00ffUL) | ((x<< 8)&0xff00ff00UL);
316
8.82k
  x=    ((x>> 4)&0x0f0f0f0fUL) | ((x<< 4)&0xf0f0f0f0UL);
317
8.82k
  x=    ((x>> 2)&0x33333333UL) | ((x<< 2)&0xccccccccUL);
318
8.82k
  return((x>> 1)&0x55555555UL) | ((x<< 1)&0xaaaaaaaaUL);
319
8.82k
}
320
321
230
static int sort32a(const void *a,const void *b){
322
230
  return ( **(ogg_uint32_t **)a>**(ogg_uint32_t **)b)-
323
230
    ( **(ogg_uint32_t **)a<**(ogg_uint32_t **)b);
324
230
}
325
326
/* decode codebook arrangement is more heavily optimized than encode */
327
923
int vorbis_book_init_decode(codebook *c,const static_codebook *s){
328
923
  int i,j,n=0,tabn;
329
923
  int *sortindex;
330
331
923
  memset(c,0,sizeof(*c));
332
333
  /* count actually used entries and find max length */
334
3.49k
  for(i=0;i<s->entries;i++)
335
2.57k
    if(s->lengthlist[i]>0)
336
2.56k
      n++;
337
338
923
  c->entries=s->entries;
339
923
  c->used_entries=n;
340
923
  c->dim=s->dim;
341
342
923
  if(n>0){
343
    /* two different remappings go on here.
344
345
    First, we collapse the likely sparse codebook down only to
346
    actually represented values/words.  This collapsing needs to be
347
    indexed as map-valueless books are used to encode original entry
348
    positions as integers.
349
350
    Second, we reorder all vectors, including the entry index above,
351
    by sorted bitreversed codeword to allow treeless decode. */
352
353
    /* perform sort */
354
923
    ogg_uint32_t *codes=_make_words(s->lengthlist,s->entries,c->used_entries);
355
923
    ogg_uint32_t **codep=alloca(sizeof(*codep)*n);
356
357
923
    if(codes==NULL)goto err_out;
358
359
1.77k
    for(i=0;i<n;i++){
360
1.00k
      codes[i]=bitreverse(codes[i]);
361
1.00k
      codep[i]=codes+i;
362
1.00k
    }
363
364
770
    qsort(codep,n,sizeof(*codep),sort32a);
365
366
770
    sortindex=alloca(n*sizeof(*sortindex));
367
770
    c->codelist=_ogg_malloc(n*sizeof(*c->codelist));
368
    /* the index is a reverse index */
369
1.77k
    for(i=0;i<n;i++){
370
1.00k
      int position=codep[i]-codes;
371
1.00k
      sortindex[position]=i;
372
1.00k
    }
373
374
1.77k
    for(i=0;i<n;i++)
375
1.00k
      c->codelist[sortindex[i]]=codes[i];
376
770
    _ogg_free(codes);
377
378
770
    c->valuelist=_book_unquantize(s,n,sortindex);
379
770
    c->dec_index=_ogg_malloc(n*sizeof(*c->dec_index));
380
381
1.77k
    for(n=0,i=0;i<s->entries;i++)
382
1.00k
      if(s->lengthlist[i]>0)
383
1.00k
        c->dec_index[sortindex[n++]]=i;
384
385
770
    c->dec_codelengths=_ogg_malloc(n*sizeof(*c->dec_codelengths));
386
770
    c->dec_maxlength=0;
387
1.77k
    for(n=0,i=0;i<s->entries;i++)
388
1.00k
      if(s->lengthlist[i]>0){
389
1.00k
        c->dec_codelengths[sortindex[n++]]=s->lengthlist[i];
390
1.00k
        if(s->lengthlist[i]>c->dec_maxlength)
391
770
          c->dec_maxlength=s->lengthlist[i];
392
1.00k
      }
393
394
770
    if(n==1 && c->dec_maxlength==1){
395
      /* special case the 'single entry codebook' with a single bit
396
       fastpath table (that always returns entry 0 )in order to use
397
       unmodified decode paths. */
398
540
      c->dec_firsttablen=1;
399
540
      c->dec_firsttable=_ogg_calloc(2,sizeof(*c->dec_firsttable));
400
540
      c->dec_firsttable[0]=c->dec_firsttable[1]=1;
401
402
540
    }else{
403
230
      c->dec_firsttablen=ov_ilog(c->used_entries)-4; /* this is magic */
404
230
      if(c->dec_firsttablen<5)c->dec_firsttablen=5;
405
230
      if(c->dec_firsttablen>8)c->dec_firsttablen=8;
406
407
230
      tabn=1<<c->dec_firsttablen;
408
230
      c->dec_firsttable=_ogg_calloc(tabn,sizeof(*c->dec_firsttable));
409
410
690
      for(i=0;i<n;i++){
411
460
        if(c->dec_codelengths[i]<=c->dec_firsttablen){
412
460
          ogg_uint32_t orig=bitreverse(c->codelist[i]);
413
7.82k
          for(j=0;j<(1<<(c->dec_firsttablen-c->dec_codelengths[i]));j++)
414
7.36k
            c->dec_firsttable[orig|(j<<c->dec_codelengths[i])]=i+1;
415
460
        }
416
460
      }
417
418
      /* now fill in 'unused' entries in the firsttable with hi/lo search
419
         hints for the non-direct-hits */
420
230
      {
421
230
        ogg_uint32_t mask=0xfffffffeUL<<(31-c->dec_firsttablen);
422
230
        long lo=0,hi=0;
423
424
7.59k
        for(i=0;i<tabn;i++){
425
7.36k
          ogg_uint32_t word=((ogg_uint32_t)i<<(32-c->dec_firsttablen));
426
7.36k
          if(c->dec_firsttable[bitreverse(word)]==0){
427
0
            while((lo+1)<n && c->codelist[lo+1]<=word)lo++;
428
0
            while(    hi<n && word>=(c->codelist[hi]&mask))hi++;
429
430
            /* we only actually have 15 bits per hint to play with here.
431
               In order to overflow gracefully (nothing breaks, efficiency
432
               just drops), encode as the difference from the extremes. */
433
0
            {
434
0
              unsigned long loval=lo;
435
0
              unsigned long hival=n-hi;
436
437
0
              if(loval>0x7fff)loval=0x7fff;
438
0
              if(hival>0x7fff)hival=0x7fff;
439
0
              c->dec_firsttable[bitreverse(word)]=
440
0
                0x80000000UL | (loval<<15) | hival;
441
0
            }
442
0
          }
443
7.36k
        }
444
230
      }
445
230
    }
446
770
  }
447
448
770
  return(0);
449
153
 err_out:
450
153
  vorbis_book_clear(c);
451
153
  return(-1);
452
923
}
453
454
0
long vorbis_book_codeword(codebook *book,int entry){
455
0
  if(book->c) /* only use with encode; decode optimizations are
456
                 allowed to break this */
457
0
    return book->codelist[entry];
458
0
  return -1;
459
0
}
460
461
0
long vorbis_book_codelen(codebook *book,int entry){
462
0
  if(book->c) /* only use with encode; decode optimizations are
463
                 allowed to break this */
464
0
    return book->c->lengthlist[entry];
465
0
  return -1;
466
0
}
467
468
#ifdef _V_SELFTEST
469
470
/* Unit tests of the dequantizer; this stuff will be OK
471
   cross-platform, I simply want to be sure that special mapping cases
472
   actually work properly; a bug could go unnoticed for a while */
473
474
#include <stdio.h>
475
476
/* cases:
477
478
   no mapping
479
   full, explicit mapping
480
   algorithmic mapping
481
482
   nonsequential
483
   sequential
484
*/
485
486
static long full_quantlist1[]={0,1,2,3,    4,5,6,7, 8,3,6,1};
487
static long partial_quantlist1[]={0,7,2};
488
489
/* no mapping */
490
static_codebook test1={
491
  4,16,
492
  NULL,
493
  0,
494
  0,0,0,0,
495
  NULL,
496
  0
497
};
498
static float *test1_result=NULL;
499
500
/* linear, full mapping, nonsequential */
501
static_codebook test2={
502
  4,3,
503
  NULL,
504
  2,
505
  -533200896,1611661312,4,0,
506
  full_quantlist1,
507
  0
508
};
509
static float test2_result[]={-3,-2,-1,0, 1,2,3,4, 5,0,3,-2};
510
511
/* linear, full mapping, sequential */
512
static_codebook test3={
513
  4,3,
514
  NULL,
515
  2,
516
  -533200896,1611661312,4,1,
517
  full_quantlist1,
518
  0
519
};
520
static float test3_result[]={-3,-5,-6,-6, 1,3,6,10, 5,5,8,6};
521
522
/* linear, algorithmic mapping, nonsequential */
523
static_codebook test4={
524
  3,27,
525
  NULL,
526
  1,
527
  -533200896,1611661312,4,0,
528
  partial_quantlist1,
529
  0
530
};
531
static float test4_result[]={-3,-3,-3, 4,-3,-3, -1,-3,-3,
532
                              -3, 4,-3, 4, 4,-3, -1, 4,-3,
533
                              -3,-1,-3, 4,-1,-3, -1,-1,-3,
534
                              -3,-3, 4, 4,-3, 4, -1,-3, 4,
535
                              -3, 4, 4, 4, 4, 4, -1, 4, 4,
536
                              -3,-1, 4, 4,-1, 4, -1,-1, 4,
537
                              -3,-3,-1, 4,-3,-1, -1,-3,-1,
538
                              -3, 4,-1, 4, 4,-1, -1, 4,-1,
539
                              -3,-1,-1, 4,-1,-1, -1,-1,-1};
540
541
/* linear, algorithmic mapping, sequential */
542
static_codebook test5={
543
  3,27,
544
  NULL,
545
  1,
546
  -533200896,1611661312,4,1,
547
  partial_quantlist1,
548
  0
549
};
550
static float test5_result[]={-3,-6,-9, 4, 1,-2, -1,-4,-7,
551
                              -3, 1,-2, 4, 8, 5, -1, 3, 0,
552
                              -3,-4,-7, 4, 3, 0, -1,-2,-5,
553
                              -3,-6,-2, 4, 1, 5, -1,-4, 0,
554
                              -3, 1, 5, 4, 8,12, -1, 3, 7,
555
                              -3,-4, 0, 4, 3, 7, -1,-2, 2,
556
                              -3,-6,-7, 4, 1, 0, -1,-4,-5,
557
                              -3, 1, 0, 4, 8, 7, -1, 3, 2,
558
                              -3,-4,-5, 4, 3, 2, -1,-2,-3};
559
560
void run_test(static_codebook *b,float *comp){
561
  float *out=_book_unquantize(b,b->entries,NULL);
562
  int i;
563
564
  if(comp){
565
    if(!out){
566
      fprintf(stderr,"_book_unquantize incorrectly returned NULL\n");
567
      exit(1);
568
    }
569
570
    for(i=0;i<b->entries*b->dim;i++)
571
      if(fabs(out[i]-comp[i])>.0001){
572
        fprintf(stderr,"disagreement in unquantized and reference data:\n"
573
                "position %d, %g != %g\n",i,out[i],comp[i]);
574
        exit(1);
575
      }
576
577
  }else{
578
    if(out){
579
      fprintf(stderr,"_book_unquantize returned a value array: \n"
580
              " correct result should have been NULL\n");
581
      exit(1);
582
    }
583
  }
584
  _ogg_free(out);
585
}
586
587
int main(){
588
  /* run the nine dequant tests, and compare to the hand-rolled results */
589
  fprintf(stderr,"Dequant test 1... ");
590
  run_test(&test1,test1_result);
591
  fprintf(stderr,"OK\nDequant test 2... ");
592
  run_test(&test2,test2_result);
593
  fprintf(stderr,"OK\nDequant test 3... ");
594
  run_test(&test3,test3_result);
595
  fprintf(stderr,"OK\nDequant test 4... ");
596
  run_test(&test4,test4_result);
597
  fprintf(stderr,"OK\nDequant test 5... ");
598
  run_test(&test5,test5_result);
599
  fprintf(stderr,"OK\n\n");
600
601
  return(0);
602
}
603
604
#endif