Home
last modified time | relevance | path

Searched refs:codecType_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/talk/app/webrtc/java/jni/
Dandroidmediaencoder_jni.cc164 VideoCodecType codecType_; member in webrtc_jni::MediaCodecVideoEncoder
251 codecType_(codecType), in MediaCodecVideoEncoder()
338 RTC_CHECK(codec_settings->codecType == codecType_) in InitEncode()
340 << codecType_; in InitEncode()
343 scale_ = (codecType_ != kVideoCodecVP9) && (webrtc::field_trial::FindFullName( in InitEncode()
347 if (codecType_ == kVideoCodecVP8) { in InitEncode()
359 } else if (codecType_ == kVideoCodecH264) { in InitEncode()
463 ALOGD << "InitEncodeOnCodecThread Type: " << (int)codecType_ << ", " << in InitEncodeOnCodecThread()
503 jni, "MediaCodecVideoEncoder$VideoCodecType", codecType_); in InitEncodeOnCodecThread()
923 info.codecType = codecType_; in DeliverPendingOutputs()
[all …]
Dandroidmediadecoder_jni.cc113 VideoCodecType codecType_; member in webrtc_jni::MediaCodecVideoDecoder
176 codecType_(codecType), in MediaCodecVideoDecoder()
283 RTC_CHECK(inst->codecType == codecType_) in InitDecode()
284 << "Unsupported codec " << inst->codecType << " for " << codecType_; in InitDecode()
306 ALOGD << "InitDecodeOnCodecThread Type: " << (int)codecType_ << ". " in InitDecodeOnCodecThread()
339 jni, "MediaCodecVideoDecoder$VideoCodecType", codecType_); in InitDecodeOnCodecThread()
354 switch (codecType_) { in InitDecodeOnCodecThread()
434 if (codecType_ == kVideoCodecH264) { in ProcessHWErrorOnCodecThread()