dashdemux2: Do not set empty string 'track_id'

This is not needed and generates g_warning like:

```
  Trying to set empty string on taglist field 'container-specific-track-id'. Please file a bug.
```

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8128>
This commit is contained in:
Thibault Saunier 2024-12-10 23:49:38 -03:00 committed by GStreamer Marge Bot
parent 294f1165fa
commit 1faa88b1ff

View File

@ -895,10 +895,6 @@ gst_dash_demux_setup_all_streams (GstDashDemux2 * demux)
break;
}
}
/* Empty string if the id attribute is not present on either
* element. */
if (!track_id)
track_id = g_strdup ("");
}
}
if (track_id) {