HomeSort by relevance Sort by last modified time
    Searched refs:_stbl_buff_size (Results 1 - 10 of 10) sorted by null

  /external/opencore/fileformats/mp4/parser/src/
chunkoffsetatom.cpp 42 _stbl_buff_size = MAX_CACHED_TABLE_ENTRIES_FILE;
75 if ((_entryCount > _stbl_buff_size))
77 uint32 fptrBuffSize = (_entryCount / _stbl_buff_size) + 1;
87 PV_MP4_FF_ARRAY_NEW(NULL, uint32, (_stbl_buff_size), _pchunkOffsets);
125 _stbl_buff_size = _entryCount;
131 _stbl_buff_size = _entryCount;
205 _curr_entry_point = _parsed_entry_cnt % _stbl_buff_size;
206 _curr_buff_number = _parsed_entry_cnt / _stbl_buff_size;
253 uint32 entryLoc = index / _stbl_buff_size;
256 _parsed_entry_cnt = entryLoc * _stbl_buff_size;
    [all...]
timetosampleatom.cpp 61 _stbl_buff_size = MAX_CACHED_TABLE_ENTRIES_FILE;
96 if ((_entryCount > _stbl_buff_size))
98 uint32 fptrBuffSize = (_entryCount / _stbl_buff_size) + 1;
108 PV_MP4_FF_ARRAY_NEW(NULL, uint32, (_stbl_buff_size), _psampleCountVec);
115 PV_MP4_FF_ARRAY_NEW(NULL, uint32, (_stbl_buff_size), _psampleDeltaVec);
124 for (uint32 idx = 0; idx < _stbl_buff_size; idx++) //initialization
158 _stbl_buff_size = _entryCount;
163 _stbl_buff_size = _entryCount;
232 _curr_entry_point = _parsed_entry_cnt % _stbl_buff_size;
233 _curr_buff_number = _parsed_entry_cnt / _stbl_buff_size;
    [all...]
compositionoffsetatom.cpp 82 _stbl_buff_size = CTTS_MIN_SAMPLE_TABLE_SIZE;
128 if (_entryCount > _stbl_buff_size)
131 uint32 fptrBuffSize = (_entryCount / _stbl_buff_size) + 1;
142 PV_MP4_FF_ARRAY_NEW(NULL, uint32, (_stbl_buff_size), _psampleCountVec);
151 PV_MP4_FF_ARRAY_NEW(NULL, uint32, (_stbl_buff_size), _psampleOffsetVec);
161 for (uint32 idx = 0; idx < _stbl_buff_size; idx++) //initialization
198 _stbl_buff_size = _entryCount;
203 _stbl_buff_size = _entryCount;
290 _curr_entry_point = _parsed_entry_cnt % _stbl_buff_size;
291 _curr_buff_number = _parsed_entry_cnt / _stbl_buff_size;
    [all...]
samplesizeatom.cpp 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;
    [all...]
sampletochunkatom.cpp 68 _stbl_buff_size = MAX_CACHED_TABLE_ENTRIES_FILE;
105 if ((_entryCount > _stbl_buff_size)) // cahce size is 4K so that optimization should work if entry_count is greater than 4K
108 uint32 fptrBuffSize = (_entryCount / _stbl_buff_size) + 1;
118 PV_MP4_FF_ARRAY_NEW(NULL, uint32, (_stbl_buff_size), _pfirstChunkVec);
126 PV_MP4_FF_ARRAY_NEW(NULL, uint32, (_stbl_buff_size), _psamplesPerChunkVec);
133 PV_MP4_FF_ARRAY_NEW(NULL, uint32, (_stbl_buff_size), _psampleDescriptionIndexVec);
171 _stbl_buff_size = _entryCount;
177 _stbl_buff_size = _entryCount;
265 _curr_entry_point = _parsed_entry_cnt % _stbl_buff_size;
266 _curr_buff_number = _parsed_entry_cnt / _stbl_buff_size;
    [all...]
  /external/opencore/fileformats/mp4/parser/include/
chunkoffsetatom.h 68 uint32 _stbl_buff_size; member in class:ChunkOffsetAtom
samplesizeatom.h 86 uint32 _stbl_buff_size; member in class:SampleSizeAtom
timetosampleatom.h 98 uint32 _stbl_buff_size; member in class:TimeToSampleAtom
compositionoffsetatom.h 124 uint32 _stbl_buff_size; member in class:CompositionOffsetAtom
sampletochunkatom.h 148 uint32 _stbl_buff_size; member in class:SampleToChunkAtom

Completed in 729 milliseconds