Add back 2 patches for histogram and overlayframe that are working correctly and...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / fileref.h
1 #ifndef __FILEREF_H__
2 #define __FILEREF_H__
3 /*
4  * CINELERRA
5  * Copyright (C) 2020 William Morrow
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22
23 #include "asset.inc"
24 #include "cache.inc"
25 #include "filebase.h"
26 #include "file.inc"
27 #include "renderengine.inc"
28 #include "samples.inc"
29 #include "transportque.inc"
30 #include "vframe.inc"
31
32
33 class FileREF : public FileBase
34 {
35 public:
36         FileREF(Asset *asset, File *file);
37         ~FileREF();
38
39         int open_file(int rd, int wr);
40         int64_t get_video_position();
41         int64_t get_audio_position();
42         int set_video_position(int64_t pos);
43         int set_layer(int layer);
44         int set_audio_position(int64_t pos);
45         int set_channel(int channel);
46         int read_samples(double *buffer, int64_t len);
47         int read_frame(VFrame *frame);
48         int colormodel_supported(int colormodel);
49         static int get_best_colormodel(Asset *asset, int driver);
50         int close_file();
51
52         EDL *ref;
53         TransportCommand *command;
54         Samples *samples[MAX_CHANNELS];
55         int64_t samples_position, samples_length;
56         int64_t audio_position;
57         int64_t video_position;
58         int channel, layer;
59         RenderEngine *render_engine;
60         CICache *acache, *vcache;
61         VFrame *temp;
62         int is_open;
63 };
64
65 #endif