fmp4mux: Fix typo

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2208>
This commit is contained in:
Sebastian Dröge 2025-04-25 15:31:33 +03:00 committed by GStreamer Marge Bot
parent 7e00e8c90b
commit 3ae7913ef2

View file

@ -522,7 +522,7 @@ impl FMP4Mux {
let end = generic_to_gstclocktime(cmeta.end())?;
if end.is_none() && start.is_none() {
bail!("No start or end time in `default` format in the AudioClipingMeta");
bail!("No start or end time in `default` format in the AudioClippingMeta");
}
let start = if let Some(start) = generic_to_gstclocktime(cmeta.start())? {