Home | History | Annotate | Download | only in src

Lines Matching refs:_stbl_buff_size

54         _stbl_buff_size = MAX_CACHED_TABLE_ENTRIES_MBDS;
58 _stbl_buff_size = MAX_CACHED_TABLE_ENTRIES_FILE;
96 if ((_sampleCount > _stbl_buff_size)) // cahce size is 4K so that optimization should work if entry_count is greater than 4K
98 uint32 fptrBuffSize = (_sampleCount / _stbl_buff_size) + 1;
108 PV_MP4_FF_ARRAY_NEW(NULL, int32, (_stbl_buff_size), _psampleSizeVec);
146 _stbl_buff_size = _sampleCount;
152 _stbl_buff_size = _sampleCount;
218 _curr_entry_point = _parsed_entry_cnt % _stbl_buff_size;
219 _curr_buff_number = _parsed_entry_cnt / _stbl_buff_size;
288 uint32 entryLoc = index / _stbl_buff_size;
291 uint32 actualEntryIndex = _parsed_entry_cnt % _stbl_buff_size;
292 uint32 prevEntriesInBuffer = _stbl_buff_size - actualEntryIndex;
298 return (_psampleSizeVec[index%_stbl_buff_size]);
304 _parsed_entry_cnt = entryLoc * _stbl_buff_size;
309 return (_psampleSizeVec[index%_stbl_buff_size]);