/external/chromium_org/third_party/opus/src/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/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/chromium_org/third_party/opus/src/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);
|
/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);
|