Skip to content

Commit

Permalink
[M-110] RTCVideoDecoderAdapter: Initialize VideoDecoder with low_dela…
Browse files Browse the repository at this point in the history
…y=true

low_delay was wrongly changed to false from true in
crrev.comc/c/3844854. This CL fixes it.

(cherry picked from commit cb7ab5d)

Bug: b:265885078
Test: Google Meet call on trogdor
Change-Id: Ie3ea2f0722a736b7ef0a049cf7fef01b1fe46349
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4181362
Reviewed-by: Eugene Zemtsov <eugene@chromium.org>
Commit-Queue: Eugene Zemtsov <eugene@chromium.org>
Auto-Submit: Hirokazu Honda <hiroh@chromium.org>
Cr-Original-Commit-Position: refs/heads/main@{#1094697}
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4196434
Commit-Queue: Nathan Hebert <nhebert@chromium.org>
Reviewed-by: Nathan Hebert <nhebert@chromium.org>
Cr-Commit-Position: refs/branch-heads/5481@{#720}
Cr-Branched-From: 130f3e4-refs/heads/main@{#1084008}
  • Loading branch information
Hirokazu Honda authored and Chromium LUCI CQ committed Jan 27, 2023
1 parent adde9d9 commit 1facd00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ void RTCVideoDecoderAdapter::Impl::Initialize(
ConvertToBaseRepeatingCallback(CrossThreadBindRepeating(
&RTCVideoDecoderAdapter::Impl::OnOutput, weak_decoder_this_));
video_decoder_->Initialize(
config, /*low_delay=*/false,
config, /*low_delay=*/true,
/*cdm_context=*/nullptr,
base::BindOnce(
[](base::OnceCallback<void(bool)> cb,
Expand Down

0 comments on commit 1facd00

Please sign in to comment.