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

1 2 3 4

  /bionic/libc/bionic/
ether_aton.c 53 ether_aton_r (const char *asc, struct ether_addr * addr)
57 val0 = xdigit(*asc);
58 asc++;
62 val1 = xdigit(*asc);
63 asc++;
70 if (*asc != ':')
72 asc++;
75 if (*asc != '\0')
85 ether_aton (const char *asc)
88 return ether_aton_r(asc, &addr)
    [all...]
  /art/jdwpspy/
Main.cpp 40 char* asc; local
57 char* asc = out + 59; local
73 asc += gap;
82 *asc++ = *addr;
84 *asc++ = '.';
92 *asc++ = ' ';
  /external/aac/libMpegTPEnc/src/
tpenc_asc.cpp 296 LATM: align with respect to the first bit of the ASC */
370 HANDLE_FDK_BITSTREAM asc,
380 FDKwriteBits( asc, ((samplesPerFrame==960 || samplesPerFrame==480)?1:0), 1); /* frameLengthFlag: 1 for a 960/480 (I)MDCT, 0 for a 1024/512 (I)MDCT*/
381 FDKwriteBits( asc, 0, 1); /* dependsOnCoreCoder: Sampling Rate Coder Specific, see in ISO/IEC 14496-3 Subpart 4, 4.4.1 */
382 FDKwriteBits( asc, extFlg, 1 ); /* Extension Flag: Shall be 1 for aot = 17,19,20,21,22,23 */
386 transportEnc_writePCE(asc, config->channelMode, config->samplingRate, 0, 1, config->matrixMixdownA, (config->flags&CC_PSEUDO_SURROUND)?1:0, alignAnchor);
390 FDKwriteBits( asc, config->BSACnumOfSubFrame, 5 ); /* numOfSubFrame */
391 FDKwriteBits( asc, config->BSAClayerLength, 11 ); /* layer_length */
396 FDKwriteBits( asc, (config->flags & CC_VCB11) ? 1 : 0, 1 ); /* aacSectionDataResillienceFlag */
397 FDKwriteBits( asc, (config->flags & CC_RVLC) ? 1 : 0, 1 ); /* aacScaleFactorDataResillienceFlag *
    [all...]
  /external/aac/libMpegTPDec/src/
tpdec_asc.cpp 666 CSAudioSpecificConfig *asc,
681 if( asc->m_channelConfiguration == 0 ) {
682 CProgramConfig_Read(&asc->m_progrConfigElement, bs, ascStartAnchor);
685 if ((asc->m_aot == AOT_AAC_SCAL) || (asc->m_aot == AOT_ER_AAC_SCAL)) {
690 if (asc->m_aot == AOT_ER_BSAC) {
695 if ((asc->m_aot == AOT_ER_AAC_LC) || (asc->m_aot == AOT_ER_AAC_LTP) ||
696 (asc->m_aot == AOT_ER_AAC_SCAL) || (asc->m_aot == AOT_ER_AAC_LD)
    [all...]
tpdec_lib.cpp 130 CSAudioSpecificConfig asc[(1*2)]; /* Audio specific config from the last config found. */ member in struct:TRANSPORTDEC
238 err = CLatmDemux_ReadStreamMuxConfig(hBs, pLatmDemux, &hTp->callbacks, hTp->asc, &fConfigFound);
246 err = AudioSpecificConfig_Parse(&hTp->asc[layer], hBs, 1, &hTp->callbacks);
250 errC = hTp->callbacks.cbUpdateConfig(hTp->callbacks.cbUpdateConfigData, &hTp->asc[layer]);
463 INT samplesPerFrame = hTp->asc->m_samplesPerFrame;
464 INT samplingFrequency = (INT)hTp->asc->m_samplingFrequency;
540 err = adtsRead_DecodeHeader( &hTp->parser.adts, &hTp->asc[0], hBs, ignoreBufferFullness );
546 errC = hTp->callbacks.cbUpdateConfig(hTp->callbacks.cbUpdateConfigData, &hTp->asc[0]);
598 hTp->asc,
949 if (hTp->avgBitRate > 0 && hTp->asc[0].m_samplesPerFrame > 0 && hTp->asc[0].m_samplingFrequency > 0
    [all...]
  /external/aac/libAACdec/src/
aacdecoder.cpp 815 LINKSPEC_CPP AAC_DECODER_ERROR CAacDecoder_Init(HANDLE_AACDECODER self, const CSAudioSpecificConfig *asc)
825 switch (asc->m_aot) {
843 switch (asc->m_channelConfiguration) {
846 /* get channels from program config (ASC) */
847 if (CProgramConfig_IsValid(&asc->m_progrConfigElement)) {
848 ascChannels = asc->m_progrConfigElement.NumChannels;
851 /* valid number of channels -> copy program config element (PCE) from ASC */
852 FDKmemcpy(&self->pce, &asc->m_progrConfigElement, sizeof(CProgramConfig));
854 el = CProgramConfig_GetElementTable(&asc->m_progrConfigElement, self->elements, 7);
875 ascChannels = asc->m_channelConfiguration
    [all...]
aacdecoder.h 164 INT ascChannels; /*!< Amount of AAC decoder channels signalled in ASC. */
282 const CSAudioSpecificConfig *asc);