[v0.6.5] remove log 56/93056/1 accepted/tizen/common/20161020.173425 accepted/tizen/ivi/20161020.125920 accepted/tizen/mobile/20161020.125811 accepted/tizen/tv/20161020.125828 accepted/tizen/wearable/20161020.125850 submit/tizen/20161020.073422
authorEunhae Choi <eunhae1.choi@samsung.com>
Thu, 20 Oct 2016 07:23:54 +0000 (16:23 +0900)
committerEunhae Choi <eunhae1.choi@samsung.com>
Thu, 20 Oct 2016 07:23:54 +0000 (16:23 +0900)
Change-Id: I76ccc5b35506ca6432d01235b07b4b022ca54f16

src/mm_player_priv.c

index d69b435..b919784 100644 (file)
@@ -2259,14 +2259,12 @@ __mmplayer_gst_selector_event_probe(GstPad * pad, GstPadProbeInfo * info, gpoint
                goto ERROR;
        }
 
-       LOGD("stream type is %d", stream_type);
-
        switch (GST_EVENT_TYPE(event)) {
        case GST_EVENT_EOS:
                {
                        /* in case of gapless, drop eos event not to send it to sink */
                        if (player->gapless.reconfigure && !player->msg_posted) {
-                               LOGD("%s:%s EOS received but will be drop", GST_DEBUG_PAD_NAME(pad));
+                               LOGD("[%d] %s:%s EOS received but will be drop", stream_type, GST_DEBUG_PAD_NAME(pad));
                                ret = GST_PAD_PROBE_DROP;
                        }
                        break;
@@ -2386,10 +2384,11 @@ __mmplayer_gst_selector_event_probe(GstPad * pad, GstPadProbeInfo * info, gpoint
                                break;
                        }
 
-                       LOGD("Adjusting QOS event: %" GST_TIME_FORMAT " - %" GST_TIME_FORMAT " = %"
-                                                               GST_TIME_FORMAT, GST_TIME_ARGS(timestamp),
-                                                               GST_TIME_ARGS(running_time_diff),
-                                                               GST_TIME_ARGS(timestamp - running_time_diff));
+                       LOGD("[%d] Adjusting QOS event: %" GST_TIME_FORMAT
+                                " - %" GST_TIME_FORMAT " = %" GST_TIME_FORMAT,
+                                               stream_type, GST_TIME_ARGS(timestamp),
+                                               GST_TIME_ARGS(running_time_diff),
+                                               GST_TIME_ARGS(timestamp - running_time_diff));
 
                        timestamp -= running_time_diff;