[gstreamer-bugs] [Bug 625597] gst-rtsp-server needs to send EOS on client session end so that elements such as 'filesink' are satisfied

GStreamer (bugzilla.gnome.org) bugzilla at gnome.org
Wed Sep 22 05:03:35 PDT 2010


https://bugzilla.gnome.org/show_bug.cgi?id=625597
  GStreamer | gst-rtsp-server | git

--- Comment #7 from Robert Krakora <rob.krakora at messagenetsystems.com> 2010-09-22 12:03:32 UTC ---
Hello Wim,

When I compiled the core I got some warnings that were interpreted by the
compiler as errors.  Here are the changes I had to make to negate the warnings.

Best Regards,

Rob Krakora

diff --git a/gst/rtsp-server/rtsp-media.c b/gst/rtsp-server/rtsp-media.c
index c6a45ac..886b9c7 100644
--- a/gst/rtsp-server/rtsp-media.c
+++ b/gst/rtsp-server/rtsp-media.c
@@ -1664,11 +1664,11 @@ add_udp_destination (GstRTSPMedia *media,
GstRTSPMediaSt
     gchar *dest, gint min, gint max)
 {
   gboolean do_add = TRUE;
-  RTSPDestination *ndest;
+  RTSPDestination *ndest = NULL;

   if (stream->filter_duplicates) {
     RTSPDestination fdest;
-    GList *find;
+    GList *find = NULL;

     fdest.dest = dest;
     fdest.min = min;
@@ -1702,8 +1702,8 @@ remove_udp_destination (GstRTSPMedia *media,
GstRTSPMediaS
     gchar *dest, gint min, gint max)
 {
   gboolean do_remove = TRUE;
-  RTSPDestination *ndest;

-- 
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- 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