Home
last modified time | relevance | path

Searched refs:pVars (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/av/media/codecs/mp3dec/src/
H A Dpvmp3_framedecoder.cpp287 if ((uint32)pVars->predicted_frame_size > pVars->inputStream.inputBufferCurrentLength) in pvmp3_framedecoder()
321 pVars->frame_start += temp; in pvmp3_framedecoder()
608 pVars->mainDataStream.offset = module(pVars->mainDataStream.offset, BUFSIZE); in fillMainDataBuf()
650 tmp3dec_file *pVars; in pvmp3_InitDecoder() local
653 pVars = (tmp3dec_file *)pMem; in pvmp3_InitDecoder()
654 memset(pVars, 0, sizeof(*pVars)); in pvmp3_InitDecoder()
666 pHuff = pVars->ht; in pvmp3_InitDecoder()
754 tmp3dec_file *pVars; in pvmp3_resetDecoder() local
757 pVars = (tmp3dec_file *)pMem; in pvmp3_resetDecoder()
761 pVars->frame_start = 0; in pvmp3_resetDecoder()
[all …]
H A Dpvmp3_seek_synch.cpp136 tmp3dec_file *pVars; in pvmp3_frame_synch() local
138 pVars = (tmp3dec_file *)pMem; in pvmp3_frame_synch()
140 pVars->inputStream.pBuffer = pExt->pInputBuffer; in pvmp3_frame_synch()
141 pVars->inputStream.usedBits = (pExt->inputBufferUsedLength << 3); // in bits in pvmp3_frame_synch()
146 err = pvmp3_header_sync(&pVars->inputStream); in pvmp3_frame_synch()
153 uint32 temp = getNbits(&pVars->inputStream, 21); in pvmp3_frame_synch()
155 pVars->inputStream.usedBits -= 21 + SYNC_WORD_LNGTH; in pvmp3_frame_synch()
193 if (numBytes > (int32)pVars->inputStream.inputBufferCurrentLength) in pvmp3_frame_synch()
202 pExt->inputBufferUsedLength = pVars->inputStream.usedBits >> 3; in pvmp3_frame_synch()
208 int32 offset = pVars->inputStream.usedBits + ((numBytes) << 3); in pvmp3_frame_synch()
[all …]
H A Dpvmp3_huffman_parsing.cpp127 tmp3dec_file *pVars, in pvmp3_huffman_parsing() argument
141 tmp3Bits *pMainData = &pVars->mainDataStream; in pvmp3_huffman_parsing()
185 h = &(pVars->ht[grInfo->table_select[0]]); in pvmp3_huffman_parsing()
200 h = &(pVars->ht[grInfo->table_select[1]]); in pvmp3_huffman_parsing()
215 h = &(pVars->ht[grInfo->table_select[2]]); in pvmp3_huffman_parsing()
232 h = &(pVars->ht[grInfo->table_select[0]]); in pvmp3_huffman_parsing()
246 h = &(pVars->ht[grInfo->table_select[1]]); in pvmp3_huffman_parsing()
262 h = &(pVars->ht[grInfo->table_select[0]]); in pvmp3_huffman_parsing()
281 h = &(pVars->ht[grInfo->count1table_select+32]); in pvmp3_huffman_parsing()
H A Dpvmp3_get_main_data_size.cpp117 tmp3dec_file *pVars) in pvmp3_get_main_data_size() argument
132 pVars->predicted_frame_size = numBytes; in pvmp3_get_main_data_size()
145 pVars->predicted_frame_size = numBytes; in pvmp3_get_main_data_size()
160 pVars->predicted_frame_size++; in pvmp3_get_main_data_size()
H A Dpvmp3_get_main_data_size.h90 tmp3dec_file *pVars);
H A Dpv_mp3_huffman.h86 tmp3dec_file *pVars,