HomeSort by relevance Sort by last modified time
    Searched refs:mem_fill (Results 1 - 2 of 2) sorted by null

  /external/libopus/src/
analysis.h 46 int mem_fill; /* number of usable samples in the buffer */ member in struct:__anon13349
analysis.c 236 tonal->mem_fill = 240;
237 downmix(x, &tonal->inmem[tonal->mem_fill], IMIN(len, ANALYSIS_BUF_SIZE-tonal->mem_fill), offset, c1, c2, C);
238 if (tonal->mem_fill+len < ANALYSIS_BUF_SIZE)
240 tonal->mem_fill += len;
262 remaining = len - (ANALYSIS_BUF_SIZE-tonal->mem_fill);
263 downmix(x, &tonal->inmem[240], remaining, offset+ANALYSIS_BUF_SIZE-tonal->mem_fill, c1, c2, C);
264 tonal->mem_fill = 240 + remaining;

Completed in 127 milliseconds