mocked up a prototype of decoding data into the node graph

This commit is contained in:
itsmattkc
2019-08-04 14:45:17 +10:00
parent fb8d5df24b
commit 298ae2f36c
15 changed files with 178 additions and 32 deletions
+3 -3
View File
@@ -54,8 +54,8 @@ public:
virtual ~Decoder();
Stream* stream();
void set_stream(Stream* fs);
const Stream* stream();
void set_stream(const Stream *fs);
/**
* @brief Probe a footage file and dump metadata about it
@@ -148,7 +148,7 @@ protected:
bool open_;
private:
Stream* stream_;
const Stream* stream_;
};
using DecoderPtr = std::shared_ptr<Decoder>;