blob: ab8db813533a14bd921ab14ba8b443e0321b1624 [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
26} // namespace test
27} // namespace webrtc
28
29#endif // RTC_TOOLS_VIDEO_FILE_WRITER_H_