From: Kostya Shishkov Date: Fri, 20 Oct 2023 16:33:27 +0000 (+0200) Subject: nihed-cros-libva: update test to the current interface X-Git-Url: https://git.nihav.org/?p=nihav-player.git;a=commitdiff_plain;h=359f4b2f7be73b8e337d05cce5a14dac7e24c92c nihed-cros-libva: update test to the current interface --- diff --git a/nihed-cros-libva/src/lib.rs b/nihed-cros-libva/src/lib.rs index 511af4c..a095c1c 100644 --- a/nihed-cros-libva/src/lib.rs +++ b/nihed-cros-libva/src/lib.rs @@ -60,7 +60,7 @@ mod tests { let height = va_image.height as usize; // We only support NV12 images - assert_eq!(va_image.format.fourcc, u32::from_ne_bytes(*b"NV12")); + assert_eq!(va_image.format.fourcc(), Ok(VAFourcc::NV12)); // Consistency check assert_eq!(va_image.num_planes, 2); @@ -103,7 +103,7 @@ mod tests { .iter() .any(|e| *e == bindings::VAEntrypoint::VAEntrypointVLD)); - let format = bindings::constants::VA_RT_FORMAT_YUV420; + let format = RTFormat::YUV420; let width = 16; let height = 16; @@ -127,7 +127,7 @@ mod tests { None, width, height, - Some(UsageHint::USAGE_HINT_DECODER), + Some(UsageHint::Decoder.into()), 1, ) .unwrap();