fix adapt probing rate

This commit is contained in:
Zen 2021-06-07 23:30:54 +03:00
parent d27551449e
commit 0e5e8b2f5a

View file

@ -11,7 +11,7 @@ use std::str::FromStr;
use std::{collections::hash_map::DefaultHasher, path::PathBuf};
#[pyfunction]
fn adapt_probing_rate(_frames: usize, rate: usize) -> usize {
fn adapt_probing_rate(rate: usize, _frames: usize) -> usize {
av1an_core::adapt_probing_rate(rate)
}