Lines Matching refs:videoEncConfig

1201 Encode_Status VideoEncoderBase::setConfig(VideoParamConfigSet *videoEncConfig) {  in setConfig()  argument
1204 CHECK_NULL_RETURN_IFFAIL(videoEncConfig); in setConfig()
1205 LOG_V("Config type = %d\n", (int)videoEncConfig->type); in setConfig()
1215 switch (videoEncConfig->type) { in setConfig()
1218 reinterpret_cast <VideoConfigFrameRate *> (videoEncConfig); in setConfig()
1230 reinterpret_cast <VideoConfigBitRate *> (videoEncConfig); in setConfig()
1258 reinterpret_cast <VideoConfigIntraRefreshType *> (videoEncConfig); in setConfig()
1269 reinterpret_cast <VideoConfigCyclicFrameInterval *> (videoEncConfig); in setConfig()
1280 VideoConfigAIR *configAIR = reinterpret_cast <VideoConfigAIR *> (videoEncConfig); in setConfig()
1292 VideoConfigCIR *configCIR = reinterpret_cast <VideoConfigCIR *> (videoEncConfig); in setConfig()
1309 ret = derivedSetConfig(videoEncConfig); in setConfig()
1320 Encode_Status VideoEncoderBase::getConfig(VideoParamConfigSet *videoEncConfig) { in getConfig() argument
1323 CHECK_NULL_RETURN_IFFAIL(videoEncConfig); in getConfig()
1324 LOG_V("Config type = %d\n", (int)videoEncConfig->type); in getConfig()
1326 switch (videoEncConfig->type) { in getConfig()
1329 reinterpret_cast <VideoConfigFrameRate *> (videoEncConfig); in getConfig()
1341 reinterpret_cast <VideoConfigBitRate *> (videoEncConfig); in getConfig()
1358 reinterpret_cast <VideoConfigIntraRefreshType *> (videoEncConfig); in getConfig()
1369 reinterpret_cast <VideoConfigCyclicFrameInterval *> (videoEncConfig); in getConfig()
1380 VideoConfigAIR *configAIR = reinterpret_cast <VideoConfigAIR *> (videoEncConfig); in getConfig()
1391 VideoConfigCIR *configCIR = reinterpret_cast <VideoConfigCIR *> (videoEncConfig); in getConfig()
1406 ret = derivedGetConfig(videoEncConfig); in getConfig()