]> git.sesse.net Git - nageru/blob - futatabi/export.h
Log a warning when we kill a client that is not keeping up.
[nageru] / futatabi / export.h
1 #ifndef _EXPORT_H
2 #define _EXPORT_H 1
3
4 #include "clip_list.h"
5
6 #include <string>
7 #include <vector>
8
9 void export_multitrack_clip(const std::string &filename, const Clip &clip);
10 void export_interpolated_clip(const std::string &filename, const std::vector<Clip> &clips);
11
12 #endif