Home
last modified time | relevance | path

Searched refs:paramSet (Results 1 – 8 of 8) sorted by relevance

/external/opencore/fileformats/mp4/parser/src/
Davcconfigurationbox.cpp94 ParameterSet *paramSet = NULL; in AVCConfigurationBox() local
95 PV_MP4_FF_NEW(fp->auditCB, ParameterSet, (parameterSetLen, fp), paramSet); in AVCConfigurationBox()
97 if (!(paramSet->getSuccess())) in AVCConfigurationBox()
99 PV_MP4_FF_DELETE(NULL, ParameterSet, paramSet); in AVCConfigurationBox()
103 (*_sequenceParameterSetVec).push_back(paramSet); in AVCConfigurationBox()
121 ParameterSet *paramSet = NULL; in AVCConfigurationBox() local
122 PV_MP4_FF_NEW(fp->auditCB, ParameterSet, (parameterSetLen, fp), paramSet); in AVCConfigurationBox()
124 if (!(paramSet->getSuccess())) in AVCConfigurationBox()
126 PV_MP4_FF_DELETE(NULL, ParameterSet, paramSet); in AVCConfigurationBox()
130 (*_pictureParameterSetVec).push_back(paramSet); in AVCConfigurationBox()
[all …]
/external/opencore/fileformats/mp4/composer/src/
Davcconfiguration.cpp121 …PVA_FF_ParameterSet *paramSet = OSCL_NEW(PVA_FF_ParameterSet, (_seqParameterSetLen, _pSequencePara… in setSample() local
125 (*_sequenceParameterSetVec).push_back(paramSet); in setSample()
178 …PVA_FF_ParameterSet *paramSet = OSCL_NEW(PVA_FF_ParameterSet, (_picParameterSetLen, _pPictureParam… in setSample() local
181 (*_pictureParameterSetVec).push_back(paramSet); in setSample()
215 uint8* paramSet; in renderToFileStream() local
266 paramSet = pSet->getParameterSet(); in renderToFileStream()
274 if (!PVA_FF_AtomUtils::renderByteData(fp, length, paramSet)) in renderToFileStream()
297 paramSet = pSet->getParameterSet(); in renderToFileStream()
305 if (!PVA_FF_AtomUtils::renderByteData(fp, length, paramSet)) in renderToFileStream()
/external/opencore/fileformats/mp4/parser/include/
Davcsampleentry.h183 bool getSequenceParamSet(int32 index, uint16 &length, uint8* &paramSet) in getSequenceParamSet() argument
187 return (_pAVCConfigurationBox->getSequenceParamSet(index, length, paramSet)); in getSequenceParamSet()
195 bool getPictureParamSet(int32 index, uint16 &length, uint8* &paramSet) in getPictureParamSet() argument
199 return (_pAVCConfigurationBox->getPictureParamSet(index, length, paramSet)); in getPictureParamSet()
Davcconfigurationbox.h114 OSCL_IMPORT_REF bool getSequenceParamSet(int32 index, uint16 &length, uint8* &paramSet);
117 OSCL_IMPORT_REF bool getPictureParamSet(int32 index, uint16 &length, uint8* &paramSet);
/external/opencore/codecs_v2/video/avc_h264/enc/include/
Dpvavcencoderinterface.h337 virtual TAVCEI_RETVAL GetParameterSet(uint8* paramSet, int32* size, int *nalType) = 0;
Dpvavcencoder.h45 … OSCL_IMPORT_REF virtual TAVCEI_RETVAL GetParameterSet(uint8* paramSet, int32* size, int* nalType);
/external/opencore/codecs_v2/video/avc_h264/enc/src/
Dpvavcencoder.cpp331 OSCL_EXPORT_REF TAVCEI_RETVAL PVAVCEncoder::GetParameterSet(uint8 *paramSet, int32 *size, int *aNAL… in GetParameterSet() argument
341 if (paramSet == NULL || size == NULL) in GetParameterSet()
346 avcStatus = PVAVCEncodeNAL(&iAvcHandle, paramSet, &aSize, aNALType); in GetParameterSet()
/external/opencore/nodes/pvomxencnode/src/
Dpvmf_omx_enc_node.cpp750 OsclMemoryFragment paramSet; in PVMFOMXEncNode() local
754 paramSet.ptr = memBufferParamSet; in PVMFOMXEncNode()
755 paramSet.len = DEFAULT_PARAMS_SET_LENGTH; in PVMFOMXEncNode()
757 iParamSet = OsclRefCounterMemFrag(paramSet, refCounterParamSet, DEFAULT_PARAMS_SET_LENGTH); in PVMFOMXEncNode()