RafaMar + programmer friend Help button in Batch Render addition
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / indexfile.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 INDEXFILE_H
23 #define INDEXFILE_H
24
25 #include "cache.inc"
26 #include "edit.inc"
27 #include "file.inc"
28 #include "guicast.h"
29 #include "indexable.inc"
30 #include "indexfile.inc"
31 #include "indexstate.inc"
32 #include "indexthread.inc"
33 #include "mainprogress.inc"
34 #include "mwindow.inc"
35 #include "preferences.inc"
36 #include "renderengine.inc"
37 #include "resourcepixmap.inc"
38 #include "samples.inc"
39 #include "trackcanvas.inc"
40 #include "bctimer.inc"
41 #include "tracks.inc"
42
43
44
45 class IndexFile
46 {
47 public:
48         IndexFile(MWindow *mwindow);
49         IndexFile(MWindow *mwindow, Indexable *indexable);
50         ~IndexFile();
51
52         void reset();
53
54 // Get the index state object from the asset or the nested EDL
55         IndexState* get_state();
56         static const char* get_source_path(Indexable *indexable);
57
58         int open_index();
59         int create_index(MainProgressBar *progress);
60         int interrupt_index();
61         static void delete_index(Preferences *preferences,
62                 Indexable *indexable, const char *suffix=0);
63         static void delete_index_files(Preferences *preferences,
64                 Indexable *indexable);
65         static int get_index_filename(char *source_filename,
66                 char *index_directory,
67                 char *index_filename,
68                 const char *input_filename,
69                 const char *suffix=0);
70         void update_edl_asset();
71         int redraw_edits(int force);
72         int draw_index(TrackCanvas *canvas,
73                 ResourcePixmap *pixmap,
74                 Edit *edit,
75                 int x,
76                 int w);
77         int close_index();
78         int remove_index();
79         int read_info(Indexable *indexable = 0);
80         int write_info();
81
82         MWindow *mwindow;
83         char index_filename[BCTEXTLEN], source_filename[BCTEXTLEN];
84 // Object to create an index for
85         Indexable *indexable;
86         Timer *redraw_timer;
87
88         void update_mainasset();
89
90         int open_file();
91         int open_source();
92         void close_source();
93         int64_t get_required_scale();
94 // File descriptor for index file.
95         FILE *fd;
96 // File object for source if an asset
97         File *source;
98 // Render engine for source if the source is a nested EDL
99         RenderEngine *render_engine;
100 // Audio cache for render engine
101         CICache *cache;
102 // Number of samples in source.  Calculated in open_source.
103         int64_t source_length;
104 // Number of channels in source.  Calculated in open_source.
105         int source_channels;
106         int source_samplerate;
107         int64_t file_length;   // Length of index file in bytes
108         int interrupt_flag;    // Flag set when index building is interrupted
109 };
110
111 #endif