r125: This commit was manufactured by cvs2svn to create tag 'r1_1_7-last'.
[cinelerra_cv/mob.git] / hvirtual / cinelerra / videoconfig.h
blob9123f4312630f8be046cfe4541282fd1a220dc82
1 #ifndef VIDEOCONFIG_H
2 #define VIDEOCONFIG_H
4 #include "defaults.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(Defaults *defaults);
21 int save_defaults(Defaults *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