Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.1 / cinelerra / filepng.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 FILEPNG_H
23 #define FILEPNG_H
24
25
26 #include "file.inc"
27 #include "filebase.h"
28 #include "filelist.h"
29 #include "vframe.inc"
30
31 class FilePNG : public FileList
32 {
33 public:
34         FilePNG(Asset *asset, File *file);
35         ~FilePNG();
36
37         static int check_sig(Asset *asset);
38         static void get_parameters(BC_WindowBase *parent_window,
39                 Asset *asset,
40                 BC_WindowBase* &format_window,
41                 int audio_options,
42                 int video_options);
43         static int get_best_colormodel(Asset *asset, int driver);
44         int colormodel_supported(int colormodel);
45         int read_frame(VFrame *frame, VFrame *data);
46         int write_frame(VFrame *frame, VFrame *data, FrameWriterUnit *unit);
47         int can_copy_from(Asset *asset, int64_t position);
48         FrameWriterUnit* new_writer_unit(FrameWriter *writer);
49
50         int read_frame_header(char *path);
51
52
53
54         int native_cmodel;
55 // For decoding only
56         VFrame *temp;
57 };
58
59
60 class PNGUnit : public FrameWriterUnit
61 {
62 public:
63         PNGUnit(FilePNG *file, FrameWriter *writer);
64         ~PNGUnit();
65
66         FilePNG *file;
67         VFrame *temp_frame;
68 };
69
70 class PNGConfigVideo : public BC_Window
71 {
72 public:
73         PNGConfigVideo(BC_WindowBase *parent_window, Asset *asset);
74         ~PNGConfigVideo();
75
76         void create_objects();
77         int close_event();
78
79         BC_WindowBase *parent_window;
80         Asset *asset;
81 };
82
83
84 class PNGUseAlpha : public BC_CheckBox
85 {
86 public:
87         PNGUseAlpha(PNGConfigVideo *gui, int x, int y);
88         int handle_event();
89         PNGConfigVideo *gui;
90 };
91
92
93 #endif