Searched refs:_pdataEntryVec (Results 1 – 4 of 4) sorted by relevance
/external/opencore/fileformats/mp4/composer/src/ |
D | datareferenceatom.cpp | 45 for (uint32 i = 0; i < _pdataEntryVec->size(); i++) in ~PVA_FF_DataReferenceAtom() 47 PVA_FF_DataEntryUrlAtom *atom = (PVA_FF_DataEntryUrlAtom*)(*_pdataEntryVec)[i]; in ~PVA_FF_DataReferenceAtom() 50 PV_MP4_FF_TEMPLATED_DELETE(NULL, PVA_FF_DataEntryAtomVecType, Oscl_Vector, _pdataEntryVec); in ~PVA_FF_DataReferenceAtom() 58 PV_MP4_FF_NEW(fp->auditCB, PVA_FF_DataEntryAtomVecType, (), _pdataEntryVec); in init() 72 _pdataEntryVec->push_back(atom); in addDataEntryAtom() 96 for (uint32 i = 0; i < _pdataEntryVec->size(); i++) in renderToFileStream() 98 if (!(*_pdataEntryVec)[i]->renderToFileStream(fp)) in renderToFileStream() 102 rendered += (*_pdataEntryVec)[i]->getSize(); in renderToFileStream() 117 for (uint32 i = 0; i < _pdataEntryVec->size(); i++) in recomputeSize() 119 size += (*_pdataEntryVec)[i]->getSize(); in recomputeSize()
|
/external/opencore/fileformats/mp4/parser/src/ |
D | datareferenceatom.cpp | 42 _pdataEntryVec = NULL; in DataReferenceAtom() 49 PV_MP4_FF_NEW(fp->auditCB, dataEntryUrlAtomVecType, (), _pdataEntryVec); in DataReferenceAtom() 87 (*_pdataEntryVec).push_back(deua); in DataReferenceAtom() 105 if (_pdataEntryVec != NULL) in ~DataReferenceAtom() 107 for (uint32 i = 0; i < _pdataEntryVec->size(); i++) in ~DataReferenceAtom() 109 PV_MP4_FF_DELETE(NULL, DataEntryUrlAtom, (*_pdataEntryVec)[i]); in ~DataReferenceAtom() 112 PV_MP4_FF_TEMPLATED_DELETE(NULL, dataEntryUrlAtomVecType, Oscl_Vector, _pdataEntryVec); in ~DataReferenceAtom() 113 _pdataEntryVec = NULL; in ~DataReferenceAtom() 120 if ((uint32)index < _pdataEntryVec->size()) in getEntryAt() 122 return (DataEntryAtom*)(*_pdataEntryVec)[index]; in getEntryAt()
|
/external/opencore/fileformats/mp4/composer/include/ |
D | datareferenceatom.h | 48 return *_pdataEntryVec; in getDataEntryVec() 52 return *_pdataEntryVec; in getMutableDataEntryVec() 63 …Oscl_Vector<PVA_FF_DataEntryAtom*, OsclMemAllocator> *_pdataEntryVec; // Careful with vector acces… variable
|
/external/opencore/fileformats/mp4/parser/include/ |
D | datareferenceatom.h | 61 Oscl_Vector<DataEntryUrlAtom*, OsclMemAllocator> *_pdataEntryVec; variable
|