Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2020-09-28 08:36:00 +0300
committerMatthew Waters <matthew@centricular.com>2020-09-28 08:37:12 +0300
commit7736a216596df2feb5465fdee4c3f14284b1e901 (patch)
treea2581fc277e693d18303c43420fd3b6f1bbe2607 /gst
parente81ce6f2d722095b25d98a33de2d9431849b750c (diff)
qtmux: output the correct limits in error messages
Having the current bytes being less than the limit was confusing! Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/732>
Diffstat (limited to 'gst')
-rw-r--r--gst/isomp4/gstqtmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c
index 15eb3f2e3..f01664ec8 100644
--- a/gst/isomp4/gstqtmux.c
+++ b/gst/isomp4/gstqtmux.c
@@ -2357,7 +2357,7 @@ too_small_reserved:
GST_ELEMENT_ERROR (qtmux, STREAM, MUX,
("Not enough free reserved header space"),
("Needed %" G_GUINT64_FORMAT " bytes, reserved %" G_GUINT64_FORMAT,
- offset, padded_moov_size));
+ offset + 8, padded_moov_size));
return GST_FLOW_ERROR;
}
serialize_error: