Searched defs:newType2PIDs (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp289 KeyedVector<int32_t, Vector<int32_t> > oldType2PIDs, newType2PIDs; local
298 ssize_t index = newType2PIDs.indexOfKey(infos[i].mType);
300 newType2PIDs.add(infos[i].mType, Vector<int32_t>());
302 newType2PIDs.editValueFor(infos[i].mType).push_back(infos[i].mPID);
306 if (oldType2PIDs.size() == newType2PIDs.size()) {
310 if (oldType2PIDs.keyAt(i) != newType2PIDs.keyAt(i)
311 || oldType2PIDs[i].size() != newType2PIDs[i].size()) {
329 ssize_t index = newType2PIDs.indexOfKey(temp[i]->type());
333 Vector<int32_t> &newPIDs = newType2PIDs.editValueAt(index);

Completed in 13 milliseconds