00001 #ifndef VIDEOCONFIG_H 00002 #define VIDEOCONFIG_H 00003 00004 #include "defaults.inc" 00005 00006 00007 00008 00009 00010 00011 // REMOVE 00012 // This is obsolete. 00013 class VideoConfig 00014 { 00015 public: 00016 VideoConfig(); 00017 ~VideoConfig(); 00018 00019 VideoConfig& operator=(VideoConfig &that); 00020 int load_defaults(Defaults *defaults); 00021 int save_defaults(Defaults *defaults); 00022 00023 // Input 00024 int video_in_driver; 00025 char v4l_in_device[1024]; 00026 char lml_in_device[1024]; 00027 char screencapture_display[1024]; 00028 int vfirewire_in_port, vfirewire_in_channel; 00029 // number of frames to read from device during video recording. 00030 int capture_length; 00031 00032 // Output 00033 int video_out_driver; 00034 char lml_out_device[1024]; 00035 }; 00036 00037 #endif
1.4.4