Home
last modified time | relevance | path

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

/frameworks/av/media/codecs/mp3dec/src/
Dpvmp3_framedecoder.cpp168 tmp3dec_file *pVars = (tmp3dec_file *)pMem; in pvmp3_framedecoder() local
173 pVars->inputStream.pBuffer = pExt->pInputBuffer; in pvmp3_framedecoder()
176 pVars->inputStream.usedBits = pExt->inputBufferUsedLength << 3; in pvmp3_framedecoder()
177 pVars->inputStream.inputBufferCurrentLength = pExt->inputBufferCurrentLength; in pvmp3_framedecoder()
180 errorCode = pvmp3_decode_header(&pVars->inputStream, in pvmp3_framedecoder()
190 pVars->num_channels = (info->mode == MPG_MD_MONO) ? 1 : 2; in pvmp3_framedecoder()
191 pExt->num_channels = pVars->num_channels; in pvmp3_framedecoder()
214 pChVars[ LEFT] = &pVars->perChan[ LEFT]; in pvmp3_framedecoder()
215 pChVars[RIGHT] = &pVars->perChan[RIGHT]; in pvmp3_framedecoder()
222 if (!bitsAvailable(&pVars->inputStream, 16)) in pvmp3_framedecoder()
[all …]
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()
144 pVars->inputStream.inputBufferCurrentLength = (pExt->inputBufferCurrentLength); // 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()
199 else if (numBytes == (int32)pVars->inputStream.inputBufferCurrentLength) in pvmp3_frame_synch()
[all …]
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()
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()
Dpvmp3_get_main_data_size.h90 tmp3dec_file *pVars);
Dpv_mp3_huffman.h86 tmp3dec_file *pVars,