123456789101112131415161718192021222324252627282930 |
- #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;
- };
|