[BACK]Return to aparams.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / aucat

Diff for /src/usr.bin/aucat/Attic/aparams.c between version 1.9 and 1.10

version 1.9, 2009/09/27 11:51:20 version 1.10, 2010/01/10 21:47:41
Line 16 
Line 16 
  */   */
   
 #include "aparams.h"  #include "aparams.h"
   #ifdef DEBUG
   #include "dbg.h"
   #endif
   
 int aparams_ctltovol[128] = {  int aparams_ctltovol[128] = {
             0,              0,
Line 181 
Line 184 
         par->rate = rate;          par->rate = rate;
 }  }
   
   #ifdef DEBUG
   /*
    * Print the format/channels/encoding on stderr.
    */
   void
   aparams_dbg(struct aparams *par)
   {
           char enc[ENCMAX];
   
           aparams_enctostr(par, enc);
           dbg_puts(enc);
           dbg_puts(",");
           dbg_putu(par->cmin);
           dbg_puts(":");
           dbg_putu(par->cmax);
           dbg_puts(",");
           dbg_putu(par->rate);
   }
   #endif
   
 /*  /*
  * Return true if both encodings are the same.   * Return true if both encodings are the same.

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10