]> git.decadent.org.uk Git - videolink.git/blobdiff - video.hpp
Use ffmpeg by default since it seems to work if we use pause correctly.
[videolink.git] / video.hpp
index 8319ea09fc21bf95518b3b99a6cd37a1ed1aeb64..1c546e5de164c9b34455a43119d2ccfdc50d6bac 100644 (file)
--- a/video.hpp
+++ b/video.hpp
@@ -5,12 +5,13 @@ namespace video
 {
     struct frame_params
     {
+       const char * ffmpeg_name;
        unsigned int width, height;
        unsigned int rate_numer, rate_denom;
        unsigned int pixel_ratio_width, pixel_ratio_height;
     };
 
-    extern const frame_params pal_params, ntsc_params;
+    extern const frame_params frame_params_625, frame_params_525;
 }
 
 #endif // !INC_VIDEO_HPP