start work on nihed-cros-libva
[nihav-player.git] / nihed-cros-libva / src / status.rs
CommitLineData
68362724
KS
1// Copyright 2022 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use std::ffi::CStr;
6
7use anyhow::anyhow;
8use anyhow::Result;
9
10use crate::bindings;
11
12/// Wrapper over `VAStatus`, calling check() returns a Error if the status is not VA_STATUS_SUCCESS.
13#[must_use = "VAStatus might not be VA_STATUS_SUCCESS."]
14pub(crate) struct Status(pub bindings::VAStatus);
15
16impl Status {
17 /// Returns `Ok(())` if this status is successful, and an error otherwise.
18 pub(crate) fn check(&self) -> Result<()> {
19 if self.0 == bindings::constants::VA_STATUS_SUCCESS as i32 {
20 Ok(())
21 } else {
22 // Safe because `vaErrorStr` will return a pointer to a statically allocated, null
23 // terminated C string. The pointer is guaranteed to never be null.
24 let err_str = unsafe { CStr::from_ptr(bindings::vaErrorStr(self.0)) }
25 .to_str()
26 .unwrap();
27 Err(anyhow!("VA-API error: {}: {}", self.0, err_str))
28 }
29 }
30}