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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// Copyright (c) 2012-2017 VideoStitch SAS
// Copyright (c) 2018 stitchEm
#pragma once
#include "config.hpp"
#include "status.hpp"
#include "frame.hpp"
#include "audio.hpp"
#include "outputEventManager.hpp"
#include <string>
#include <vector>
#include <memory>
namespace VideoStitch {
namespace Ptv {
class Value;
}
namespace Output {
class VideoWriter;
class AudioWriter;
/**
* @brief Base class for all client's callbacks.
*/
class VS_EXPORT Output {
public:
/**
* Type-casting to video callback
* Might return null for callbacks with restricted capabilities.
*/
VideoWriter* getVideoWriter() const;
/**
* Type-casting to audio callback
* Might return null for callbacks with restricted capabilities.
*/
virtual AudioWriter* getAudioWriter() const;
virtual ~Output();
/**
* @return The identifier of this callback.
*/
std::string getName() const { return name; }
/**
* Initialization function.
* Set the subscribers before calling that function if your
* implementation is meant to emit Events at startup.
*/
virtual void init() {}
OutputEventManager& getOutputEventManager();
protected:
/**
* Constructor.
* @param nameParam The writer id.
*/
explicit Output(const std::string& nameParam);
OutputEventManager outputEventManager;
private:
char name[2048];
Output() = delete;
Output(const Output&) = delete;
};
/**
* The basic config elements for an Output.
*/
struct VS_EXPORT BaseConfig {
BaseConfig();
/**
* Returns true on success.
*/
Status parse(const Ptv::Value& config);
/**
* Resets to default values.
*/
void clear();
/**
* The format string, aka the type of this output.
* Can be a registered output plugin or "null" to discard the output.
*/
char strFmt[2048];
/**
* The base filename for this output.
* Semantics depend on the plugin (see strFmt).
*/
char baseName[2048];
/**
* The desired number of digits.
*/
int numberNumDigits;
/**
* The dowsampling factor respective to the pano size.
* 2 means a size of a fourth (downsampled twice on every dimension).
*/
int downsamplingFactor;
};
} // namespace Output
} // namespace VideoStitch