Creation of the base class StreamSource. It is intended to become the

base class for all gstreamer pipeline. DeviceSource and PatternSource
inherit from it. A generic stream source class is created for
development tests and hack.
This commit is contained in:
brunoherbelin
2020-09-22 22:58:37 +02:00
parent 9251aff19f
commit b7d54dfadf
15 changed files with 392 additions and 272 deletions

View File

@@ -29,11 +29,11 @@ public:
/**
* Open a media using gstreamer pipeline keyword
* */
virtual void open( std::string description ) = 0;
void open(const std::string &gstreamer_description );
/**
* Get description string
* */
virtual std::string description() const;
std::string description() const;
/**
* True if a media was oppenned
* */