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

/hardware/intel/common/libmix/videoencoder/
H A DPVSoftMPEG4Encoder.h46 virtual Encode_Status setConfig(VideoParamConfigSet *videoEncConfig) {return ENCODE_SUCCESS;} argument
47 virtual Encode_Status getConfig(VideoParamConfigSet *videoEncConfig) {return ENCODE_SUCCESS;} argument
H A DVideoEncoderVP8.cpp406 Encode_Status VideoEncoderVP8::derivedGetConfig(VideoParamConfigSet *videoEncConfig) { argument
408 CHECK_NULL_RETURN_IFFAIL(videoEncConfig);
410 switch (videoEncConfig->type)
414 reinterpret_cast<VideoConfigVP8*> (videoEncConfig);
427 reinterpret_cast<VideoConfigVP8ReferenceFrame*> (videoEncConfig);
441 reinterpret_cast<VideoConfigVP8MaxFrameSizeRatio*> (videoEncConfig);
460 Encode_Status VideoEncoderVP8::derivedSetConfig(VideoParamConfigSet *videoEncConfig) { argument
462 CHECK_NULL_RETURN_IFFAIL(videoEncConfig);
464 switch (videoEncConfig->type)
468 reinterpret_cast<VideoConfigVP8*> (videoEncConfig);
[all...]
H A DVideoEncoderAVC.cpp121 Encode_Status VideoEncoderAVC::derivedSetConfig(VideoParamConfigSet *videoEncConfig) { argument
123 CHECK_NULL_RETURN_IFFAIL(videoEncConfig);
124 LOG_V("Config type = %d\n", (int)videoEncConfig->type);
126 switch (videoEncConfig->type) {
130 reinterpret_cast <VideoConfigAVCIntraPeriod *> (videoEncConfig);
150 reinterpret_cast <VideoConfigNALSize *> (videoEncConfig);
169 reinterpret_cast <VideoConfigSliceNum *> (videoEncConfig);
188 VideoParamConfigSet *videoEncConfig) {
190 CHECK_NULL_RETURN_IFFAIL(videoEncConfig);
191 LOG_V("Config type = %d\n", (int)videoEncConfig
187 derivedGetConfig( VideoParamConfigSet *videoEncConfig) argument
[all...]
H A DVideoEncoderBase.cpp1201 Encode_Status VideoEncoderBase::setConfig(VideoParamConfigSet *videoEncConfig) { argument
1204 CHECK_NULL_RETURN_IFFAIL(videoEncConfig);
1205 LOG_V("Config type = %d\n", (int)videoEncConfig->type);
1215 switch (videoEncConfig->type) {
1218 reinterpret_cast <VideoConfigFrameRate *> (videoEncConfig);
1230 reinterpret_cast <VideoConfigBitRate *> (videoEncConfig);
1258 reinterpret_cast <VideoConfigIntraRefreshType *> (videoEncConfig);
1269 reinterpret_cast <VideoConfigCyclicFrameInterval *> (videoEncConfig);
1280 VideoConfigAIR *configAIR = reinterpret_cast <VideoConfigAIR *> (videoEncConfig);
1292 VideoConfigCIR *configCIR = reinterpret_cast <VideoConfigCIR *> (videoEncConfig);
1320 getConfig(VideoParamConfigSet *videoEncConfig) argument
[all...]

Completed in 54 milliseconds