Home | History | Annotate | Download | only in alsa_sound

Lines Matching refs:mSurroundObj

79     mSurroundObj(NULL),
329 if (mSurroundObj) {
394 surround_filters_intl_process(mSurroundObj,
530 if (mSurroundObj) {
531 surround_filters_release(mSurroundObj);
532 if (mSurroundObj)
533 free(mSurroundObj);
534 mSurroundObj = NULL;
641 if ( mSurroundObj ) {
680 //calculate the size of data to allocate for mSurroundObj
693 mSurroundObj = (void *)malloc(ret);
694 memset(mSurroundObj,0,ret);
695 if (NULL != mSurroundObj) {
696 //initialize after allocating the memory for mSurroundObj
697 ret = surround_filters_init(mSurroundObj,
708 surround_filters_release(mSurroundObj);
712 ALOGE("Allocationg mSurroundObj failed");
716 ALOGE("surround_filters_init(mSurroundObj=Null) failed with ret: %d",ret);
720 (void) surround_filters_set_channel_map(mSurroundObj, chanMap);
725 if (mSurroundObj) {
726 free(mSurroundObj);
727 mSurroundObj = NULL;