aboutsummaryrefslogtreecommitdiff
path: root/transcoder
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-12-11 00:21:13 +0100
committermetamuffin <metamuffin@disroot.org>2023-12-11 00:21:13 +0100
commitb42ded3fcaf2088e464c5d4861449879a90c6ba0 (patch)
treeeff66c1c39a8e2ec61f121d446964d61c24ac7e7 /transcoder
parentb050eb5c37e68a6fdd57068d4e73748bea3b0a11 (diff)
downloadjellything-b42ded3fcaf2088e464c5d4861449879a90c6ba0.tar
jellything-b42ded3fcaf2088e464c5d4861449879a90c6ba0.tar.bz2
jellything-b42ded3fcaf2088e464c5d4861449879a90c6ba0.tar.zst
horrible midnight fixes and some fancy popups in the player
Diffstat (limited to 'transcoder')
-rw-r--r--transcoder/src/subtitles.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/transcoder/src/subtitles.rs b/transcoder/src/subtitles.rs
index 987405b..27e01cc 100644
--- a/transcoder/src/subtitles.rs
+++ b/transcoder/src/subtitles.rs
@@ -3,7 +3,7 @@ use std::fmt::Write;
pub fn webvtt_from_ass_blocks(
title: String,
- codec_private: Vec<u8>,
+ _codec_private: Vec<u8>,
blocks: Vec<(u64, u64, Vec<u8>)>,
) -> anyhow::Result<String> {
let mut out = String::new();