From ce06ee6d02ec943e60403c7ab83b5523c159c2ed Mon Sep 17 00:00:00 2001 From: Josep Torra Date: Fri, 20 Sep 2013 08:25:21 +0200 Subject: examples: don't force an specific audio sink Let playbin2 choose the audiosink available in the system. --- examples/egl/testegl.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/examples/egl/testegl.c b/examples/egl/testegl.c index b670dd7..d130dc1 100644 --- a/examples/egl/testegl.c +++ b/examples/egl/testegl.c @@ -897,7 +897,6 @@ events_cb (GstPad * pad, GstEvent * event, gpointer user_data) static gboolean init_playbin_player (APP_STATE_T * state, const gchar * uri) { - GstElement *asink; GstElement *vsink; vsink = gst_element_factory_make ("fakesink", "vsink"); @@ -911,17 +910,9 @@ init_playbin_player (APP_STATE_T * state, const gchar * uri) gst_pad_add_event_probe (gst_element_get_static_pad (vsink, "sink"), G_CALLBACK (events_cb), state); -#if 0 - asink = gst_element_factory_make ("fakesink", "asink"); - g_object_set (asink, "sync", TRUE, "silent", TRUE, NULL); -#else - asink = gst_element_factory_make ("pulsesink", "asink"); -#endif - /* Instantiate and configure playbin2 */ state->pipeline = gst_element_factory_make ("playbin2", "player"); - g_object_set (state->pipeline, "uri", uri, - "video-sink", vsink, "audio-sink", asink, NULL); + g_object_set (state->pipeline, "uri", uri, "video-sink", vsink, NULL); return TRUE; } -- cgit v1.2.1