From: Eunhae Choi Date: Thu, 10 Nov 2016 09:45:59 +0000 (+0900) Subject: [v0.6.12] do not ignore buffering msg (murphy does not use mainloop anymore) X-Git-Tag: accepted/tizen/common/20161115.200808~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F96828%2F1;p=platform%2Fcore%2Fmultimedia%2Flibmm-player.git [v0.6.12] do not ignore buffering msg (murphy does not use mainloop anymore) Change-Id: I0a19e4f86fdeaea6346ffe48147466392eb1ad79 --- diff --git a/src/mm_player_priv.c b/src/mm_player_priv.c index 3621d34..19de3da 100644 --- a/src/mm_player_priv.c +++ b/src/mm_player_priv.c @@ -1282,13 +1282,6 @@ __mmplayer_gst_callback(GstBus *bus, GstMessage *msg, gpointer data) // @ if (!MMPLAYER_IS_STREAMING(player)) break; - /* ignore the buffering messages during building pipeline, * - * not to block the main loop */ - if (MMPLAYER_CURRENT_STATE(player) <= MM_PLAYER_STATE_READY) { - LOGW("ignore the buffering msg(state:%d)", MMPLAYER_CURRENT_STATE(player)); - break; - } - /* ignore the prev buffering message */ if ((player->streamer) && (player->streamer->is_buffering == FALSE) && (player->streamer->is_buffering_done == TRUE)) { gint buffer_percent = 0;