video.h 2.02 KB
Newer Older
1
2
#pragma once

3
#include <torch/types.h>
4

5
6
7
#include "../decoder/defs.h"
#include "../decoder/memory_buffer.h"
#include "../decoder/sync_decoder.h"
8
9
10

using namespace ffmpeg;

11
12
13
namespace vision {
namespace video {

14
15
16
17
18
struct Video : torch::CustomClassHolder {
  std::tuple<std::string, long> current_stream; // stream type, id
  // global video metadata
  c10::Dict<std::string, c10::Dict<std::string, std::vector<double>>>
      streamsMetadata;
19
  int64_t numThreads_{0};
20
21

 public:
22
23
24
25
26
27
28
29
30
31
32
33
34
  Video(
      std::string videoPath = std::string(),
      std::string stream = std::string("video"),
      int64_t numThreads = 0);
  void initFromFile(
      std::string videoPath,
      std::string stream,
      int64_t numThreads);
  void initFromMemory(
      torch::Tensor videoTensor,
      std::string stream,
      int64_t numThreads);

35
36
37
  std::tuple<std::string, int64_t> getCurrentStream() const;
  c10::Dict<std::string, c10::Dict<std::string, std::vector<double>>>
  getStreamMetadata() const;
38
  void Seek(double ts, bool fastSeek);
39
  bool setCurrentStream(std::string stream);
40
41
42
43
44
  std::tuple<torch::Tensor, double> Next();

 private:
  bool succeeded = false; // decoder init flag
  // seekTS and doSeek act as a flag - if it's not set, next function simply
45
46
  // returns the next frame. If it's set, we look at the global seek
  // time in combination with any_frame settings
47
48
  double seekTS = -1;

49
50
51
52
53
54
  bool initialized = false;

  void _init(
      std::string stream,
      int64_t numThreads); // expects params.uri OR callback to be set

55
56
57
58
  void _getDecoderParams(
      double videoStartS,
      int64_t getPtsOnly,
      std::string stream,
59
      long stream_id,
60
      bool fastSeek,
61
      bool all_streams,
62
      int64_t num_threads,
63
      double seekFrameMarginUs); // this needs to be improved
64
65
66
67
68
69
70
71
72
73
74

  std::map<std::string, std::vector<double>> streamTimeBase; // not used

  DecoderInCallback callback = nullptr;
  std::vector<DecoderMetadata> metadata;

 protected:
  SyncDecoder decoder;
  DecoderParameters params;

}; // struct Video
75
76
77

} // namespace video
} // namespace vision