blob: c96faf6d27a25c6c8db88ab4ba601d6835d9c3ce [file] [log] [blame]
/*
* 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/video/video_frame.h"
#include "rtc_base/buffer.h"
#include "rtc_base/critical_section.h"
#include "test/testsupport/frame_writer.h"
namespace webrtc {
namespace test {
// Writes webrtc::VideoFrame to specified file with y4m frame writer
class VideoFrameWriter {
public:
VideoFrameWriter(std::string output_file_name,
int width,
int height,
int fps);
virtual ~VideoFrameWriter();
bool WriteFrame(const webrtc::VideoFrame& frame);
void Close();
private:
rtc::Buffer ExtractI420BufferWithSize(const VideoFrame& frame,
int width,
int height);
const std::string output_file_name_;
const int width_;
const int height_;
const int fps_;
std::unique_ptr<FrameWriter> frame_writer_;
};
} // namespace test
} // namespace webrtc
#endif // TEST_TESTSUPPORT_VIDEO_FRAME_WRITER_H_