]> git.decadent.org.uk Git - videolink.git/blob - video.cpp
Replaced auto_temp_file with temp_file, which handles creation as well as deletion.
[videolink.git] / video.cpp
1 #include "video.hpp"
2
3 namespace video
4 {
5     const struct frame_params pal_params =
6     {
7         720, 576,
8         25, 1,
9         59, 54
10     };
11
12     const struct frame_params ntsc_params =
13     {
14         720, 480,
15         30000, 1001,
16         10, 11
17     };
18 }