Home | History | Annotate | Download | only in lib

Lines Matching refs:frames

73 #define PICOCEP_MAXWINLEN 10000  /* maximum number of frames that can be smoothed, i.e. maximum sentence length */
935 /* copy N frames into smoothcep (only for coeff # "cepnum") */
949 * @param indices : indices of pdf vectors for all frames in current sentence
950 * @param b, N : to be smoothed frames indices (range will be from b to b+N-1)
1123 * @param vecstart : indices of pdf vectors for all frames in current sentence
1296 * @param indices : indices of pdf vectors for all frames in current sentence
1337 * @param indices : indices of pdf vectors for all frames in current sentence
1384 picoos_uint16 state, frame, frames;
1400 /* get the current frames per state */
1401 frames = get_pi_uint16(cep->inBuf, &pos);
1403 PICODBG_DEBUG(("number of frames for this phone state: %i",frames));
1420 if ((cep->indexWritePos - frame) + frames > PICOCEP_MAXWINLEN) {
1421 /* number of frames that will still fit */
1422 frames = PICOCEP_MAXWINLEN - (cep->indexWritePos - frame);
1426 while (frame < frames) {
1434 PICODBG_DEBUG(("finished state %i with %i frames, now at index write pos %i",
1435 state, frames,cep->indexWritePos));
1439 frames = get_pi_uint16(cep->inBuf, &pos);
1625 /* if no active frames, output immediately */
1708 PICODBG_DEBUG(("smoothing %d frames\n", N));
1789 /*------------ there are frames to output ----------------------------------------*/
1790 /* still frames to output, create new FRAME_PAR item */
1891 /*------------ no more frames to output at end of sentence ----------------------------------------*/
1892 PICODBG_INFO(("End of sentence - Processed frames : %d",
1894 cep->nNumFrames = 0;PICODBG_DEBUG(("FRAME no more active frames for this sentence"));
1895 /* no frames left in this sentence*/
1905 /*------------ no more frames can be output but sentence end not reached ----------------------------------------*/
1906 PICODBG_DEBUG(("Maximum number of frames per sentence reached"));