• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/

Lines Matching refs:m_playbin

216     GstElement*     m_playbin;      // GStreamer media element
292 GST_STATE(be->m_playbin) >= GST_STATE_PAUSED)
347 // "state-change" from m_playbin/GST_MESSAGE_STATE_CHANGE
371 // "eos" from m_playbin/GST_MESSAGE_EOS
386 // "error" from m_playbin/GST_MESSAGE_ERROR
410 // "notify::caps" from the videopad inside "stream-info" of m_playbin
428 // "notify::stream-info" from m_playbin
430 // Run through the stuff in "stream-info" of m_playbin for a valid
446 be->QueryVideoSizeFromElement(be->m_playbin);
472 be->QueryVideoSizeFromElement(be->m_playbin);
481 // Called by m_playbin for notifications such as end-of-stream in 0.10 -
496 if(((GstElement*)GST_MESSAGE_SRC(message)) != be->m_playbin)
761 // poll the GstBus of m_playbin until it has reached desiredstate, an error
931 gst_element_set_state (m_be->m_playbin, GST_STATE_READY);
932 m_be->SyncStateChange(m_be->m_playbin, GST_STATE_READY);
937 gst_element_set_state (m_be->m_playbin, GST_STATE_PAUSED);
938 m_be->SyncStateChange(m_be->m_playbin, GST_STATE_PAUSED);
955 // Sets m_playbin to NULL signifying we havn't loaded anything yet
958 : m_playbin(NULL),
974 if(m_playbin)
976 wxASSERT( GST_IS_OBJECT(m_playbin) );
977 gst_element_set_state (m_playbin, GST_STATE_NULL);
978 gst_object_unref (GST_OBJECT (m_playbin));
1082 m_playbin = gst_element_factory_make ("playbin", "play");
1083 if (!GST_IS_ELEMENT(m_playbin))
1085 if(G_IS_OBJECT(m_playbin))
1086 g_object_unref(m_playbin);
1093 g_signal_connect(m_playbin, "eos",
1095 g_signal_connect(m_playbin, "error",
1097 g_signal_connect(m_playbin, "state-change",
1102 gst_bus_add_watch (gst_element_get_bus(m_playbin),
1104 gst_bus_set_sync_handler(gst_element_get_bus(m_playbin),
1106 g_signal_connect(m_playbin, "notify::stream-info",
1166 g_object_set (G_OBJECT (m_playbin),
1231 if( gst_element_set_state (m_playbin,
1233 !SyncStateChange(m_playbin, GST_STATE_READY))
1241 gst_element_set_state (m_playbin, GST_STATE_NULL);
1248 g_object_set (G_OBJECT (m_playbin), "uri",
1253 if( gst_element_set_state (m_playbin,
1255 !SyncStateChange(m_playbin, GST_STATE_PAUSED))
1277 if (gst_element_set_state (m_playbin,
1293 if (gst_element_set_state (m_playbin,
1311 if(gst_element_set_state (m_playbin,
1313 !SyncStateChange(m_playbin, GST_STATE_PAUSED))
1339 switch(GST_STATE(m_playbin))
1377 if (!wxGst_element_query_position(m_playbin, &fmtTime, &pos) ||
1413 gst_element_seek (m_playbin, m_dRate, GST_FORMAT_TIME,
1422 gst_element_seek (m_playbin, (GstSeekType) (GST_SEEK_METHOD_SET |
1447 if(!wxGst_element_query_duration(m_playbin, &fmtTime, &length) ||
1509 if( gst_element_seek (m_playbin, dRate, GST_FORMAT_TIME,
1548 if (!wxGst_element_query_duration(m_playbin, &fmtBytes, &length) ||
1566 G_OBJECT_GET_CLASS(G_OBJECT(m_playbin)),
1569 g_object_set(G_OBJECT(m_playbin), "volume", dVolume, NULL);
1586 G_OBJECT_GET_CLASS(G_OBJECT(m_playbin)),
1589 g_object_get(G_OBJECT(m_playbin), "volume", &dVolume, NULL);