123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef RTC_TOOLS_VIDEO_FILE_WRITER_H_
- #define RTC_TOOLS_VIDEO_FILE_WRITER_H_
- #include <string>
- #include "api/scoped_refptr.h"
- #include "rtc_tools/video_file_reader.h"
- namespace webrtc {
- namespace test {
- void WriteVideoToFile(const rtc::scoped_refptr<Video>& video,
- const std::string& file_name,
- int fps);
- void WriteY4mVideoToFile(const rtc::scoped_refptr<Video>& video,
- const std::string& file_name,
- int fps);
- void WriteYuvVideoToFile(const rtc::scoped_refptr<Video>& video,
- const std::string& file_name,
- int fps);
- }
- }
- #endif
|