Home
last modified time | relevance | path

Searched refs:flow_return (Results 1 – 8 of 8) sorted by relevance

/third_party/gstreamer/gstreamer/libs/gst/base/
Dgstaggregator.c250 GstFlowReturn flow_return; member
294 aggpad->priv->flow_return = GST_FLOW_OK; in gst_aggregator_pad_reset_unlocked()
1052 GstFlowReturn flow_return, gboolean full) in gst_aggregator_pad_set_flushing() argument
1057 if (flow_return == GST_FLOW_NOT_LINKED) in gst_aggregator_pad_set_flushing()
1058 aggpad->priv->flow_return = MIN (flow_return, aggpad->priv->flow_return); in gst_aggregator_pad_set_flushing()
1060 aggpad->priv->flow_return = flow_return; in gst_aggregator_pad_set_flushing()
1369 GstFlowReturn flow_return = GST_FLOW_OK; in gst_aggregator_aggregate_func() local
1375 if ((flow_return = events_query_data.flow_ret) != GST_FLOW_OK) in gst_aggregator_aggregate_func()
1394 flow_return = GST_FLOW_FLUSHING; in gst_aggregator_aggregate_func()
1396 flow_return = GST_FLOW_NOT_NEGOTIATED; in gst_aggregator_aggregate_func()
[all …]
/third_party/gstreamer/gstplugins_bad/ext/gme/
Dgstgme.c321 GstFlowReturn flow_return; in gst_gme_play() local
351 if ((flow_return = gst_pad_push (gme->srcpad, out)) != GST_FLOW_OK) { in gst_gme_play()
353 gst_flow_get_name (flow_return)); in gst_gme_play()
357 if (flow_return == GST_FLOW_EOS) { in gst_gme_play()
359 } else if (flow_return < GST_FLOW_EOS || flow_return == GST_FLOW_NOT_LINKED) { in gst_gme_play()
360 GST_ELEMENT_FLOW_ERROR (gme, flow_return); in gst_gme_play()
/third_party/gstreamer/gstplugins_bad/gst/mpegtsdemux/
Dmpegtsparse.c67 GstFlowReturn flow_return; member
504 tspad->flow_return = GST_FLOW_NOT_LINKED; in mpegts_parse_create_tspad()
775 tspad->flow_return = GST_FLOW_NOT_LINKED; in pad_clear_for_push()
826 tspad->flow_return = in mpegts_parse_push()
830 tspad->flow_return = in mpegts_parse_push()
835 if (G_UNLIKELY (tspad->flow_return != GST_FLOW_OK in mpegts_parse_push()
836 && tspad->flow_return != GST_FLOW_NOT_LINKED)) { in mpegts_parse_push()
838 ret = tspad->flow_return; in mpegts_parse_push()
845 ret = tspad->flow_return; in mpegts_parse_push()
/third_party/gstreamer/gstplugins_bad/sys/shm/
Dgstshmsrc.h57 GstFlowReturn flow_return; member
/third_party/gstreamer/gstreamer/gst/
Dgstelement.h501 #define GST_ELEMENT_FLOW_ERROR(el,flow_return) \ argument
505 ("streaming stopped, reason %s (%d)", gst_flow_get_name (flow_return), flow_return), \
506 ("flow-return", G_TYPE_INT, flow_return, NULL));\
/third_party/gstreamer/gstreamer/
DChangeLog14052 aggregator: remove duplicated test of flow_return in pad_chain_internal
14601 aggregator: Consistenly lock the flow_return state
15034 aggregator: Reset flow_return *after* stopping the srcpad task.
/third_party/gstreamer/gstplugins_bad/
DChangeLog75105 aggregator: remove duplicated test of flow_return in pad_chain_internal
100287 aggregator: Consistenly lock the flow_return state
109118 aggregator: Reset flow_return *after* stopping the srcpad task.
/third_party/gstreamer/gstplugins_good/
DChangeLog96928 - if (!GST_FLOW_IS_FATAL (dec->flow_return) && !dec->sent_root) {
96929 + if (dec->flow_return != GST_FLOW_OK && !dec->sent_root) {