HomeSort by relevance Sort by last modified time
    Searched refs:codec_thread_ (Results 1 - 2 of 2) sorted by null

  /external/webrtc/talk/app/webrtc/java/jni/
androidmediaencoder_jni.cc 90 // |codec_thread_| for execution.
115 // CHECK-fail if not running on |codec_thread_|.
167 // |codec_thread_| synchronously.
172 scoped_ptr<Thread> codec_thread_; // Thread on which to operate MediaCodec. member in class:webrtc_jni::MediaCodecVideoEncoder
192 // Touched only on codec_thread_ so no explicit synchronization necessary.
253 codec_thread_(new Thread()),
272 // to |codec_thread_|, so if anything else can be coming to _us_ from
273 // |codec_thread_|, or from any thread holding the |_sendCritSect| described
276 codec_thread_->SetName("MediaCodecVideoEncoder", NULL);
277 RTC_CHECK(codec_thread_->Start()) << "Failed to start MediaCodecVideoEncoder"
    [all...]
androidmediadecoder_jni.cc 101 // CHECK-fail if not running on |codec_thread_|.
137 scoped_ptr<Thread> codec_thread_; // Thread on which to operate MediaCodec. member in class:webrtc_jni::MediaCodecVideoDecoder
181 codec_thread_(new Thread()),
193 codec_thread_->SetName("MediaCodecVideoDecoder", NULL);
194 RTC_CHECK(codec_thread_->Start()) << "Failed to start MediaCodecVideoDecoder";
298 return codec_thread_->Invoke<int32_t>(
387 codec_thread_->PostDelayed(kMediaCodecPollMs, this);
394 return codec_thread_->Invoke<int32_t>(
424 RTC_CHECK(codec_thread_ == ThreadManager::Instance()->CurrentThread())
507 return codec_thread_->Invoke<int32_t>(Bind
    [all...]

Completed in 754 milliseconds