1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Copyright (c) 2012-2017 VideoStitch SAS
// Copyright (c) 2018 stitchEm
#pragma once
#include "frameBuffer.hpp"
#include "libvideostitch/output.hpp"
#include "libvideostitch/frame.hpp"
#include "libvideostitch/stitchOutput.hpp"
#include <map>
#include <mutex>
#include <thread>
namespace VideoStitch {
namespace Core {
/**
* The internal interface of the stereo stitcher's output:
* an object holding buffers on the host and device side
* for a stereoscopic frame.
*/
template <>
class StereoOutput::Pimpl {
public:
typedef Output::StereoWriter Writer;
virtual bool setRenderers(const std::vector<std::shared_ptr<PanoRenderer>>&) = 0;
virtual bool addRenderer(std::shared_ptr<PanoRenderer>) = 0;
virtual bool removeRenderer(const std::string&) = 0;
virtual bool setWriters(const std::vector<std::shared_ptr<Output::StereoWriter>>&) = 0;
virtual bool addWriter(std::shared_ptr<Output::StereoWriter>) = 0;
virtual bool removeWriter(const std::string&) = 0;
virtual bool updateWriter(const std::string&, const Ptv::Value&) = 0;
/**
* Returns a pair of device buffer to stitch a panorama to, and an optional stream
* for asynchronous implementations.
*/
virtual PanoSurface& acquireLeftFrame(mtime_t) = 0;
virtual PanoSurface& acquireRightFrame(mtime_t) = 0;
/**
* Called by the stitcher when stitching is done.
*/
virtual Status pushVideo(mtime_t date, Eye eye) = 0;
virtual ~Pimpl() {}
protected:
explicit Pimpl(int64_t width, int64_t height) : width(width), height(height) {}
int64_t width, height;
private:
Pimpl(const Pimpl&) {}
const Pimpl& operator=(const Pimpl&);
};
/**
* A function that pushes stereoscopic frames to a bunch of stereoscopic writers.
*/
class StereoWriterPusher {
public:
StereoWriterPusher(size_t w, size_t h, const std::vector<std::shared_ptr<Output::StereoWriter>>& writers);
virtual ~StereoWriterPusher();
bool setRenderers(const std::vector<std::shared_ptr<PanoRenderer>>&) {
// XXX TODO FIXME
return false;
}
bool addRenderer(std::shared_ptr<PanoRenderer>) {
// XXX TODO FIXME
return false;
}
bool removeRenderer(const std::string&) {
// XXX TODO FIXME
return false;
}
void setCompositor(const std::shared_ptr<GPU::Overlayer>&) {}
bool setWriters(const std::vector<std::shared_ptr<Output::StereoWriter>>&);
bool addWriter(std::shared_ptr<Output::StereoWriter>);
bool removeWriter(const std::string&);
bool updateWriter(const std::string&, const Ptv::Value&);
protected:
void pushVideoToWriters(mtime_t date, std::pair<StereoFrameBuffer*, StereoFrameBuffer*> buffer) const;
private:
size_t width;
std::map<std::string, std::shared_ptr<Output::StereoWriter>> writers;
std::map<std::string, int> downsamplingFactors;
mutable std::mutex writersLock;
};
} // namespace Core
} // namespace VideoStitch