Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.1 / cinelerra / filepng.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 "asset.h"
23 #include "edit.h"
24 #include "file.h"
25 #include "filepng.h"
26 #include "interlacemodes.h"
27 #include "language.h"
28 #include "mwindow.inc"
29 #include "vframe.h"
30 #include "videodevice.inc"
31 #include "mainerror.h"
32
33 #include <png.h>
34 #include <string.h>
35
36 FilePNG::FilePNG(Asset *asset, File *file)
37  : FileList(asset, file, "PNGLIST", ".png", FILE_PNG, FILE_PNG_LIST)
38 {
39 }
40
41 FilePNG::~FilePNG()
42 {
43 }
44
45
46
47 int FilePNG::check_sig(Asset *asset)
48 {
49         FILE *stream = fopen(asset->path, "rb");
50
51         if(stream)
52         {
53
54 //printf("FilePNG::check_sig 1\n");
55                 char test[16];
56                 (void)fread(test, 16, 1, stream);
57                 fclose(stream);
58
59 //              if(png_sig_cmp((unsigned char*)test, 0, 8))
60                 if(png_check_sig((unsigned char*)test, 8))
61                 {
62 //printf("FilePNG::check_sig 1\n");
63                         return 1;
64                 }
65                 else
66                 if(test[0] == 'P' && test[1] == 'N' && test[2] == 'G' &&
67                         test[3] == 'L' && test[4] == 'I' && test[5] == 'S' && test[6] == 'T')
68                 {
69 //printf("FilePNG::check_sig 1\n");
70                         return 1;
71                 }
72         }
73         return 0;
74 }
75
76
77
78 void FilePNG::get_parameters(BC_WindowBase *parent_window,
79         Asset *asset,
80         BC_WindowBase* &format_window,
81         int audio_options,
82         int video_options)
83 {
84         if(video_options)
85         {
86                 PNGConfigVideo *window = new PNGConfigVideo(parent_window, asset);
87                 format_window = window;
88                 window->create_objects();
89                 window->run_window();
90                 delete window;
91         }
92 }
93
94
95
96
97 int FilePNG::can_copy_from(Asset *asset, int64_t position)
98 {
99         if(asset->format == FILE_PNG ||
100                 asset->format == FILE_PNG_LIST)
101                 return 1;
102
103         return 0;
104 }
105
106
107 int FilePNG::colormodel_supported(int colormodel)
108 {
109         if (((colormodel == BC_RGBA8888) && (native_cmodel == BC_RGBA16161616))
110             || ((colormodel == BC_RGB161616) && (native_cmodel == BC_RGBA16161616))
111             || (colormodel == BC_RGB888))
112         {
113             return colormodel;
114         }
115         else if ((colormodel == BC_RGB161616) && (native_cmodel == BC_RGBA8888))
116         {
117             return BC_RGB888;
118         }
119         else
120         {
121             return native_cmodel;
122         }
123 }
124
125
126 int FilePNG::get_best_colormodel(Asset *asset, int driver)
127 {
128         if(asset->png_use_alpha)
129                 return BC_RGBA8888;
130         else
131                 return BC_RGB888;
132 }
133
134
135
136
137 int FilePNG::read_frame_header(char *path)
138 {
139         int result = 0;
140         int color_type;
141         int color_depth;
142         int num_trans = 0;
143
144         FILE *stream;
145
146         if(!(stream = fopen(path, "rb")))
147         {
148                 eprintf("Error while opening \"%s\" for reading. \n%m\n", asset->path);
149                 return 1;
150         }
151
152         png_structp png_ptr;
153         png_infop info_ptr;
154         png_infop end_info = 0;
155         png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
156         info_ptr = png_create_info_struct(png_ptr);
157         png_init_io(png_ptr, stream);
158
159
160         png_read_info(png_ptr, info_ptr);
161
162         asset->width = png_get_image_width(png_ptr, info_ptr);
163         asset->height = png_get_image_height(png_ptr, info_ptr);
164
165         asset->interlace_mode = BC_ILACE_MODE_NOTINTERLACED;
166
167         color_type = png_get_color_type(png_ptr, info_ptr);
168         color_depth = png_get_bit_depth(png_ptr,info_ptr);
169
170         png_get_tRNS(png_ptr, info_ptr, NULL, &num_trans, NULL);
171
172         if (color_depth == 16)
173         {
174             if (color_type & PNG_COLOR_MASK_ALPHA)
175             {
176                 native_cmodel = BC_RGBA16161616;
177             }
178             else
179             {
180                 native_cmodel = BC_RGB161616;
181             }
182         }
183         else
184         if ((color_type & PNG_COLOR_MASK_ALPHA)
185             || (num_trans > 0))
186         {
187             native_cmodel = BC_RGBA8888;
188         }
189         else
190         {
191             native_cmodel = BC_RGB888;
192         }
193
194
195         png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
196         fclose(stream);
197
198
199
200         return result;
201 }
202
203
204
205
206 static void read_function(png_structp png_ptr,
207         png_bytep data,
208         png_uint_32 length)
209 {
210         VFrame *input = (VFrame*)png_get_io_ptr(png_ptr);
211
212         memcpy(data, input->get_data() + input->get_compressed_size(), length);
213         input->set_compressed_size(input->get_compressed_size() + length);
214 }
215
216 static void write_function(png_structp png_ptr, png_bytep data, png_uint_32 length)
217 {
218         VFrame *output = (VFrame*)png_get_io_ptr(png_ptr);
219         long total_length = output->get_compressed_size() + length;
220         if(output->get_compressed_allocated() < total_length) {
221                 long new_length = 2 * (output->get_compressed_allocated() + length);
222                 output->allocate_compressed_data(new_length);
223         }
224         memcpy(output->get_data() + output->get_compressed_size(), data, length);
225         output->set_compressed_size(total_length);
226 }
227
228 static void flush_function(png_structp png_ptr)
229 {
230 }
231
232
233 int FilePNG::write_frame(VFrame *frame, VFrame *data, FrameWriterUnit *unit)
234 {
235         PNGUnit *png_unit = (PNGUnit*)unit;
236         png_structp png_ptr = 0;
237         png_infop info_ptr = 0;
238         VFrame *output_frame;
239         int result = 1;
240         data->set_compressed_size(0);
241 //printf("FilePNG::write_frame 1\n");
242         native_cmodel = asset->png_use_alpha ? BC_RGBA8888 : BC_RGB888;
243         if(frame->get_color_model() != native_cmodel)
244         {
245                 if(!png_unit->temp_frame) png_unit->temp_frame = new VFrame(0,
246                         -1, asset->width, asset->height, native_cmodel, -1);
247
248                 png_unit->temp_frame->transfer_from(frame);
249                 output_frame = png_unit->temp_frame;
250         }
251         else
252                 output_frame = frame;
253
254 //printf("FilePNG::write_frame 1\n");
255         png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
256         if( png_ptr && !setjmp(png_jmpbuf(png_ptr)) ) {
257                 info_ptr = png_create_info_struct(png_ptr);
258                 png_set_write_fn(png_ptr, data,
259                         (png_rw_ptr)write_function, (png_flush_ptr)flush_function);
260                 png_set_compression_level(png_ptr, 5);
261
262                 png_set_IHDR(png_ptr, info_ptr, asset->width, asset->height, 8,
263                         asset->png_use_alpha ?  PNG_COLOR_TYPE_RGB_ALPHA : PNG_COLOR_TYPE_RGB,
264                         PNG_INTERLACE_NONE, PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
265                 png_write_info(png_ptr, info_ptr);
266                 png_write_image(png_ptr, output_frame->get_rows());
267                 png_write_end(png_ptr, info_ptr);
268                 png_destroy_write_struct(&png_ptr, &info_ptr);
269                 result = 0;
270         }
271         else {
272                 char error[256];  png_error(png_ptr, error);
273                 fprintf(stderr, "FilePNG::write_frame failed: %s\n", error);
274         }
275
276         png_destroy_write_struct(&png_ptr, &info_ptr);
277 //printf("FilePNG::write_frame 3 %d\n", data->get_compressed_size());
278         return result;
279 }
280
281 int FilePNG::read_frame(VFrame *output, VFrame *input)
282 {
283         png_structp png_ptr;
284         png_infop info_ptr;
285         png_infop end_info = 0;
286         int result = 0;
287         int color_type;
288         int color_depth;
289         int colormodel;
290         int size = input->get_compressed_size();
291         input->set_compressed_size(0);
292
293
294         //printf("FilePNG::read_frame 1 %d %d\n", native_cmodel, output->get_color_model());
295         png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
296         info_ptr = png_create_info_struct(png_ptr);
297         png_set_read_fn(png_ptr, input, (png_rw_ptr)read_function);
298         png_read_info(png_ptr, info_ptr);
299
300         int png_color_type = png_get_color_type(png_ptr, info_ptr);
301         if (png_color_type == PNG_COLOR_TYPE_GRAY ||
302                 png_color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
303         {
304                 png_set_gray_to_rgb(png_ptr);
305         }
306
307         colormodel = output->get_color_model();
308         color_type = png_get_color_type(png_ptr, info_ptr);
309         color_depth = png_get_bit_depth(png_ptr,info_ptr);
310
311         if (((native_cmodel == BC_RGBA16161616)||(native_cmodel == BC_RGB161616))
312             && ((colormodel == BC_RGBA8888)||(colormodel == BC_RGB888)))
313         {
314             png_set_strip_16(png_ptr);
315         }
316
317         /* If we're dropping the alpha channel, use the background color of the image
318            otherwise, use black */
319         if (((native_cmodel == BC_RGBA16161616)||(native_cmodel == BC_RGBA8888))
320             && ((colormodel == BC_RGB161616)||(colormodel == BC_RGB888)))
321         {
322             png_color_16 my_background;
323             png_color_16p image_background;
324
325             memset(&my_background,0,sizeof(png_color_16));
326
327             if (png_get_bKGD(png_ptr, info_ptr, &image_background))
328             {
329                 png_set_background(png_ptr, image_background, PNG_BACKGROUND_GAMMA_FILE, 1, 1.0);
330             }
331             else
332             {
333                 png_set_background(png_ptr, &my_background, PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
334             }
335         }
336
337         /* Little endian */
338         if ((color_depth == 16)
339             &&((colormodel == BC_RGBA16161616)||(colormodel == BC_RGB161616)))
340         {
341             png_set_swap(png_ptr);
342         }
343
344         if (!(color_type & PNG_COLOR_MASK_COLOR))
345         {
346             png_set_gray_to_rgb(png_ptr);
347         }
348
349         if (color_type & PNG_COLOR_MASK_PALETTE)
350         {
351             png_set_palette_to_rgb(png_ptr);
352         }
353
354         if (color_depth <= 8)
355         {
356             png_set_expand(png_ptr);
357         }
358
359 /* read the image */
360         png_read_image(png_ptr, output->get_rows());
361 //printf("FilePNG::read_frame 3\n");
362         png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
363
364         input->set_compressed_size(size);
365
366 //printf("FilePNG::read_frame 4\n");
367         return result;
368 }
369
370 FrameWriterUnit* FilePNG::new_writer_unit(FrameWriter *writer)
371 {
372         return new PNGUnit(this, writer);
373 }
374
375
376
377
378
379
380
381
382
383
384
385
386 PNGUnit::PNGUnit(FilePNG *file, FrameWriter *writer)
387  : FrameWriterUnit(writer)
388 {
389         this->file = file;
390         temp_frame = 0;
391 }
392 PNGUnit::~PNGUnit()
393 {
394         if(temp_frame) delete temp_frame;
395 }
396
397
398
399
400
401
402
403
404
405 PNGConfigVideo::PNGConfigVideo(BC_WindowBase *parent_window, Asset *asset)
406  : BC_Window(PROGRAM_NAME ": Video Compression",
407         parent_window->get_abs_cursor_x(1),
408         parent_window->get_abs_cursor_y(1),
409         200,
410         100)
411 {
412         this->parent_window = parent_window;
413         this->asset = asset;
414 }
415
416 PNGConfigVideo::~PNGConfigVideo()
417 {
418 }
419
420 void PNGConfigVideo::create_objects()
421 {
422         lock_window("PNGConfigVideo::create_objects()");
423         int x = 10, y = 10;
424         add_subwindow(new PNGUseAlpha(this, x, y));
425         add_subwindow(new BC_OKButton(this));
426         show_window(1);
427         unlock_window();
428 }
429
430 int PNGConfigVideo::close_event()
431 {
432         set_done(0);
433         return 1;
434 }
435
436
437 PNGUseAlpha::PNGUseAlpha(PNGConfigVideo *gui, int x, int y)
438  : BC_CheckBox(x, y, gui->asset->png_use_alpha, _("Use alpha"))
439 {
440         this->gui = gui;
441 }
442
443 int PNGUseAlpha::handle_event()
444 {
445         gui->asset->png_use_alpha = get_value();
446         return 1;
447 }
448
449
450