// Copyright (c) 2012-2017 VideoStitch SAS // Copyright (c) 2018 stitchEm #include "libvideostitch/input.hpp" #include "libvideostitch/sink.hpp" namespace VideoStitch { namespace IO { template Sink::Sink() : T(-1) { // never called } template Sink::~Sink() {} template Status Sink::addSink(const Ptv::Value* /* config */, const mtime_t /* videoTimeStamp */, const mtime_t /* audioTimeStamp */) { return {Origin::Output, ErrType::UnsupportedAction, "Sink not implemented for this Reader"}; } template void Sink::removeSink() {} template class Sink; } // namespace IO } // namespace VideoStitch