mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 21:11:00 +00:00
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:
parent
9006a47e9b
commit
ec38d416aa
1 changed files with 2 additions and 2 deletions
|
@ -582,7 +582,7 @@ fn write_trak(
|
||||||
|
|
||||||
fn write_tkhd(
|
fn write_tkhd(
|
||||||
v: &mut Vec<u8>,
|
v: &mut Vec<u8>,
|
||||||
_cfg: &super::HeaderConfiguration,
|
cfg: &super::HeaderConfiguration,
|
||||||
idx: usize,
|
idx: usize,
|
||||||
stream: &super::HeaderStream,
|
stream: &super::HeaderStream,
|
||||||
creation_time: u64,
|
creation_time: u64,
|
||||||
|
@ -619,7 +619,7 @@ fn write_tkhd(
|
||||||
|
|
||||||
// Matrix
|
// Matrix
|
||||||
let matrix = match s.name().as_str() {
|
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
|
.orientation
|
||||||
.unwrap_or(ImageOrientation::Rotate0)
|
.unwrap_or(ImageOrientation::Rotate0)
|
||||||
.transform_matrix(),
|
.transform_matrix(),
|
||||||
|
|
Loading…
Reference in a new issue