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

  /external/libopus/celt/
os_support.h 78 #define OPUS_MOVE(dst, src, n) (memmove((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) ))
celt.c 129 /* OPT: Happens to work without the OPUS_MOVE(), but only because the current encoder already copies x to y */
131 OPUS_MOVE(y, x, N);
164 /* OPT: Happens to work without the OPUS_MOVE(), but only because the current encoder already copies x to y */
166 OPUS_MOVE(y+overlap, x+overlap, N-overlap);
entenc.c 239 OPUS_MOVE(_this->buf+_size-_this->end_offs,
celt_decoder.c 434 OPUS_MOVE(decode_mem[c], decode_mem[c]+N,
547 OPUS_MOVE(buf, buf+N, DECODE_BUFFER_SIZE-N);
927 OPUS_MOVE(decode_mem[c], decode_mem[c]+N, DECODE_BUFFER_SIZE-N+overlap/2);
    [all...]
celt_encoder.c     [all...]
  /external/libopus/src/
repacketizer.c 214 /* Using OPUS_MOVE() instead of OPUS_COPY() in case we're doing in-place
217 OPUS_MOVE(ptr, frames[i], len[i]);
250 OPUS_MOVE(data+new_len-len, data, len);
analysis.c 261 OPUS_MOVE(tonal->inmem, tonal->inmem+ANALYSIS_BUF_SIZE-240, 240);

Completed in 49 milliseconds