HomeSort by relevance Sort by last modified time
    Searched defs:pVars (Results 1 - 7 of 7) sorted by null

  /frameworks/av/media/libstagefright/codecs/aacdec/
pvmp4audiodecoderconfig.cpp 26 pVars->bno
184 tDec_Int_File *pVars; /* Helper pointer */
191 pVars = (tDec_Int_File *)pMem;
195 pVars->inputStream.pBuffer = pExt->pInputBuffer;
197 pVars->inputStream.inputBufferCurrentLength =
200 pVars->inputStream.availableBits =
207 pVars->inputStream.usedBits = initialUsedBits;
209 if (initialUsedBits <= pVars->inputStream.availableBits)
217 pVars->aacConfigUtilityEnabled = false; /* set aac dec mode */
219 status = get_audio_specific_config(pVars);
    [all...]
pvmp4audiodecoderinitlibrary.cpp 131 pVars = pMem;
134 to = pVars,
137 MODIFYING(*pVars = 0)
140 pVars->current_program = -1
141 pVars->mc_info.sampling_rate_idx = Fs_44
142 pVars->frameLength = LONG_WINDOW
145 pVars->winmap[ONLY_LONG_SEQUENCE] = &pVars->longFrameInfo;
146 pVars->winmap[LONG_START_SEQUENCE] = &pVars->longFrameInfo
    [all...]
pvmp4setaudioconfig.cpp 180 tDec_Int_File *pVars; /* Helper pointer */
187 pVars = (tDec_Int_File *)pMem;
191 pVars->inputStream.pBuffer = pExt->pInputBuffer;
193 pVars->inputStream.availableBits = 0;
195 pVars->inputStream.usedBits = 0;
206 pVars->prog_config.sampling_rate_idx = 0;
209 pVars->prog_config.sampling_rate_idx = 1;
212 pVars->prog_config.sampling_rate_idx = 2;
215 pVars->prog_config.sampling_rate_idx = 3;
218 pVars->prog_config.sampling_rate_idx = 4
    [all...]
pvmp4audiodecoderresetbuffer.cpp 25 Description: (1) add more comments (2) set pVars->bno = 1
71 the audio. The frame number counter, pVars->bno, is set to 1 because the
72 audioSpecificInfo is decoded on pVars->bno==0
163 tDec_Int_File *pVars; /* Helper pointer */
178 pVars = (tDec_Int_File *)pMem;
184 pv_memset(pVars->perChan[LEFT].time_quant,
186 LONG_WINDOW*sizeof(pVars->perChan[LEFT].time_quant[0]));
188 pv_memset(pVars->perChan[RIGHT].time_quant,
190 LONG_WINDOW*sizeof(pVars->perChan[RIGHT].time_quant[0]));
195 if (!pVars->sbrDecoderData.setStreamType) /* reset only when stream type is defined *
    [all...]
pvmp4audiodecoderframe.cpp 74 Description: Added cast, since pVars->inputStream.usedBits is UInt, and
78 (Int)(pVars->inputStream.usedBits & INBUF_BIT_MODULO_MASK);
518 tDec_Int_File *pVars; /* Helper pointer */
539 pVars = (tDec_Int_File *)pMem;
541 pMC_Info = &pVars->mc_info;
543 pChVars[LEFT] = &pVars->perChan[LEFT];
544 pChVars[RIGHT] = &pVars->perChan[RIGHT];
552 sbrDecoderData = (SBRDECODER_DATA *) & pVars->sbrDecoderData;
553 sbrDec = (SBR_DEC *) & pVars->sbrDec;
554 sbrBitStream = (SBRBITSTREAM *) & pVars->sbrBitStr
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_seek_synch.cpp 136 tmp3dec_file *pVars;
138 pVars = (tmp3dec_file *)pMem;
140 pVars->inputStream.pBuffer = pExt->pInputBuffer;
141 pVars->inputStream.usedBits = (pExt->inputBufferUsedLength << 3); // in bits
144 pVars->inputStream.inputBufferCurrentLength = (pExt->inputBufferCurrentLength); // in bits
146 err = pvmp3_header_sync(&pVars->inputStream);
153 uint32 temp = getNbits(&pVars->inputStream, 21);
155 pVars->inputStream.usedBits -= 21 + SYNC_WORD_LNGTH;
193 if (numBytes > (int32)pVars->inputStream.inputBufferCurrentLength)
199 else if (numBytes == (int32)pVars->inputStream.inputBufferCurrentLength
    [all...]
pvmp3_framedecoder.cpp 168 tmp3dec_file *pVars = (tmp3dec_file *)pMem;
173 pVars->inputStream.pBuffer = pExt->pInputBuffer;
176 pVars->inputStream.usedBits = pExt->inputBufferUsedLength << 3;
177 pVars->inputStream.inputBufferCurrentLength = pExt->inputBufferCurrentLength;
180 errorCode = pvmp3_decode_header(&pVars->inputStream,
190 pVars->num_channels = (info->mode == MPG_MD_MONO) ? 1 : 2;
191 pExt->num_channels = pVars->num_channels;
214 pChVars[ LEFT] = &pVars->perChan[ LEFT];
215 pChVars[RIGHT] = &pVars->perChan[RIGHT];
225 sent_crc = getUpTo17bits(&pVars->inputStream, 16)
    [all...]

Completed in 278 milliseconds