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
+4 -3
View File
@@ -21,7 +21,8 @@
#include "decoder.h"
Decoder::Decoder() :
open_(false)
open_(false),
stream_(nullptr)
{
}
@@ -35,12 +36,12 @@ Decoder::~Decoder()
{
}
Stream *Decoder::stream()
const Stream *Decoder::stream()
{
return stream_;
}
void Decoder::set_stream(Stream *fs)
void Decoder::set_stream(const Stream *fs)
{
Close();