Home
last modified time | relevance | path

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

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