X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihed-cros-libva%2Fsrc%2Flib.rs;h=a095c1c35e69b268195251c003417a989106672f;hb=a439fb0b8b38fc265d79140a2fa9592232744161;hp=511af4c2c3126ea269eb4ebe84e3057b10680186;hpb=49bf1d79384ecf1b28822101233719fb1c1b29b1;p=nihav-player.git 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();