Skip to content

Commit

Permalink
struct MuxerContext: Deduplicate declarations into use imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
kkysen committed Sep 25, 2023
1 parent 91997f3 commit ed18663
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/dav1d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mod input {
mod output {
mod md5;
mod null;
mod output;
pub mod output;
mod y4m2;
mod yuv;
} // mod output
Expand All @@ -22,6 +22,7 @@ use crate::dav1d_cli_parse::parse;
use crate::dav1d_cli_parse::CLISettings;
use crate::dav1d_cli_parse::REALTIME_CUSTOM;
use crate::dav1d_cli_parse::REALTIME_DISABLE;
use crate::output::output::MuxerContext;
use libc::fclose;
use libc::fflush;
use libc::fileno;
Expand Down Expand Up @@ -81,7 +82,6 @@ use std::ffi::c_void;

extern "C" {
pub type DemuxerContext;
pub type MuxerContext;
fn input_open(
c_out: *mut *mut DemuxerContext,
name: *const c_char,
Expand Down

0 comments on commit ed18663

Please sign in to comment.