Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

struct Rav1dRef: Remove as it's now unused #997

Merged
merged 1 commit into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions include/dav1d/dav1d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ use crate::src::error::Rav1dError;
use crate::src::internal::Rav1dContext;
pub use crate::src::log::Dav1dLogger;
use crate::src::log::Rav1dLogger;
use crate::src::r#ref::Rav1dRef;
use bitflags::bitflags;
use std::ffi::c_int;
use std::ffi::c_uint;
use strum::FromRepr;

pub type Dav1dContext = Rav1dContext;
pub type Dav1dRef = Rav1dRef;
pub type Dav1dRef = ();
kkysen marked this conversation as resolved.
Show resolved Hide resolved

pub type Dav1dInloopFilterType = c_uint;
pub const DAV1D_INLOOPFILTER_ALL: Dav1dInloopFilterType =
Expand Down
1 change: 0 additions & 1 deletion lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ pub mod src {
mod picture;
mod qm;
mod recon;
pub(crate) mod r#ref;
mod refmvs;
mod scan;
mod tables;
Expand Down
13 changes: 0 additions & 13 deletions src/ref.rs

This file was deleted.

Loading