HomeSort by relevance Sort by last modified time
    Searched refs:pInputBuffer (Results 1 - 25 of 39) sorted by null

1 2

  /external/sonivox/arm-wt-22k/lib_src/
eas_mixer.h 43 extern void SynthMasterGain( long *pInputBuffer, EAS_PCM *pOutputBuffer, EAS_U16 nGain, EAS_U16 nNumLoopSamples);
122 * pInputBuffer 16-bit input buffer
133 void EAS_MixStream (EAS_PCM *pInputBuffer, EAS_I32 *pMixBuffer, EAS_I32 numSamples, EAS_I32 gainLeft, EAS_I32 gainRight, EAS_I32 gainIncLeft, EAS_I32 gainIncRight, EAS_I32 flags);
eas_mixer.c 266 void SynthMasterGain (long *pInputBuffer, EAS_PCM *pOutputBuffer, EAS_U16 nGain, EAS_U16 numSamples) {
273 s = *pInputBuffer++;
327 * pInputBuffer 16-bit input buffer
338 void EAS_MixStream (EAS_PCM *pInputBuffer, EAS_I32 *pMixBuffer, EAS_I32 numSamples, EAS_I32 gainLeft, EAS_I32 gainRight, EAS_I32 gainIncLeft, EAS_I32 gainIncRight, EAS_I32 flags)
372 pMixBuffer[dest] += (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
382 pMixBuffer[dest] += (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
383 pMixBuffer[dest+1] += (pInputBuffer[src] * gainRight) >> NUM_MIXER_GUARD_BITS;
393 temp = (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS;
394 temp += ((pInputBuffer[src+1] * gainRight) >> NUM_MIXER_GUARD_BITS);
405 pMixBuffer[dest] += (pInputBuffer[src] * gainLeft) >> NUM_MIXER_GUARD_BITS
    [all...]
ARM-E_voice_gain_gnu.s 42 pInputBuffer .req r2
72 LDR pInputBuffer, [pWTFrame, #m_pAudioBuffer]
107 LDRSH tmp0, [pInputBuffer], #2
126 LDRGTSH tmp0, [pInputBuffer], #2
146 LDRSH tmp0, [pInputBuffer], #NEXT_OUTPUT_PCM @ fetch voice output
ARM-E_mastergain_gnu.s 10 @ pInputBuffer
24 @ long *pInputBuffer
eas_wtengine.c 80 EAS_PCM *pInputBuffer;
100 pInputBuffer = pWTIntFrame->pAudioBuffer;
117 tmp0 = *pInputBuffer++;
  /frameworks/av/media/libstagefright/codecs/mp3dec/include/
pvmp3decoder_api.h 134 uint8 *pInputBuffer;
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/tests/
G722EncTest.c 309 OMX_U8* pInputBuffer = NULL;
630 pInputBuffer = (OMX_U8*)malloc(inBufSize+G722ENC_CACHE_ALIGN_MALLOC);
631 pInputBuffer = pInputBuffer+G722ENC_CACHE_ALIGN_OFFSET;
632 APP_MEMPRINT("%d:::[TESTAPPALLOC] %p\n",__LINE__,pInputBuffer);
634 error = OMX_UseBuffer(pHandle,&pInputBufferHeader,0,NULL,inBufSize,pInputBuffer);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_enc/tests/
G729EncTest.c 231 OMX_U8* pInputBuffer[G729APP_MAX_NUM_OF_BUFS],
376 OMX_U8* pInputBuffer[G729APP_MAX_NUM_OF_BUFS] = {NULL};
770 pInputBuffer[i] = (OMX_U8*)malloc(G729APP_INPUT_BUFFER_SIZE*framesPerBuffer);
771 pInputBuffer[i] += 128;
773 APP_MEMPRINT("%d :: [TESTAPP ALLOC] pInputBuffer[%d] = %p\n",__LINE__,i,pInputBuffer[i]);
774 if(NULL == pInputBuffer[i]) {
781 eError = OMX_UseBuffer(pHandle, &pInputBufferHeader[i], 0, NULL, G729APP_INPUT_BUFFER_SIZE*framesPerBuffer, pInputBuffer[i]);
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/test/
mp3dec_test.cpp 108 config.pInputBuffer = inputBuf;
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/tests/
G729DecTest.c 191 OMX_U8* pInputBuffer[10],
395 OMX_U8* pInputBuffer[10] = {NULL};
811 pInputBuffer[i] = (OMX_U8*)malloc((INPUT_G729DEC_BUFFER_SIZE*packetsPerBuffer) + EXTRA_BUFFBYTES);
812 memset(pInputBuffer[i] , 0x0, (INPUT_G729DEC_BUFFER_SIZE*packetsPerBuffer) + EXTRA_BUFFBYTES);
813 APP_MEMPRINT("%d:::[TESTAPPALLOC] %p\n",__LINE__,pInputBuffer[i]);
814 pInputBuffer[i] = pInputBuffer[i] + CACHE_ALIGNMENT;
818 error = OMX_UseBuffer(pHandle,&pInputBufferHeader[i],0,pInBufferParam[i],INPUT_G729DEC_BUFFER_SIZE*packetsPerBuffer,pInputBuffer[i]);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
G726EncTest.c 463 OMX_U8* pInputBuffer[NBAPP_MAX_NUM_OF_BUFS] = {NULL};
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/tests/
AmrEncTest.c 529 OMX_U8* pInputBuffer[NBAPP_MAX_NUM_OF_BUFS];
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/tests/
WbAmrEncTest.c 508 OMX_U8* pInputBuffer[WBAPP_MAX_NUM_OF_BUFS];
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/tests/
WBAmrDecTest.c 505 OMX_U8* pInputBuffer[10];
966 pInputBuffer[i] = (OMX_U8*)newmalloc(INPUT_WBAMRDEC_BUFFER_SIZE*3 + 256);
967 APP_MEMPRINT("%d:::[TESTAPPALLOC] %p\n",__LINE__,pInputBuffer[i]);
968 pInputBuffer[i] = pInputBuffer[i] + 128;
971 error = OMX_UseBuffer(pHandle,&pInputBufferHeader[i],0,NULL,INPUT_WBAMRDEC_BUFFER_SIZE*3,pInputBuffer[i]);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/tests/
G711DecTest.c 241 OMX_U8* pInputBuffer[10] = {NULL};
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_seek_synch.cpp 140 pVars->inputStream.pBuffer = pExt->pInputBuffer;
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/tests/
AacEncTest.c 583 OMX_U8* pInputBuffer[5];
    [all...]
  /device/huawei/angler/camera/QCamera2/HAL3/
QCamera3Channel.h 83 camera3_stream_buffer_t* /*pInputBuffer*/,
166 camera3_stream_buffer_t* pInputBuffer,
187 camera3_stream_buffer_t *pInputBuffer,
191 camera3_stream_buffer_t *pInputBuffer,
384 camera3_stream_buffer_t* pInputBuffer,
446 camera3_stream_buffer_t* pInputBuffer,
QCamera3Channel.cpp 678 * @pInputBuffer : pointer to input buffer if an input request
687 camera3_stream_buffer_t* pInputBuffer,
698 if (pInputBuffer) {
705 setReprocConfig(reproc_cfg, pInputBuffer, metadata, mStreamFormat, dim);
715 rc = setFwkInputPPData(src_frame, pInputBuffer, &reproc_cfg, metadata, buffer, frameNumber);
851 * @pInputBuffer : input buffer for reprocessing
863 camera3_stream_buffer_t *pInputBuffer, reprocess_config_t *reproc_cfg,
868 int input_index = mOfflineMemory.getMatchBufIndex((void*)pInputBuffer->buffer);
870 rc = mOfflineMemory.registerBuffer(pInputBuffer->buffer, mStreamType);
876 input_index = mOfflineMemory.getMatchBufIndex((void*)pInputBuffer->buffer)
    [all...]
  /device/lge/bullhead/camera/QCamera2/HAL3/
QCamera3Channel.h 83 camera3_stream_buffer_t* /*pInputBuffer*/,
166 camera3_stream_buffer_t* pInputBuffer,
187 camera3_stream_buffer_t *pInputBuffer,
191 camera3_stream_buffer_t *pInputBuffer,
384 camera3_stream_buffer_t* pInputBuffer,
446 camera3_stream_buffer_t* pInputBuffer,
QCamera3Channel.cpp 678 * @pInputBuffer : pointer to input buffer if an input request
687 camera3_stream_buffer_t* pInputBuffer,
698 if (pInputBuffer) {
705 setReprocConfig(reproc_cfg, pInputBuffer, metadata, mStreamFormat, dim);
715 rc = setFwkInputPPData(src_frame, pInputBuffer, &reproc_cfg, metadata, buffer, frameNumber);
851 * @pInputBuffer : input buffer for reprocessing
863 camera3_stream_buffer_t *pInputBuffer, reprocess_config_t *reproc_cfg,
868 int input_index = mOfflineMemory.getMatchBufIndex((void*)pInputBuffer->buffer);
870 rc = mOfflineMemory.registerBuffer(pInputBuffer->buffer, mStreamType);
876 input_index = mOfflineMemory.getMatchBufIndex((void*)pInputBuffer->buffer)
    [all...]
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3Channel.h 107 camera3_stream_buffer_t* /*pInputBuffer*/,
203 camera3_stream_buffer_t* pInputBuffer,
224 camera3_stream_buffer_t *pInputBuffer,
228 camera3_stream_buffer_t *pInputBuffer,
438 camera3_stream_buffer_t* pInputBuffer,
503 camera3_stream_buffer_t* pInputBuffer,
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/tests/
G711EncTest.c 214 OMX_U8* pInputBuffer[10] = {NULL};
414 OMX_U8* pInputBuffer[G711ENC_MAX_NUM_OF_BUFS] = {NULL};
857 pInputBuffer[i] = (OMX_U8*)malloc(audioinfo->nIpBufSize);
858 APP_MEMPRINT("%d [TESTAPP ALLOC] pInputBuffer[%d] = %p\n",__LINE__,i,pInputBuffer[i]);
859 if(NULL == pInputBuffer[i]) {
866 eError = OMX_UseBuffer(pHandle, &pInputBufferHeader[i], 0, NULL, audioinfo->nIpBufSize, pInputBuffer[i]);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/tests/
G722DecTest.c     [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/
SoftMP3.cpp 265 mConfig->pInputBuffer =
270 mConfig->pInputBuffer = NULL;

Completed in 2775 milliseconds

1 2