[Bug 771198] GStreamer-WARNING **: Trying to set NULL string on field 'title' on taglist. Please file a bug.

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Sat Sep 10 17:43:35 UTC 2016


https://bugzilla.gnome.org/show_bug.cgi?id=771198

--- Comment #2 from minfrin at sharp.fm ---
The name being returned by gst_mpegts_descriptor_parse_dvb_short_event() seems
to be NULL.

        program->event_id = event->event_id;
        if ((desc =
                gst_mpegts_find_descriptor (event->descriptors,
                    GST_MTS_DESC_DVB_SHORT_EVENT))) {
          gchar *name;
          if (gst_mpegts_descriptor_parse_dvb_short_event (desc, NULL, &name,
                  NULL)) {
            /* FIXME : Is it correct to post an event duration as a
GST_TAG_DURATION ??? */
            program->tags =
                gst_tag_list_new (GST_TAG_TITLE, name, GST_TAG_DURATION,
                event->duration * GST_SECOND, NULL);
            g_free (name);
            return TRUE;
          }
        }

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list