selector: tests: Fix initialization of segment

If GST_DEBUG is enabled and it dumps the segment, valgrind will warn about
uninitialized memory.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9273>
This commit is contained in:
Doug Nazar 2025-06-22 03:07:58 -04:00 committed by GStreamer Marge Bot
parent b06c9090a7
commit 6ddb5b4ad9

View File

@ -207,15 +207,7 @@ push_newsegment_events (GList * input_pads)
GstSegment seg;
GList *l;
seg.flags = GST_SEGMENT_FLAG_NONE;
seg.rate = seg.applied_rate = 1.0;
seg.format = GST_FORMAT_BYTES;
seg.base = 0;
seg.start = 0;
seg.stop = -1;
seg.time = 0;
seg.position = 0;
seg.duration = -1;
gst_segment_init (&seg, GST_FORMAT_BYTES);
for (l = input_pads; l; l = l->next) {
GstPad *pad = l->data;