pub trait IAMAnalogVideoEncoder_Impl: Sized {
    // Required methods
    fn AvailableTVFormats(&self) -> Result<i32>;
    fn SetTVFormat(&self, lanalogvideostandard: i32) -> Result<()>;
    fn TVFormat(&self) -> Result<i32>;
    fn SetCopyProtection(&self, lvideocopyprotection: i32) -> Result<()>;
    fn CopyProtection(&self) -> Result<i32>;
    fn SetCCEnable(&self, lccenable: i32) -> Result<()>;
    fn CCEnable(&self) -> Result<i32>;
}

Required Methods§

fn AvailableTVFormats(&self) -> Result<i32>

fn SetTVFormat(&self, lanalogvideostandard: i32) -> Result<()>

fn TVFormat(&self) -> Result<i32>

fn SetCopyProtection(&self, lvideocopyprotection: i32) -> Result<()>

fn CopyProtection(&self) -> Result<i32>

fn SetCCEnable(&self, lccenable: i32) -> Result<()>

fn CCEnable(&self) -> Result<i32>

Object Safety§

This trait is not object safe.

Implementors§