summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/test/testsupport/video_frame_writer.h
blob: 1cc4e56284f66a67b33832e61fa658bbec34e62a (plain)
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
/*
 *  Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#ifndef TEST_TESTSUPPORT_VIDEO_FRAME_WRITER_H_
#define TEST_TESTSUPPORT_VIDEO_FRAME_WRITER_H_

#include <memory>
#include <string>

#include "api/test/video/video_frame_writer.h"
#include "api/video/video_frame.h"
#include "rtc_base/buffer.h"
#include "test/testsupport/frame_writer.h"

namespace webrtc {
namespace test {

// Writes webrtc::VideoFrame to specified file with y4m frame writer
class Y4mVideoFrameWriterImpl : public VideoFrameWriter {
 public:
  Y4mVideoFrameWriterImpl(std::string output_file_name,
                          int width,
                          int height,
                          int fps);
  ~Y4mVideoFrameWriterImpl() override = default;

  bool WriteFrame(const webrtc::VideoFrame& frame) override;
  void Close() override;

 private:
  const int width_;
  const int height_;

  std::unique_ptr<FrameWriter> frame_writer_;
};

// Writes webrtc::VideoFrame to specified file with yuv frame writer
class YuvVideoFrameWriterImpl : public VideoFrameWriter {
 public:
  YuvVideoFrameWriterImpl(std::string output_file_name, int width, int height);
  ~YuvVideoFrameWriterImpl() override = default;

  bool WriteFrame(const webrtc::VideoFrame& frame) override;
  void Close() override;

 private:
  const int width_;
  const int height_;

  std::unique_ptr<FrameWriter> frame_writer_;
};

}  // namespace test
}  // namespace webrtc

#endif  // TEST_TESTSUPPORT_VIDEO_FRAME_WRITER_H_