Home | History | Annotate | Download | only in tests

Lines Matching refs:pCompPrivateStructVolume

528     OMX_AUDIO_CONFIG_VOLUMETYPE* pCompPrivateStructVolume = NULL; 
832 pCompPrivateStructVolume = newmalloc (sizeof(OMX_AUDIO_CONFIG_VOLUMETYPE));
833 if(pCompPrivateStructVolume == NULL) {
837 ArrayOfPointers[4] = (OMX_AUDIO_CONFIG_VOLUMETYPE*)pCompPrivateStructVolume;
1148 pCompPrivateStructVolume->nSize = sizeof(OMX_AUDIO_CONFIG_VOLUMETYPE);
1149 pCompPrivateStructVolume->nVersion.s.nVersionMajor = 0xF1;
1150 pCompPrivateStructVolume->nVersion.s.nVersionMinor = 0xF2;
1151 pCompPrivateStructVolume->nPortIndex = OMX_DirInput;
1152 pCompPrivateStructVolume->bLinear = OMX_FALSE;
1153 pCompPrivateStructVolume->sVolume.nValue = 50; /* actual volume */
1154 pCompPrivateStructVolume->sVolume.nMin = 0; /* min volume */
1155 pCompPrivateStructVolume->sVolume.nMax = 100; /* max volume */
1434 pCompPrivateStructVolume->sVolume.nValue = 0x8000;
1435 error = OMX_SetConfig(pHandle, OMX_IndexConfigAudioVolume, pCompPrivateStructVolume);
1443 pCompPrivateStructVolume->sVolume.nValue = 0x1000;
1444 error = OMX_SetConfig(pHandle, OMX_IndexConfigAudioVolume, pCompPrivateStructVolume);
1712 APP_MEMPRINT("%d:::[TESTAPPFREE] %p\n",__LINE__,pCompPrivateStructVolume);
1713 newfree(pCompPrivateStructVolume);