testenc_wb.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. #ifdef HAVE_CONFIG_H
  2. #include "config.h"
  3. #endif
  4. #include <speex/speex.h>
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <speex/speex_callbacks.h>
  8. #ifdef FIXED_DEBUG
  9. extern long long spx_mips;
  10. #endif
  11. #define FRAME_SIZE 320
  12. #include <math.h>
  13. int main(int argc, char **argv)
  14. {
  15.    char *inFile, *outFile, *bitsFile;
  16.    FILE *fin, *fout, *fbits=NULL;
  17.    short in_short[FRAME_SIZE];
  18.    short out_short[FRAME_SIZE];
  19.    float in_float[FRAME_SIZE];
  20.    float sigpow,errpow,snr, seg_snr=0;
  21.    int snr_frames = 0;
  22.    char cbits[200];
  23.    int nbBits;
  24.    int i;
  25.    void *st;
  26.    void *dec;
  27.    SpeexBits bits;
  28.    int tmp;
  29.    int bitCount=0;
  30.    int skip_group_delay;
  31.    SpeexCallback callback;
  32.    sigpow = 0;
  33.    errpow = 0;
  34.    st = speex_encoder_init(&speex_wb_mode);
  35.    dec = speex_decoder_init(&speex_wb_mode);
  36.    callback.callback_id = SPEEX_INBAND_CHAR;
  37.    callback.func = speex_std_char_handler;
  38.    callback.data = stderr;
  39.    speex_decoder_ctl(dec, SPEEX_SET_HANDLER, &callback);
  40.    callback.callback_id = SPEEX_INBAND_MODE_REQUEST;
  41.    callback.func = speex_std_mode_request_handler;
  42.    callback.data = st;
  43.    speex_decoder_ctl(dec, SPEEX_SET_HANDLER, &callback);
  44.    tmp=0;
  45.    speex_decoder_ctl(dec, SPEEX_SET_ENH, &tmp);
  46.    tmp=0;
  47.    speex_encoder_ctl(st, SPEEX_SET_VBR, &tmp);
  48.    tmp=8;
  49.    speex_encoder_ctl(st, SPEEX_SET_QUALITY, &tmp);
  50.    tmp=2;
  51.    speex_encoder_ctl(st, SPEEX_SET_COMPLEXITY, &tmp);
  52.    tmp=3;
  53.    speex_encoder_ctl(st, SPEEX_SET_HIGH_MODE, &tmp);
  54.    tmp=6;
  55.    speex_encoder_ctl(st, SPEEX_SET_LOW_MODE, &tmp);
  56.    speex_mode_query(&speex_wb_mode, SPEEX_MODE_FRAME_SIZE, &tmp);
  57.    fprintf (stderr, "frame size: %dn", tmp);
  58.    skip_group_delay = 223;
  59.    if (argc != 4 && argc != 3)
  60.    {
  61.       fprintf (stderr, "Usage: encode [in file] [out file] [bits file]nargc = %d", argc);
  62.       exit(1);
  63.    }
  64.    inFile = argv[1];
  65.    fin = fopen(inFile, "r");
  66.    outFile = argv[2];
  67.    fout = fopen(outFile, "w+");
  68.    if (argc==4)
  69.    {
  70.       bitsFile = argv[3];
  71.       fbits = fopen(bitsFile, "w");
  72.    }
  73.    speex_bits_init(&bits);
  74.    while (!feof(fin))
  75.    {
  76.       fread(in_short, sizeof(short), FRAME_SIZE, fin);
  77.       if (feof(fin))
  78.          break;
  79.       for (i=0;i<FRAME_SIZE;i++)
  80.          in_float[i]=in_short[i];
  81.       speex_bits_reset(&bits);
  82.       speex_encode_int(st, in_short, &bits);
  83.       nbBits = speex_bits_write(&bits, cbits, 200);
  84.       bitCount+=bits.nbBits;
  85.       if (argc==4)
  86.          fwrite(cbits, 1, nbBits, fbits);
  87.       speex_bits_rewind(&bits);
  88.       speex_decode_int(dec, &bits, out_short);
  89.       speex_bits_reset(&bits);
  90.       fwrite(&out_short[skip_group_delay], sizeof(short), FRAME_SIZE-skip_group_delay, fout);
  91.       skip_group_delay = 0;
  92.    }
  93.    fprintf (stderr, "Total encoded size: %d bitsn", bitCount);
  94.    speex_encoder_destroy(st);
  95.    speex_decoder_destroy(dec);
  96.    rewind(fin);
  97.    rewind(fout);
  98.    while ( FRAME_SIZE == fread(in_short, sizeof(short), FRAME_SIZE, fin) 
  99.            &&
  100.            FRAME_SIZE ==  fread(out_short, sizeof(short), FRAME_SIZE,fout) )
  101.    {
  102. float s=0, e=0;
  103.         for (i=0;i<FRAME_SIZE;++i) {
  104.             s += (float)in_short[i] * in_short[i];
  105.             e += ((float)in_short[i]-out_short[i]) * ((float)in_short[i]-out_short[i]);
  106.         }
  107. seg_snr += 10*log10((s+160)/(e+160));
  108. sigpow += s;
  109. errpow += e;
  110. snr_frames++;
  111.    }
  112.    fclose(fin);
  113.    fclose(fout);
  114.    snr = 10 * log10( sigpow / errpow );
  115.    seg_snr /= snr_frames;
  116.    fprintf(stderr,"SNR = %fnsegmental SNR = %fn",snr, seg_snr);
  117. #ifdef FIXED_DEBUG
  118.    printf ("Total: %f MIPSn", (float)(1e-6*50*spx_mips/snr_frames));
  119. #endif
  120.    
  121.    return 1;
  122. }