Home
last modified time | relevance | path

Searched refs:pui_api_size (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/xaacdec/
DSoftXAAC.cpp922 UWORD32 pui_api_size; in initXAACDecoder() local
935 err_code = ixheaacd_dec_api(NULL, IA_API_CMD_GET_API_SIZE, 0, &pui_api_size); in initXAACDecoder()
939 mXheaacCodecHandle = memalign(4, pui_api_size); in initXAACDecoder()
941 ALOGE("malloc for pui_api_size + 4 >> %d Failed", pui_api_size + 4); in initXAACDecoder()
952 err_code = ia_drc_dec_api(NULL, IA_API_CMD_GET_API_SIZE, 0, &pui_api_size); in initXAACDecoder()
957 mMpegDDrcHandle = memalign(4, pui_api_size); in initXAACDecoder()
965 memset(mMpegDDrcHandle, 0, pui_api_size); in initXAACDecoder()
/frameworks/av/media/codec2/components/xaac/
DC2SoftXaacDec.cpp701 uint32_t pui_api_size; in initXAACDecoder() local
706 &pui_api_size); in initXAACDecoder()
710 mXheaacCodecHandle = memalign(4, pui_api_size); in initXAACDecoder()
712 ALOGE("malloc for pui_api_size + 4 >> %d Failed", pui_api_size + 4); in initXAACDecoder()
725 err_code = ia_drc_dec_api(nullptr, IA_API_CMD_GET_API_SIZE, 0, &pui_api_size); in initXAACDecoder()
730 mMpegDDrcHandle = memalign(4, pui_api_size); in initXAACDecoder()
732 ALOGE("malloc for pui_api_size + 4 >> %d Failed", pui_api_size + 4); in initXAACDecoder()