blob: a520dd72e28dd0b4ab9befea435fb8aa2ec5afe4 [file] [log] [blame]
// Copyright 2024 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#[cfg(feature = "v4l2")]
use crate::Resolution;
pub mod stateless;
pub trait V4l2StreamInfo {
/// Returns the minimum number of surfaces required to decode the stream.
// name was chosen to match vaapi
fn min_num_frames(&self) -> usize;
/// Returns the coded size of the surfaces required to decode the stream.
fn coded_size(&self) -> Resolution;
/// Returns the visible rectangle within the coded size for the stream.
fn visible_rect(&self) -> ((u32, u32), (u32, u32));
}