blob: 9fbb2844d2f52d9e98220e9e1f3e1f1badc2a476 [file] [log] [blame]
Paulina Hensmanb671d462018-09-14 11:32:00 +02001/*
2 * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10#ifndef RTC_TOOLS_VIDEO_FILE_WRITER_H_
11#define RTC_TOOLS_VIDEO_FILE_WRITER_H_
12
Paulina Hensmanb671d462018-09-14 11:32:00 +020013#include <string>
14
Mirko Bonadeid9708072019-01-25 20:26:48 +010015#include "api/scoped_refptr.h"
Paulina Hensmanb671d462018-09-14 11:32:00 +020016#include "rtc_tools/video_file_reader.h"
17
18namespace webrtc {
19namespace test {
20
21// Writes video to file, determining YUV or Y4M format from the file extension.
22void WriteVideoToFile(const rtc::scoped_refptr<Video>& video,
23 const std::string& file_name,
24 int fps);
25
Yves Gerey3cb5e5b2019-03-21 11:22:42 +010026// Writes Y4M video to file.
27void WriteY4mVideoToFile(const rtc::scoped_refptr<Video>& video,
28 const std::string& file_name,
29 int fps);
30
31// Writes YUV video to file.
32void WriteYuvVideoToFile(const rtc::scoped_refptr<Video>& video,
33 const std::string& file_name,
34 int fps);
35
Paulina Hensmanb671d462018-09-14 11:32:00 +020036} // namespace test
37} // namespace webrtc
38
39#endif // RTC_TOOLS_VIDEO_FILE_WRITER_H_