X-Git-Url: http://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fsession.hpp;fp=pv%2Fsession.hpp;h=9566b4a06a739efd2d198fb42f4ae6cfddcf71fb;hp=2ee31cfee5afb8ef6de44171322d1d20086e755a;hb=5f9a52096e07e399d76da6724c1cf56bf4511c9f;hpb=f058e273becb663ff89e022924c31a144c30e21f diff --git a/pv/session.hpp b/pv/session.hpp index 2ee31cfe..9566b4a0 100644 --- a/pv/session.hpp +++ b/pv/session.hpp @@ -20,6 +20,11 @@ #ifndef PULSEVIEW_PV_SESSION_HPP #define PULSEVIEW_PV_SESSION_HPP +#ifdef ENABLE_FLOW +#include +#include +#endif + #include #include #include @@ -34,9 +39,15 @@ #include #include +#ifdef ENABLE_FLOW +#include +#include +#endif + #include "util.hpp" #include "views/viewbase.hpp" + using std::function; using std::list; using std::map; @@ -46,6 +57,13 @@ using std::shared_ptr; using std::string; using std::unordered_set; +#ifdef ENABLE_FLOW +using Glib::RefPtr; +using Gst::AppSink; +using Gst::Element; +using Gst::Pipeline; +#endif + struct srd_decoder; struct srd_channel; @@ -203,6 +221,12 @@ private: void signal_new_segment(); void signal_segment_completed(); +#ifdef ENABLE_FLOW + bool on_gst_bus_message(const Glib::RefPtr& bus, const Glib::RefPtr& message); + + Gst::FlowReturn on_gst_new_sample(); +#endif + void feed_in_header(); void feed_in_meta(shared_ptr meta); @@ -272,6 +296,16 @@ private: bool out_of_memory_; bool data_saved_; bool frame_began_; + +#ifdef ENABLE_FLOW + RefPtr pipeline_; + RefPtr source_; + RefPtr sink_; + + mutable mutex pipeline_done_mutex_; + mutable condition_variable pipeline_done_cond_; + atomic pipeline_done_interrupt_; +#endif }; } // namespace pv