qtdemux: fix bug report URL
authorGuillaume Desmottes <guillaume.desmottes@onestream.live>
Tue, 5 Dec 2023 08:25:22 +0000 (09:25 +0100)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Sat, 9 Dec 2023 12:45:25 +0000 (12:45 +0000)
Using PACKAGE_BUGREPORT as in other modules.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5786>

subprojects/gst-plugins-good/gst/isomp4/qtdemux_tags.c
subprojects/gst-plugins-good/meson.build

index f2b384d..9336568 100644 (file)
@@ -763,7 +763,8 @@ unknown_tag:
     namestr_dbg = g_strndup (namestr, namesize);
 
     GST_WARNING_OBJECT (demux, "This tag %s:%s type:%u is not mapped, "
-        "file a bug at bugzilla.gnome.org", meanstr_dbg, namestr_dbg, datatype);
+        "file a bug at %s", meanstr_dbg, namestr_dbg, datatype,
+        PACKAGE_BUGREPORT);
 
     g_free (namestr_dbg);
     g_free (meanstr_dbg);
index 92216a8..b87dbc5 100644 (file)
@@ -231,6 +231,7 @@ cdata.set_quoted('GST_LICENSE', 'LGPL')
 cdata.set_quoted('PACKAGE', 'gst-plugins-good')
 cdata.set_quoted('GETTEXT_PACKAGE', 'gst-plugins-good-1.0')
 cdata.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
+cdata.set_quoted('PACKAGE_BUGREPORT', 'https://gitlab.freedesktop.org/gstreamer/gstreamer/issues/new')
 
 warning_flags = [
   '-Wmissing-declarations',