Enum libva::BufferType
source · [−]pub enum BufferType {
PictureParameter(PictureParameter),
SliceParameter(SliceParameter),
IQMatrix(IQMatrix),
Probability(ProbabilityDataBufferVP8),
SliceData(Vec<u8>),
}
Expand description
Abstraction over VABufferType
s.
Variants
PictureParameter(PictureParameter)
Abstraction over VAPictureParameterBufferType
. Needed for MPEG2, VP8, VP9, H264.
SliceParameter(SliceParameter)
Abstraction over VASliceParameterBufferType
. Needed for MPEG2, VP8, VP9, H264.
IQMatrix(IQMatrix)
Abstraction over VAIQMatrixBufferType
. Needed for VP8, H264.
Probability(ProbabilityDataBufferVP8)
Abstraction over VAProbabilityDataBufferType
. Needed for VP8.
SliceData(Vec<u8>)
Abstraction over VASliceDataBufferType
. Needed for VP9, H264.
Implementations
sourceimpl BufferType
impl BufferType
Auto Trait Implementations
impl RefUnwindSafe for BufferType
impl Send for BufferType
impl Sync for BufferType
impl Unpin for BufferType
impl UnwindSafe for BufferType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more