Searched refs:max_pending_frames_ (Results 1 - 1 of 1) sorted by relevance

/external/webrtc/talk/app/webrtc/java/jni/
H A Dandroidmediadecoder_jni.cc133 uint32_t max_pending_frames_; // Maximum number of pending input frames member in class:webrtc_jni::MediaCodecVideoDecoder
356 max_pending_frames_ = kMaxPendingFramesVp8;
359 max_pending_frames_ = kMaxPendingFramesVp9;
362 max_pending_frames_ = kMaxPendingFramesH264;
365 max_pending_frames_ = 0;
375 ALOGD << "Maximum amount of pending frames: " << max_pending_frames_; local
520 while ((frames_received_ > frames_decoded_ + max_pending_frames_) &&
530 if (frames_received_ > frames_decoded_ + max_pending_frames_) {

Completed in 564 milliseconds