r999: maintainers added to README_en.
[cinelerra_cv/mob.git] / cinelerra / videoconfig.h
blob2eda8dcb7974c09853ec3f48f1da6a5b6af87bc6
1 #ifndef VIDEOCONFIG_H
2 #define VIDEOCONFIG_H
4 #include "bchash.inc"
11 // REMOVE
12 // This is obsolete.
13 class VideoConfig
15 public:
16 VideoConfig();
17 ~VideoConfig();
19 VideoConfig& operator=(VideoConfig &that);
20 int load_defaults(BC_Hash *defaults);
21 int save_defaults(BC_Hash *defaults);
23 // Input
24 int video_in_driver;
25 char v4l_in_device[1024];
26 char lml_in_device[1024];
27 char screencapture_display[1024];
28 int vfirewire_in_port, vfirewire_in_channel;
29 // number of frames to read from device during video recording.
30 int capture_length;
32 // Output
33 int video_out_driver;
34 char lml_out_device[1024];
37 #endif