From 2574507dcb4d44f90511e41843a00545e42a60b0 Mon Sep 17 00:00:00 2001 From: Dennis Kempin Date: Tue, 21 Dec 2021 09:02:53 -0800 Subject: [PATCH] libvda: Fix-forward typo in https://crrev.com/c/3340692 The commit broke the chromeos build. The fix forward is easy, it's just a typo and a reminder we really need to get libvda code compiling in Kokoro. BUG=b:210749428 TEST=emerge-amd64-generic crosvm Change-Id: I47e0c0b8f843e8b66c00513221b58c6197fe644b Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3352172 Reviewed-by: Dmitry Torokhov Commit-Queue: Dennis Kempin Tested-by: Dennis Kempin --- devices/src/virtio/video/decoder/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devices/src/virtio/video/decoder/mod.rs b/devices/src/virtio/video/decoder/mod.rs index b8033feac4..e47f2f6765 100644 --- a/devices/src/virtio/video/decoder/mod.rs +++ b/devices/src/virtio/video/decoder/mod.rs @@ -731,7 +731,7 @@ impl<'a, D: DecoderBackend> Decoder { stream_id: StreamId, queue_type: QueueType, params: Params, - _is_ext: bool, + is_ext: bool, ) -> VideoResult { let ctx = self.contexts.get_mut(&stream_id)?; match queue_type {