fmp4: use the right DEFAULT constant

Does not really matter as both have the same value but best to have it
right.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1803>
This commit is contained in:
Guillaume Desmottes 2024-09-23 14:40:40 +02:00 committed by GStreamer Marge Bot
parent 75d13882d7
commit a5a40e75d0

View file

@ -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")