Searched refs:num_lores (Results 1 - 3 of 3) sorted by relevance

/external/aac/libSBRenc/src/
H A Dsbrenc_freq_sca.h123 void FDKsbrEnc_UpdateLoRes(UCHAR *v_lores, INT *num_lores, UCHAR *v_hires,
H A Dsbrenc_freq_sca.cpp653 void FDKsbrEnc_UpdateLoRes(UCHAR *h_lores, INT *num_lores, UCHAR *h_hires, argument
659 *num_lores = num_hires / 2;
661 for (i = 0; i <= *num_lores; i++) h_lores[i] = h_hires[i * 2];
665 *num_lores = (num_hires + 1) / 2;
669 for (i = 1; i <= *num_lores; i++) {
/external/aac/libSBRdec/src/
H A Dsbrdec_freq_sca.cpp660 static void sbrdecUpdateLoRes(UCHAR *h_lores, UCHAR *num_lores, UCHAR *h_hires, argument
666 *num_lores = num_hires >> 1;
668 for (i = 0; i <= *num_lores; i++) h_lores[i] = h_hires[i * 2];
671 *num_lores = (num_hires + 1) >> 1;
674 for (i = 1; i <= *num_lores; i++) {

Completed in 99 milliseconds