18 new shapewipe transitions from rafa, rework savefile/confirm for nested edl edits
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / playbackconfig.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef PLAYBACKCONFIG_H
23 #define PLAYBACKCONFIG_H
24
25 #include "audiodevice.inc"
26 #include "bcwindowbase.inc"
27 #include "bchash.inc"
28 #include "playbackconfig.inc"
29
30 // This structure is passed to the driver for configuration during playback
31 class AudioOutConfig
32 {
33 public:
34         AudioOutConfig();
35         ~AudioOutConfig();
36
37         int operator!=(AudioOutConfig &that);
38         int operator==(AudioOutConfig &that);
39         AudioOutConfig& operator=(AudioOutConfig &that);
40         void copy_from(AudioOutConfig *src);
41         int load_defaults(BC_Hash *defaults, int active_config);
42         int save_defaults(BC_Hash *defaults, int active_config);
43
44         int fragment_size;
45
46
47 // Offset for synchronization in seconds
48         float audio_offset;
49         double play_gain;
50         int map51_2;
51
52         int driver;
53         int oss_enable[MAXDEVICES];
54         char oss_out_device[MAXDEVICES][BCTEXTLEN];
55         int oss_out_bits;
56
57
58
59         char esound_out_server[BCTEXTLEN];
60         int esound_out_port;
61 // PulseAudio
62         char pulse_out_server[BCTEXTLEN];
63 // ALSA options
64         char alsa_out_device[BCTEXTLEN];
65         int alsa_out_bits;
66         int interrupt_workaround;
67
68 // Firewire options
69         int firewire_channel;
70         int firewire_port;
71         int firewire_frames;
72         char firewire_path[BCTEXTLEN];
73         int firewire_syt;
74
75
76 // DV1394 options
77         int dv1394_channel;
78         int dv1394_port;
79         int dv1394_frames;
80         char dv1394_path[BCTEXTLEN];
81         int dv1394_syt;
82
83 };
84
85 // This structure is passed to the driver
86 class VideoOutConfig
87 {
88 public:
89         VideoOutConfig();
90         ~VideoOutConfig();
91
92         int operator!=(VideoOutConfig &that);
93         int operator==(VideoOutConfig &that);
94         VideoOutConfig& operator=(VideoOutConfig &that);
95         void copy_from(VideoOutConfig *src);
96         int load_defaults(BC_Hash *defaults, int active_config);
97         int save_defaults(BC_Hash *defaults, int active_config);
98         const char *get_path();
99         static const char *default_video_device;
100
101         int driver;
102         int out_channel;
103         int use_direct_x11;
104
105 // X11 options
106         char x11_host[BCTEXTLEN];
107         int x11_use_fields;
108 // Values for x11_use_fields
109         enum
110         {
111                 USE_NO_FIELDS,
112                 USE_EVEN_FIRST,
113                 USE_ODD_FIRST
114         };
115
116
117
118 // Picture quality
119         int brightness;
120         int hue;
121         int color;
122         int contrast;
123         int whiteness;
124
125 // Firewire options
126         int firewire_channel;
127         int firewire_port;
128         char firewire_path[BCTEXTLEN];
129         int firewire_syt;
130
131 // DV1394 options
132         int dv1394_channel;
133         int dv1394_port;
134         char dv1394_path[BCTEXTLEN];
135         int dv1394_syt;
136 };
137
138 class PlaybackConfig
139 {
140 public:
141         PlaybackConfig();
142         ~PlaybackConfig();
143
144         PlaybackConfig& operator=(PlaybackConfig &that);
145         void copy_from(PlaybackConfig *src);
146         int load_defaults(BC_Hash *defaults, int load_config=-1);
147         int save_defaults(BC_Hash *defaults);
148
149         char hostname[BCTEXTLEN];
150         int active_config;
151         int port;
152
153         AudioOutConfig *aconfig;
154         VideoOutConfig *vconfig;
155 };
156
157
158 #endif