mp4mux: 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-28 10:06:53 +03:00 committed by GStreamer Marge Bot
parent b06ae44ed4
commit 322fc4b400

View file

@ -386,7 +386,7 @@ impl MP4Mux {
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())? {