From a5a40e75d0f92929836f46db3c5e2bb1877fb561 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 23 Sep 2024 14:40:40 +0200 Subject: [PATCH] fmp4: use the right DEFAULT constant Does not really matter as both have the same value but best to have it right. Part-of: --- mux/fmp4/src/fmp4mux/imp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mux/fmp4/src/fmp4mux/imp.rs b/mux/fmp4/src/fmp4mux/imp.rs index 094de65a..5850023b 100644 --- a/mux/fmp4/src/fmp4mux/imp.rs +++ b/mux/fmp4/src/fmp4mux/imp.rs @@ -2887,7 +2887,7 @@ impl ObjectImpl for FMP4Mux { glib::ParamSpecBoolean::builder("write-mehd") .nick("Write mehd box") .blurb("Write movie extends header box with the duration at the end of the stream (needs a header-update-mode enabled)") - .default_value(DEFAULT_WRITE_MFRA) + .default_value(DEFAULT_WRITE_MEHD) .mutable_ready() .build(), glib::ParamSpecUInt64::builder("interleave-bytes")