Skip to content

Commit

Permalink
Remove unused imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
hgaiser committed Dec 19, 2024
1 parent f7219bf commit 62353a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use std::path::PathBuf;

use async_shutdown::ShutdownManager;
use clap::Parser;
use tracing::level_filters::LevelFilter;
use tracing_subscriber::layer::SubscriberExt;
use tracing_subscriber::util::SubscriberInitExt;
use tracing_subscriber::EnvFilter;
Expand Down
4 changes: 2 additions & 2 deletions src/session/stream/video/encoder.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use std::{collections::{hash_map::Entry, HashMap}, io::Write, sync::{atomic::Ordering, Arc, Mutex}, u32};
use std::{collections::{hash_map::Entry, HashMap}, sync::{atomic::Ordering, Arc, Mutex}};

use async_shutdown::ShutdownManager;
use cudarc::driver::CudaDevice;
use ffmpeg::{
codec::packet::flag::Flags, format::Pixel, option::Settable, packet::Ref, Frame, Packet
codec::packet::flag::Flags, format::Pixel, option::Settable, Frame, Packet
};
use reed_solomon_erasure::{galois_8, ReedSolomon};

Expand Down

0 comments on commit 62353a4

Please sign in to comment.