aboutsummaryrefslogtreecommitdiff
path: root/transcoder/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'transcoder/src/lib.rs')
-rw-r--r--transcoder/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/transcoder/src/lib.rs b/transcoder/src/lib.rs
index 1eac15b..cd8edbf 100644
--- a/transcoder/src/lib.rs
+++ b/transcoder/src/lib.rs
@@ -7,7 +7,6 @@
use serde::{Deserialize, Serialize};
use std::sync::{LazyLock, Mutex};
-use tokio::sync::Semaphore;
pub mod fragment;
pub mod image;
@@ -36,5 +35,4 @@ static CONF: LazyLock<Config> = LazyLock::new(|| {
.expect("transcoder config not preloaded. logic error")
});
-static LOCAL_IMAGE_TRANSCODING_TASKS: Semaphore = Semaphore::const_new(8);
static LOCAL_VIDEO_TRANSCODING_TASKS: Mutex<()> = Mutex::new(());