1234567891011121314151617181920212223242526272829 |
- #pragma once
- #include <iostream>
- #include <gst/gst.h>
- #include <vector>
- class DataSource
- {
- private:
- public:
- DataSource(){};
- ~DataSource(){};
- int Id;
- int sourceId;
- std::string uri;
- std::string range;
- GstElement *source_bin = NULL;
- bool Play = false;
- };
- class InferInfo{
- public:
- InferInfo(){};
- ~InferInfo(){};
- bool Play = true;
- std::vector<DataSource> DataSources;
- };
|