Displaying 1 result from an estimated 1 matches for "encoderbit".
Did you mean:
  encoderbits
  
2007 Sep 12
0
not hearing the starts of words when encoding
..., but if I encode something percussive like "beep" I hear almost
all of it. It's as if the modeller does not detect the start of a word. Has
anyone seen this before?
In case you're interested here is the init code:
    int quality = 3;
    int off = 0;
    speex_bits_init(&encoderBits);
    encoder = speex_encoder_init(&speex_nb_mode);
    speex_encoder_ctl( encoder, SPEEX_GET_SAMPLING_RATE, &sampleRate );
    speex_encoder_ctl( encoder, SPEEX_GET_FRAME_SIZE, &frameSize);
    preprocess = speex_preprocess_state_init( frameSize, sampleRate );
    speex_preprocess_ct...