Upstream version 10.38.217.0
[platform/framework/web/crosswalk.git] / src / media / audio / pulse / pulse_util.cc
index 357352a..c06195e 100644 (file)
@@ -259,16 +259,7 @@ bool CreateOutputStream(pa_threaded_mainloop** mainloop,
     // than the default channel map (NULL).
     map = &source_channel_map;
   }
-#if defined(OS_TIZEN)
-  pa_proplist* proplist = pa_proplist_new();
-  pa_proplist_sets(proplist, PA_PROP_MEDIA_ROLE, "browser");
-  *stream = pa_stream_new_with_proplist(*context, "Playback",
-                                        &sample_specifications,
-                                        map, proplist);
-  pa_proplist_free(proplist);
-#else
   *stream = pa_stream_new(*context, "Playback", &sample_specifications, map);
-#endif
   RETURN_ON_FAILURE(*stream, "failed to create PA playback stream");
 
   pa_stream_set_state_callback(*stream, stream_callback, user_data);