mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-22 03:21: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(
|
||||
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(),
|
||||
|
|
Loading…
Reference in a new issue