]> git.decadent.org.uk Git - videolink.git/blob - video.cpp
Added --help option and arranged to print usage information when this is used and...
[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 }