X-Git-Url: https://git.decadent.org.uk/gitweb/?p=videolink.git;a=blobdiff_plain;f=video.cpp;fp=video.cpp;h=a84fe74cb0b1e460f8ccf27af734a4e65c7eeb12;hp=0000000000000000000000000000000000000000;hb=90012acc26c4a8210c4bce3dac69a09309cce9f8;hpb=8d0ade32b10e040e462b244332afad1a0961d25b diff --git a/video.cpp b/video.cpp new file mode 100644 index 0000000..a84fe74 --- /dev/null +++ b/video.cpp @@ -0,0 +1,18 @@ +#include "video.hpp" + +namespace video +{ + const struct frame_params pal_params = + { + 720, 576, + 25, 1, + 59, 54 + }; + + const struct frame_params ntsc_params = + { + 720, 480, + 30000, 1001, + 10, 11 + }; +}