]> git.decadent.org.uk Git - videolink.git/blob - video.hpp
Added more video standard parameters and organised them into structures.
[videolink.git] / video.hpp
1 #ifndef INC_VIDEO_HPP
2 #define INC_VIDEO_HPP
3
4 namespace video
5 {
6     struct frame_params
7     {
8         unsigned int width, height;
9         unsigned int rate_numer, rate_denom;
10         unsigned int pixel_ratio_width, pixel_ratio_height;
11     };
12
13     extern const frame_params pal_params, ntsc_params;
14 }
15
16 #endif // !INC_VIDEO_HPP