Searched refs:pcmParams (Results 1 - 21 of 21) sorted by relevance

/hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
H A DOMX_Mp3Dec_Utils.c239 if(pComponentPrivate->pcmParams->nBitPerSample == 24){
516 OMX_MEMFREE_STRUCT (pComponentPrivate->pcmParams);
1018 pComponentPrivate->pcmParams->bInterleaved) {
1432 pComponentPrivate->pcmParams->bInterleaved) {
1940 //save the current value of pcmParams->nSamplingRate
1941 temp = pComponentPrivate->pcmParams->nSamplingRate;
1948 pComponentPrivate->pcmParams->nSamplingRate = 44100;
1951 pComponentPrivate->pcmParams->nSamplingRate = 48000;
1954 pComponentPrivate->pcmParams->nSamplingRate = 32000;
1963 pComponentPrivate->pcmParams
[all...]
H A DOMX_Mp3Decoder.c289 pComponentPrivate->pcmParams = NULL;
296 pComponentPrivate->pcmParams = mp3_op;
809 pComponentPrivate->pcmParams->nPortIndex) {
810 memcpy(ComponentParameterStructure,pComponentPrivate->pcmParams, sizeof(OMX_AUDIO_PARAM_PCMMODETYPE));
1025 MP3D_OMX_CONF_CHECK_CMD(pComponentPrivate->pcmParams, 1, 1);
1026 memcpy(pComponentPrivate->pcmParams, pPcmPort, sizeof(OMX_AUDIO_PARAM_PCMMODETYPE));
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/inc/
H A DOMX_G722Enc_Utils.h456 OMX_AUDIO_PARAM_ADPCMTYPE* pcmParams; member in struct:G722ENC_COMPONENT_PRIVATE
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/inc/
H A DOMX_G729Decoder.h393 OMX_AUDIO_PARAM_PCMMODETYPE* pcmParams; member in struct:G729DEC_COMPONENT_PRIVATE
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/src/
H A DOMX_G722Encoder.c246 pHandle->pComponentPrivate)->pcmParams = NULL;
285 pHandle->pComponentPrivate)->pcmParams = pcm_ip;
871 if (pComponentPrivate->pcmParams == NULL) {
876 pComponentPrivate->pcmParams,
1008 pComponentPrivate->pcmParams->nPortIndex)
1010 memcpy(pComponentPrivate->pcmParams, ComponentParameterStructure,
1017 cmd_data.param1 = pComponentPrivate->pcmParams->nSampleRate;
H A DOMX_G722Enc_Utils.c707 if (pComponentPrivate->pcmParams) {
708 G722ENC_MEMPRINT("%d:::[FREE] %p\n",__LINE__,pComponentPrivate->pcmParams);
709 free(pComponentPrivate->pcmParams);
710 pComponentPrivate->pcmParams = NULL;
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
H A DOMX_G729Decoder.c272 pHandle->pComponentPrivate)->pcmParams = g729_op;
275 G729DEC_DPRINT("%d Malloced pcmParams = 0x%p\n",__LINE__,((G729DEC_COMPONENT_PRIVATE *)pHandle->pComponentPrivate)->pcmParams);
857 pComponentPrivate->pcmParams->nPortIndex) {
860 pComponentPrivate->pcmParams,
1030 if (pComponentPrivate->pcmParams == NULL) {
1036 memcpy(pComponentPrivate->pcmParams, pPcmPort, sizeof(OMX_AUDIO_PARAM_PCMMODETYPE));
1560 OMX_G729MEMFREE_STRUCT(pComponentPrivate->pcmParams);
H A DOMX_G729Dec_Utils.c232 (OMX_U16)pComponentPrivate->pcmParams->nChannels;
527 if (pComponentPrivate->pcmParams) {
528 G729DEC_MEMPRINT("%d:[FREE] %p\n",__LINE__,pComponentPrivate->pcmParams);
529 free (pComponentPrivate->pcmParams);
530 pComponentPrivate->pcmParams = NULL;
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
H A DOMX_AacDecoder.c285 pComponentPrivate->pcmParams = NULL;
289 pComponentPrivate->pcmParams = aac_op;
786 pComponentPrivate->pcmParams->nPortIndex) {
787 memcpy(ComponentParameterStructure, pComponentPrivate->pcmParams, sizeof(OMX_AUDIO_PARAM_PCMMODETYPE));
797 AACDEC_OMX_CONF_CHECK_CMD(pComponentPrivate->pcmParams ,1,1)
798 memcpy(ComponentParameterStructure,pComponentPrivate->pcmParams,sizeof(OMX_AUDIO_PARAM_PCMMODETYPE));
1020 AACDEC_OMX_CONF_CHECK_CMD(pComponentPrivate->pcmParams, 1,1)
1021 memcpy(pComponentPrivate->pcmParams, pCompPcmParam, sizeof(OMX_AUDIO_PARAM_PCMMODETYPE));
1377 pComponentPrivate->pcmParams->nPortIndex) {
1378 memcpy(ComponentConfigStructure, pComponentPrivate->pcmParams,
[all...]
H A DOMX_AacDec_Utils.c487 OMX_MEMFREE_STRUCT(pComponentPrivate->pcmParams);
986 if(pComponentPrivate->pcmParams->bInterleaved){
1005 if(pComponentPrivate->pcmParams->bInterleaved){
1892 if(pComponentPrivate->pcmParams->nSamplingRate != AACDec_GetSampleRatebyIndex(iSampleRateIndex)){
1895 pComponentPrivate->pcmParams->nSamplingRate = pComponentPrivate->aacParams->nSampleRate;
1897 pComponentPrivate->pcmParams->nSamplingRate);
1902 pComponentPrivate->pcmParams->nChannels = AACDEC_GetBits(&nBitPosition, 4, pHeaderStream, OMX_TRUE);
1903 OMX_PRINT2(pComponentPrivate->dbg, "nChannels %ld\n",pComponentPrivate->pcmParams->nChannels);
1905 pComponentPrivate->pcmParams->nChannels = 2;
1930 OMX_PRDSP2(pComponentPrivate->dbg, "sbrPresentFlag not present! %ld\n",pComponentPrivate->pcmParams
[all...]
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/src/
H A DOMX_G729Encoder.c258 pComponentPrivate->pcmParams = g729_ip;
835 pComponentPrivate->pcmParams->nPortIndex) {
838 pComponentPrivate->pcmParams,
1030 if (pComponentPrivate->pcmParams == NULL) {
1035 memcpy(pComponentPrivate->pcmParams, pPcmPort, sizeof(OMX_AUDIO_PARAM_PCMMODETYPE));
H A DOMX_G729Enc_Utils.c470 OMX_G729MEMFREE_STRUCT(pComponentPrivate->pcmParams);
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
H A DOMX_WbAmrEncoder.c269 pComponentPrivate->pcmParams = amr_ip;
956 if (pComponentPrivate->pcmParams == NULL) {
961 pComponentPrivate->pcmParams,
1101 if (((WBAMRENC_COMPONENT_PRIVATE*) pHandle->pComponentPrivate)->pcmParams == NULL) {
1106 pHandle->pComponentPrivate)->pcmParams,
1236 if (pComponentPrivate->pcmParams == NULL) {
1240 memcpy(pComponentPrivate->pcmParams,
H A DOMX_WbAmrEnc_Utils.c464 OMX_MEMFREE_STRUCT(pComponentPrivate->pcmParams);
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
H A DOMX_AmrEncoder.c285 pComponentPrivate->pcmParams = amr_ip;
1001 if (pComponentPrivate->pcmParams == NULL) {
1005 memcpy(ComponentParameterStructure, pComponentPrivate->pcmParams, sizeof(OMX_AUDIO_PARAM_PCMMODETYPE));
1127 pHandle->pComponentPrivate)->pcmParams, pCompAmrParam, sizeof(OMX_AUDIO_PARAM_AMRTYPE));
1246 if(pCompParam && (pComponentPrivate->pcmParams)){
1248 memcpy(pComponentPrivate->pcmParams, amr_ip, sizeof(OMX_AUDIO_PARAM_PCMMODETYPE));
H A DOMX_AmrEnc_Utils.c454 OMX_MEMFREE_STRUCT(pComponentPrivate->pcmParams);
2336 (pComponentPrivate_CC->pcmParams->nSamplingRate*pComponentPrivate_CC->pcmParams->nChannels) ;
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/inc/
H A DOMX_AacDec_Utils.h710 OMX_AUDIO_PARAM_PCMMODETYPE* pcmParams; member in struct:AACDEC_COMPONENT_PRIVATE
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/inc/
H A DOMX_G729Enc_Utils.h669 OMX_AUDIO_PARAM_PCMMODETYPE* pcmParams; member in struct:G729ENC_COMPONENT_PRIVATE
/hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/inc/
H A DOMX_Mp3Dec_Utils.h560 OMX_AUDIO_PARAM_PCMMODETYPE* pcmParams; member in struct:MP3DEC_COMPONENT_PRIVATE
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/inc/
H A DOMX_AmrEnc_Utils.h726 OMX_AUDIO_PARAM_PCMMODETYPE* pcmParams; member in struct:AMRENC_COMPONENT_PRIVATE
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/inc/
H A DOMX_WbAmrEnc_Utils.h569 OMX_AUDIO_PARAM_PCMMODETYPE* pcmParams; member in struct:WBAMRENC_COMPONENT_PRIVATE

Completed in 365 milliseconds