• Home
  • Raw
  • Download

Lines Matching refs:rflow

578   GstFlowReturn rflow = GST_FLOW_OK;  in gst_kate_enc_send_headers()  local
603 rflow = GST_FLOW_ERROR; in gst_kate_enc_send_headers()
617 rflow = GST_FLOW_ERROR; in gst_kate_enc_send_headers()
622 if (rflow == GST_FLOW_OK) { in gst_kate_enc_send_headers()
654 return rflow; in gst_kate_enc_send_headers()
660 GstFlowReturn rflow = GST_FLOW_OK; in gst_kate_enc_flush_headers() local
663 rflow = gst_kate_enc_send_headers (ke); in gst_kate_enc_flush_headers()
664 if (rflow == GST_FLOW_OK) { in gst_kate_enc_flush_headers()
669 gst_flow_get_name (rflow)); in gst_kate_enc_flush_headers()
672 return rflow; in gst_kate_enc_flush_headers()
680 GstFlowReturn rflow; in gst_kate_enc_chain_push_packet() local
689 rflow = in gst_kate_enc_chain_push_packet()
692 if (G_UNLIKELY (rflow != GST_FLOW_OK)) { in gst_kate_enc_chain_push_packet()
695 return rflow; in gst_kate_enc_chain_push_packet()
722 GstFlowReturn rflow = GST_FLOW_OK; in gst_kate_enc_flush_waiting() local
740 rflow = GST_FLOW_ERROR; in gst_kate_enc_flush_waiting()
742 rflow = in gst_kate_enc_flush_waiting()
747 if (rflow == GST_FLOW_OK) { in gst_kate_enc_flush_waiting()
751 gst_flow_get_name (rflow)); in gst_kate_enc_flush_waiting()
779 return rflow; in gst_kate_enc_flush_waiting()
789 GstFlowReturn rflow; in gst_kate_enc_chain_spu() local
806 rflow = gst_kate_spu_decode_spu (ke, buf, kregion, kbitmap, kpalette); in gst_kate_enc_chain_spu()
807 if (G_UNLIKELY (rflow != GST_FLOW_OK)) { in gst_kate_enc_chain_spu()
829 rflow = GST_FLOW_OK; in gst_kate_enc_chain_spu()
895 rflow = GST_FLOW_OK; in gst_kate_enc_chain_spu()
907 rflow = gst_kate_enc_chain_push_packet (ke, &kp, start, stop - start + 1); in gst_kate_enc_chain_spu()
919 return rflow; in gst_kate_enc_chain_spu()
923 rflow = GST_FLOW_ERROR; in gst_kate_enc_chain_spu()
933 GstFlowReturn rflow; in gst_kate_enc_chain_text() local
949 rflow = GST_FLOW_ERROR; in gst_kate_enc_chain_text()
970 rflow = GST_FLOW_ERROR; in gst_kate_enc_chain_text()
972 rflow = gst_kate_enc_chain_push_packet (ke, &kp, start, stop - start + 1); in gst_kate_enc_chain_text()
978 return rflow; in gst_kate_enc_chain_text()
988 GstFlowReturn rflow; in gst_kate_enc_chain() local
994 rflow = gst_kate_enc_flush_headers (ke); in gst_kate_enc_chain()
996 if (G_LIKELY (rflow == GST_FLOW_OK)) { in gst_kate_enc_chain()
998 rflow = gst_kate_enc_flush_waiting (ke, GST_BUFFER_TIMESTAMP (buf)); in gst_kate_enc_chain()
1000 if (G_LIKELY (rflow == GST_FLOW_OK)) { in gst_kate_enc_chain()
1003 rflow = gst_kate_enc_chain_spu (ke, buf); in gst_kate_enc_chain()
1006 rflow = gst_kate_enc_chain_text (ke, buf); in gst_kate_enc_chain()
1013 return rflow; in gst_kate_enc_chain()