[][src]Trait ffmpeg_next::util::mathematics::rescale::Rescale

pub trait Rescale {
    fn rescale<S, D>(&self, source: S, destination: D) -> i64
    where
        S: Into<Rational>,
        D: Into<Rational>
;
fn rescale_with<S, D>(
        &self,
        source: S,
        destination: D,
        rounding: Rounding
    ) -> i64
    where
        S: Into<Rational>,
        D: Into<Rational>
; }

Required methods

fn rescale<S, D>(&self, source: S, destination: D) -> i64 where
    S: Into<Rational>,
    D: Into<Rational>, 

fn rescale_with<S, D>(
    &self,
    source: S,
    destination: D,
    rounding: Rounding
) -> i64 where
    S: Into<Rational>,
    D: Into<Rational>, 

Loading content...

Implementors

impl<T: Into<i64> + Clone> Rescale for T[src]

Loading content...