fmp4mux: Remove _ prefix of actually used parameter

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1694>
This commit is contained in:
Sebastian Dröge 2024-08-07 11:16:51 +03:00
parent 9006a47e9b
commit ec38d416aa

View file

@ -582,7 +582,7 @@ fn write_trak(
fn write_tkhd(
v: &mut Vec<u8>,
_cfg: &super::HeaderConfiguration,
cfg: &super::HeaderConfiguration,
idx: usize,
stream: &super::HeaderStream,
creation_time: u64,
@ -619,7 +619,7 @@ fn write_tkhd(
// Matrix
let matrix = match s.name().as_str() {
x if x.starts_with("video/") || x.starts_with("image/") => _cfg
x if x.starts_with("video/") || x.starts_with("image/") => cfg
.orientation
.unwrap_or(ImageOrientation::Rotate0)
.transform_matrix(),