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
// Copyright (c) 2012-2017 VideoStitch SAS
// Copyright (c) 2018 stitchEm
#pragma once
#include "gpu/stream.hpp"
#include "libvideostitch/status.hpp"
#include <vector>
namespace VideoStitch {
namespace Core {
class PanoDefinition;
class PanoSurface;
class SourceSurface;
class PanoMerger {
public:
/**
* Creates a pano merger
*/
PanoMerger();
virtual ~PanoMerger();
/**
TODO
*/
virtual Status computeAsync(const PanoDefinition& panoDef, PanoSurface& pano,
const std::map<videoreaderid_t, Core::SourceSurface*>& surfaces, GPU::Stream stream) = 0;
};
} // namespace Core
} // namespace VideoStitch