bsd lang segv fix, enable bsd lv2, lv2 gui enable fix, proxy/ffmpeg toggle resize...
[goodguy/history.git] / cinelerra-5.1 / cinelerra / formatwindow.C
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 #include "assets.h"
23 #include "file.h"
24 #include "formatwindow.h"
25 #include <string.h>
26
27
28 FormatAWindow::FormatAWindow(Asset *asset, int *dither)
29  : BC_Window(_(PROGRAM_NAME ": File format"), 410,
30         (asset->format == FILE_WAV) ? 115 : 185,
31         0, 0)
32 { this->asset = asset; this->dither = dither; }
33
34 FormatAWindow::~FormatAWindow()
35 {
36 }
37
38 void FormatAWindow::create_objects()
39 {
40         int x;
41         int init_x;
42         int y = 10;
43         File file;
44         x = init_x = 10;
45
46         add_subwindow(new BC_Title(x, y, _("Set parameters for this audio format:")));
47         y += 30;
48         add_subwindow(new BC_Title(x, y, _("Bits:")));
49         x += 45;
50         add_subwindow(new FormatBits(x, y, asset));
51         x += 100;
52         add_subwindow(new FormatDither(x, y, this->dither));
53
54         if(asset->format == FILE_PCM)
55         {
56                 x += 90;
57                 add_subwindow(new FormatSigned(x, y, asset));
58         }
59         y += 40;
60         x = init_x;
61
62         if(asset->format == FILE_PCM)
63         {
64                 add_subwindow(new BC_Title(x, y, _("Byte order:")));
65                 y += 25;
66                 add_subwindow(new BC_Title(x, y, _("HiLo:"), SMALLFONT));
67                 add_subwindow(hilo_button = new FormatHILO(x + 30, y, asset));
68                 x += 50;
69                 add_subwindow(new BC_Title(x, y, _("LoHi:"), SMALLFONT));
70                 add_subwindow(lohi_button = new FormatLOHI(x + 30, y, hilo_button, asset));
71                 hilo_button->lohi = lohi_button;
72                 y += 30;
73         }
74
75         x = init_x;
76
77         add_subwindow(new BC_OKButton(x + 170, y));
78 }
79
80
81 int FormatAWindow::close_event()
82 {
83         set_done(0);
84 }
85
86
87
88
89 FormatVWindow::FormatVWindow(Asset *asset, int recording)
90  : BC_Window(_(PROGRAM_NAME ": File format"), 410, 115, 0, 0)
91 { this->asset = asset; this->recording = recording; }
92
93 FormatVWindow::~FormatVWindow()
94 {
95 }
96
97 void FormatVWindow::create_objects()
98 {
99         int x, y = 10;
100         int init_x;
101
102         init_x = x = 10;
103
104         if(asset->format == FILE_JPEG_LIST)
105         {
106                 add_subwindow(new BC_Title(x, y, _("Set parameters for this video format:")));
107                 y += 30;
108                 add_subwindow(new BC_Title(x, y, _("Quality:")));
109                 x += 70;
110                 add_subwindow(new FormatQuality(x, y, asset, asset->quality));
111                 y += 40;
112                 x = init_x;
113         }
114         else
115         {
116                 add_subwindow(new BC_Title(x, y, _("Video is not supported in this format.")));
117                 y += 40;
118         }
119
120         add_subwindow(new BC_OKButton(x + 170, y));
121 }
122
123 int FormatVWindow::close_event()
124 {
125         set_done(0);
126 }
127
128
129
130
131
132
133
134 FormatQuality::FormatQuality(int x, int y, Asset *asset, int default_)
135  : BC_ISlider(x,
136         y,
137         0,
138         100,
139         100,
140         0,
141         100,
142         default_,
143         1)
144 {
145         this->asset = asset;
146 }
147 FormatQuality::~FormatQuality()
148 {
149 }
150 int FormatQuality::handle_event()
151 {
152         asset->quality = get_value();
153 }
154
155
156
157 FormatBits::FormatBits(int x, int y, Asset *asset)
158  : BitsPopup(x, y, asset)
159 { this->asset = asset; }
160 FormatBits::~FormatBits() {}
161 int FormatBits::handle_event()
162 {
163         asset->bits = get_bits();
164 }
165
166
167
168 FormatDither::FormatDither(int x, int y, int *dither)
169  : BC_CheckBox(x, y, *dither, _("Dither"))
170 { this->dither = dither; }
171 FormatDither::~FormatDither() {}
172 int FormatDither::handle_event()
173 {
174         *dither = get_value();
175 }
176
177
178
179
180 FormatSigned::FormatSigned(int x, int y, Asset *asset)
181  : BC_CheckBox(x, y, asset->signed_, _("Signed"))
182 { this->asset = asset; }
183 FormatSigned::~FormatSigned() {}
184 int FormatSigned::handle_event()
185 {
186         asset->signed_ = get_value();
187 }
188
189
190
191
192
193
194 FormatHILO::FormatHILO(int x, int y, Asset *asset)
195  : BC_Radial(x, y, asset->byte_order ^ 1)
196 {
197         this->asset = asset;
198 }
199 FormatHILO::~FormatHILO() {}
200
201 int FormatHILO::handle_event()
202 {
203         asset->byte_order = get_value() ^ 1;
204         lohi->update(get_value() ^ 1);
205 }
206
207 FormatLOHI::FormatLOHI(int x, int y, FormatHILO *hilo, Asset *asset)
208  : BC_Radial(x, y, asset->byte_order)
209 {
210         this->hilo = hilo;
211         this->asset = asset;
212 }
213 FormatLOHI::~FormatLOHI() {}
214
215 int FormatLOHI::handle_event()
216 {
217         asset->byte_order = get_value();
218         hilo->update(get_value() ^ 1);
219 }
220