HomeSort by relevance Sort by last modified time
    Searched refs:NumChannels (Results 1 - 8 of 8) sorted by null

  /external/opencore/codecs_v2/audio/aac/dec/util/getactualaacconfig/include/
getactualaacconfig.h 50 uint32* NumChannels);
  /external/opencore/fileformats/wav/parser/src/
pvwavfileparser.cpp 144 NumChannels = 0;
340 NumChannels = (unsigned short)(((*(pBuffer + 3)) << 8) | (*(pBuffer + 2))); // Save Number of Channels
342 ByteRate = (((*(pBuffer + 11)) << 24) | ((*(pBuffer + 10)) << 16) | ((*(pBuffer + 9)) << 8) | (*(pBuffer + 8))); // Save ByteRate ( == SampleRate*NumChannels*BitsPerSample/8)
343 BlockAlign = (unsigned short)(((*(pBuffer + 13)) << 8) | (*(pBuffer + 12))); // Save BlockAlign ( == NumChannels*BitsPerSample/8)
415 //(this check is required to avoid memory crash if any of BytesPerSample or NumChannels is '0')
416 if (BytesPerSample && NumChannels)
418 NumSamples = ((PCMBytesPresent / (BytesPerSample)) / NumChannels);
425 if (!NumChannels || !NumSamples || !SampleRate || !BitsPerSample || !BytesPerSample || !ByteRate)
450 uint32 myBufSize = NumberOfSamples * BytesPerSample * NumChannels;
454 if (((uint32)(BytesPerSample*NumChannels) + pos) > iEndOfDataSubChunkOffset
    [all...]
  /external/opencore/fileformats/wav/parser/include/
pvwavfileparser.h 61 uint16 NumChannels;
87 NumChannels = 0;
127 uint16 NumChannels;
  /external/opencore/codecs_v2/audio/aac/dec/util/getactualaacconfig/src/
getactualaacconfig.cpp 173 uint32* NumChannels)
273 *NumChannels = pVars->mc_info.nch;
297 *NumChannels += 1;
  /external/opencore/codecs_v2/utilities/pv_config_parser/src/
pv_audio_config_parser.cpp 368 uint32 NumChannels;
376 &NumChannels);
378 aOutputs->Channels = (uint16)NumChannels;
  /external/opencore/nodes/pvwavffparsernode/src/
pvmf_wavffparser_node.cpp 694 memFragOut.len = samplesread * wavinfo.BytesPerSample * wavinfo.NumChannels;
    [all...]
  /external/opencore/engines/player/test/src/
test_pv_player_engine_testset8.cpp 896 uint16 NumChannels = ((*(aData + 2)) & 0x000000FF)
899 fprintf(iTestMsgOutputFile, " NumChannels:%d \n", NumChannels);
    [all...]
  /external/opencore/pvmi/media_io/pvmi_mio_avi_wav_fileinput/src/
pvmi_mio_avi_wav_file.cpp 874 iSettings.iNumChannels = wavFileInfo.NumChannels;
    [all...]

Completed in 1736 milliseconds