Merge branch 'tizen_gst_upgrade' into tizen 70/165970/1 accepted/tizen/unified/20180110.141839 submit/tizen/20180105.085839
authorGilbok Lee <gilbok.lee@samsung.com>
Fri, 5 Jan 2018 01:55:43 +0000 (10:55 +0900)
committerGilbok Lee <gilbok.lee@samsung.com>
Fri, 5 Jan 2018 04:21:03 +0000 (13:21 +0900)
upgrade 1.12.2

Change-Id: I17638674de91e20e0db6b46622a54da0c0866fad

1  2 
ext/pulse/pulsesink.c
ext/pulse/pulsesrc.c
gst/rtsp/gstrtspsrc.c

Simple merge
Simple merge
@@@ -351,10 -349,8 +352,12 @@@ static gboolean gst_rtspsrc_stream_push
      GstRTSPStream * stream, GstEvent * event);
  static gboolean gst_rtspsrc_push_event (GstRTSPSrc * src, GstEvent * event);
  static void gst_rtspsrc_connection_flush (GstRTSPSrc * src, gboolean flush);
 +static void
 +gst_rtspsrc_print_rtsp_message (GstRTSPSrc * src, const GstRTSPMessage * msg);
 +static void
 +gst_rtspsrc_print_sdp_message (GstRTSPSrc * src, const GstSDPMessage * msg);
+ static GstRTSPResult gst_rtsp_conninfo_close (GstRTSPSrc * src,
+     GstRTSPConnInfo * info, gboolean free);
  
  typedef struct
  {
@@@ -4812,9 -4458,10 +4466,9 @@@ gst_rtspsrc_handle_request (GstRTSPSrc 
      g_signal_emit (src, gst_rtspsrc_signals[SIGNAL_HANDLE_REQUEST],
          0, request, &response);
  
 -    if (src->debug)
 -      gst_rtsp_message_dump (&response);
 +    DEBUG_RTSP (src, &response);
  
-     res = gst_rtspsrc_connection_send (src, conn, &response, NULL);
+     res = gst_rtspsrc_connection_send (src, conninfo, &response, NULL);
      if (res < 0)
        goto send_error;
  
@@@ -4863,11 -4510,10 +4517,9 @@@ gst_rtspsrc_send_keep_alive (GstRTSPSr
    if (res < 0)
      goto send_error;
  
 -  if (src->debug)
 -    gst_rtsp_message_dump (&request);
 +  DEBUG_RTSP (src, &request);
  
-   res =
-       gst_rtspsrc_connection_send (src, src->conninfo.connection, &request,
-       NULL);
+   res = gst_rtspsrc_connection_send (src, &src->conninfo, &request, NULL);
    if (res < 0)
      goto send_error;
  
@@@ -6012,9 -5581,10 +5585,9 @@@ again
  
    GST_DEBUG_OBJECT (src, "sending message");
  
 -  if (src->debug)
 -    gst_rtsp_message_dump (request);
 +  DEBUG_RTSP (src, request);
  
-   res = gst_rtspsrc_connection_send (src, conn, request, src->ptcp_timeout);
+   res = gst_rtspsrc_connection_send (src, conninfo, request, src->ptcp_timeout);
    if (res < 0)
      goto send_error;