Skip to content

Commit

Permalink
Removed superfluous check in FrameBuffer2.
Browse files Browse the repository at this point in the history
Since inter_layer_predicted information is not propagated by the Dependency Descriptor this block non-VP9 super frames.

Bug: webrtc:10342
Change-Id: I90fbd368e92d168560a21ff79693f07071ea6cfb
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/194140
Reviewed-by: Ilya Nikolaevskiy <[email protected]>
Commit-Queue: Philip Eliasson <[email protected]>
Cr-Commit-Position: refs/heads/master@{#32643}
  • Loading branch information
Philipel-WebRTC authored and Commit Bot committed Nov 19, 2020
1 parent 9b53c29 commit ba56ea0
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions modules/video_coding/frame_buffer2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,6 @@ int64_t FrameBuffer::FindNextFrame(int64_t now_ms) {
continue;
}

// Only ever return all parts of a superframe. Therefore skip this
// frame if it's not a beginning of a superframe.
if (frame->inter_layer_predicted) {
continue;
}

// Gather all remaining frames for the same superframe.
std::vector<FrameMap::iterator> current_superframe;
current_superframe.push_back(frame_it);
Expand Down

0 comments on commit ba56ea0

Please sign in to comment.