Lines Matching refs:videoEncConfig
1196 Encode_Status VideoEncoderBase::setConfig(VideoParamConfigSet *videoEncConfig) { in setConfig() argument
1199 CHECK_NULL_RETURN_IFFAIL(videoEncConfig); in setConfig()
1200 LOG_V("Config type = %d\n", (int)videoEncConfig->type); in setConfig()
1210 switch (videoEncConfig->type) { in setConfig()
1213 reinterpret_cast <VideoConfigFrameRate *> (videoEncConfig); in setConfig()
1225 reinterpret_cast <VideoConfigBitRate *> (videoEncConfig); in setConfig()
1253 reinterpret_cast <VideoConfigIntraRefreshType *> (videoEncConfig); in setConfig()
1264 reinterpret_cast <VideoConfigCyclicFrameInterval *> (videoEncConfig); in setConfig()
1275 VideoConfigAIR *configAIR = reinterpret_cast <VideoConfigAIR *> (videoEncConfig); in setConfig()
1287 VideoConfigCIR *configCIR = reinterpret_cast <VideoConfigCIR *> (videoEncConfig); in setConfig()
1304 ret = derivedSetConfig(videoEncConfig); in setConfig()
1315 Encode_Status VideoEncoderBase::getConfig(VideoParamConfigSet *videoEncConfig) { in getConfig() argument
1318 CHECK_NULL_RETURN_IFFAIL(videoEncConfig); in getConfig()
1319 LOG_V("Config type = %d\n", (int)videoEncConfig->type); in getConfig()
1321 switch (videoEncConfig->type) { in getConfig()
1324 reinterpret_cast <VideoConfigFrameRate *> (videoEncConfig); in getConfig()
1336 reinterpret_cast <VideoConfigBitRate *> (videoEncConfig); in getConfig()
1353 reinterpret_cast <VideoConfigIntraRefreshType *> (videoEncConfig); in getConfig()
1364 reinterpret_cast <VideoConfigCyclicFrameInterval *> (videoEncConfig); in getConfig()
1375 VideoConfigAIR *configAIR = reinterpret_cast <VideoConfigAIR *> (videoEncConfig); in getConfig()
1386 VideoConfigCIR *configCIR = reinterpret_cast <VideoConfigCIR *> (videoEncConfig); in getConfig()
1401 ret = derivedGetConfig(videoEncConfig); in getConfig()