work on decoder classes

This commit is contained in:
itsmattkc
2019-05-29 03:05:10 +10:00
parent d76ac6ff38
commit aa0832c482
29 changed files with 6238 additions and 12556 deletions
+18 -1
View File
@@ -1,12 +1,29 @@
#include "decoder.h"
Decoder::Decoder() :
Decoder::Decoder(QObject *parent) :
QObject(parent),
open_(false)
{
}
Decoder::Decoder(FootageStream *fs) :
open_(false),
stream_(fs)
{
}
Decoder::~Decoder()
{
}
FootageStream *Decoder::stream()
{
return stream_;
}
void Decoder::set_stream(FootageStream *fs)
{
Close();
stream_ = fs;
}