Commit 7c012bb2 authored by Ted Meyer's avatar Ted Meyer Committed by Chromium LUCI CQ

Dont elide the change if there are outstanding pbufs

Bug: 1109397
Change-Id: I3dbc859a10632cf2448c4f6f3bd28db6b708e8cf
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2631468Reviewed-by: default avatarFrank Liberato <liberato@chromium.org>
Commit-Queue: Ted Meyer <tmathmeyer@chromium.org>
Cr-Commit-Position: refs/heads/master@{#843909}
parent e50da805
...@@ -624,7 +624,7 @@ void D3D11VideoDecoder::DoDecode() { ...@@ -624,7 +624,7 @@ void D3D11VideoDecoder::DoDecode() {
const auto new_coded_size = accelerated_video_decoder_->GetPicSize(); const auto new_coded_size = accelerated_video_decoder_->GetPicSize();
if (new_profile == config_.profile() && if (new_profile == config_.profile() &&
new_coded_size == config_.coded_size() && new_coded_size == config_.coded_size() &&
new_bit_depth == bit_depth_) { new_bit_depth == bit_depth_ && !picture_buffers_.size()) {
continue; continue;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment