upgrade to ffmpeg 4.2, rework mask for speedup
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / mwindow.h
1 /*
2  * CINELERRA
3  * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  */
20
21 #ifndef MWINDOW_H
22 #define MWINDOW_H
23
24 #include <stdio.h>
25 #include <stdint.h>
26
27 #include "apatchgui.h"
28 #include "arraylist.h"
29 #include "asset.inc"
30 #include "assets.inc"
31 #include "audiodevice.inc"
32 #include "autos.inc"
33 #include "awindow.inc"
34 #include "batchrender.inc"
35 #include "bcwindowbase.inc"
36 #include "bdcreate.inc"
37 #include "brender.inc"
38 #include "cache.inc"
39 #include "channel.inc"
40 #include "channeldb.inc"
41 #include "commercials.inc"
42 #include "cwindow.inc"
43 #include "bchash.inc"
44 #include "devicedvbinput.inc"
45 #include "devicempeginput.inc"
46 #include "dvdcreate.inc"
47 #include "edit.inc"
48 #include "edl.inc"
49 #include "edlsession.inc"
50 #include "exportedl.inc"
51 #include "filesystem.inc"
52 #include "filexml.inc"
53 #include "framecache.inc"
54 #include "gwindow.inc"
55 #include "indexable.inc"
56 #include "keyframegui.inc"
57 #include "levelwindow.inc"
58 #include "loadmode.inc"
59 #include "mainerror.inc"
60 #include "mainindexes.inc"
61 #include "mainprogress.inc"
62 #include "mainsession.inc"
63 #include "mainundo.inc"
64 #include "maxchannels.h"
65 #include "mixersalign.inc"
66 #include "mutex.inc"
67 #include "mwindow.inc"
68 #include "mwindowgui.inc"
69 #include "new.inc"
70 #include "patchbay.inc"
71 #include "playback3d.inc"
72 #include "playbackengine.inc"
73 #include "plugin.inc"
74 #include "pluginfclient.inc"
75 #include "pluginserver.inc"
76 #include "pluginset.inc"
77 #include "preferences.inc"
78 #include "preferencesthread.inc"
79 #include "proxy.inc"
80 #include "record.inc"
81 #include "recordlabel.inc"
82 #include "render.inc"
83 #include "sharedlocation.inc"
84 #include "sighandler.inc"
85 #include "splashgui.inc"
86 #include "shuttle.inc"
87 #include "theme.inc"
88 #include "thread.h"
89 #include "threadloader.inc"
90 #include "timebar.inc"
91 #include "timebomb.h"
92 #include "tipwindow.inc"
93 #include "track.inc"
94 #include "tracking.inc"
95 #include "tracks.inc"
96 #include "transition.inc"
97 #include "transportque.inc"
98 #include "videowindow.inc"
99 #include "vpatchgui.h"
100 #include "vwindow.inc"
101 #include "zwindow.inc"
102 #include "wwindow.inc"
103 #include "wavecache.inc"
104
105 #define FONT_SEARCHPATH "fonts"
106
107
108 class MWindow : public Thread
109 {
110 public:
111         MWindow();
112         ~MWindow();
113
114 // ======================================== initialization commands
115         void create_objects(int want_gui,
116                 int want_new,
117                 char *config_path);
118         int uses_opengl();
119         void show_splash();
120         void hide_splash();
121         void start();
122         void run();
123
124         int run_script(FileXML *script);
125         int new_project();
126         int delete_project(int flash = 1);
127         void quit();
128         int restart() { return restart_status; }
129
130         int load_defaults();
131         int save_defaults();
132         int set_filename(const char *filename);
133 // Total vertical pixels in timeline
134         int get_tracks_height();
135 // Total horizontal pixels in timeline
136         int get_tracks_width();
137 // Show windows
138         void show_vwindow();
139         void show_awindow();
140         void show_lwindow();
141         void show_cwindow();
142         void show_gwindow();
143         void hide_gwindow();
144         void restore_windows();
145         void load_layout(const char *layout);
146         void save_layout(const char *layout);
147         void delete_layout(const char *layout);
148         int tile_windows(int window_config);
149         char *get_cwindow_display();
150         void set_screens(int value);
151         int asset_to_edl(EDL *new_edl,
152                 Asset *new_asset,
153                 RecordLabels *labels = 0);
154
155 // Entry point to insert assets and insert edls.  Called by TrackCanvas
156 // and AssetPopup when assets are dragged in from AWindow.
157 // Takes the drag vectors from MainSession and
158 // pastes either assets or clips depending on which is full.
159 // Returns 1 if the vectors were full
160         int paste_assets(double position, Track *dest_track, int overwrite);
161
162 // Insert the assets at a point in the EDL.  Called by menueffects,
163 // render, and CWindow drop but recording calls paste_edls directly for
164 // labels.
165         void load_assets(ArrayList<Indexable*> *new_assets,
166                 double position,
167                 int load_mode,
168                 Track *first_track /* = 0 */,
169                 RecordLabels *labels /* = 0 */,
170                 int edit_labels,
171                 int edit_plugins,
172                 int edit_autos,
173                 int overwrite);
174         int paste_edls(ArrayList<EDL*> *new_edls,
175                 int load_mode,
176                 Track *first_track /* = 0 */,
177                 double current_position /* = -1 */,
178                 int edit_labels,
179                 int edit_plugins,
180                 int edit_autos,
181                 int overwrite);
182 // Reset everything for a load
183         void update_project(int load_mode);
184         void update_vwindow();
185 // Fit selected time to horizontal display range
186         void fit_selection();
187 // Fit selected autos to the vertical display range
188         void fit_autos(int all);
189         void change_currentautorange(int autogrouptype, int increment, int changemax);
190         void expand_autos(int changeall, int domin, int domax);
191         void shrink_autos(int changeall, int domin, int domax);
192 // move the window to include the cursor
193         void find_cursor();
194 // Search plugindb and put results in argument
195         static void search_plugindb(int do_audio,
196                 int do_video,
197                 int is_realtime,
198                 int is_transition,
199                 int is_theme,
200                 ArrayList<PluginServer*> &results);
201 // Find the plugin whose title matches title and return it
202         static PluginServer* scan_plugindb(char *title,
203                 int data_type);
204         static void fix_plugin_title(char *title);
205         static int plugin_exists(const char *plugin_path, ArrayList<PluginServer*> &plugins);
206         static int plugin_exists(char *plugin_path);
207         void dump_plugindb(FILE *fp);
208         void stop_playback(int wait);
209         void stop_transport();
210         void undo_before(const char *description = "", void *creator = 0);
211         void undo_after(const char *description, uint32_t load_flags, int changes_made = 1);
212
213         void handle_mixers(EDL *edl, int command, int wait_tracking,
214                 int use_inout, int toggle_audio, int loop_play, float speed);
215         ZWindow *create_mixer(Indexable *indexable, double position);
216         void create_mixers(double position = 0);
217         void refresh_mixers(int dir=1);
218         void stop_mixers();
219         void close_mixers(int destroy=1);
220         void open_mixers();
221         ZWindow *get_mixer(Mixer *&mixer);
222         void del_mixer(ZWindow *zwindow);
223         int mixer_track_active(Track *track);
224         void update_mixer_tracks();
225         void start_mixer();
226         int select_zwindow(ZWindow *zwindow);
227         void tile_mixers();
228         int load_filenames(ArrayList<char*> *filenames,
229                 int load_mode = LOADMODE_REPLACE,
230 // Cause the project filename on the top of the window to be updated.
231 // Not wanted for loading backups.
232                 int update_filename = 1);
233
234
235 // Print out plugins which are referenced in the EDL but not loaded.
236         void test_plugins(EDL *new_edl, char *path);
237
238         int interrupt_indexes();  // Stop index building
239
240         int redraw_time_dependancies();     // after reconfiguring the time format, sample rate, frame rate
241
242 // =========================================== movement
243
244         void next_time_format();
245         void prev_time_format();
246         void time_format_common();
247         int reposition_timebar(int new_pixel, int new_height);
248         int expand_sample();
249         int zoom_in_sample();
250         int zoom_sample(int64_t zoom_sample);
251         void zoom_autos(float min, float max);
252         void zoom_amp(int64_t zoom_amp);
253         void zoom_track(int64_t zoom_track);
254         int fit_sample();
255         int move_left(int64_t distance = 0);
256         int move_right(int64_t distance = 0);
257         void move_up(int64_t distance = 0);
258         void move_down(int64_t distance = 0);
259         int find_selection(double position, int scroll_display = 0);
260         void toggle_camera_xyz();
261         void toggle_projector_xyz();
262         double get_position();
263         void set_position(double position);
264
265 // seek to labels
266 // shift_down must be passed by the caller because different windows call
267 // into this
268         int next_label(int shift_down);
269         int prev_label(int shift_down);
270 // seek to edit handles
271         int next_edit_handle(int shift_down);
272         int prev_edit_handle(int shift_down);
273 // seek to keyframes
274         int nearest_plugin_keyframe(int shift_down, int dir);
275 // offset is pixels to add to track_start
276         void trackmovement(int offset, int pane_number);
277 // view_start is pixels
278         int samplemovement(int64_t view_start, int pane_number);
279         void select_all();
280         int goto_start();
281         int goto_end();
282         int goto_position(double position);
283         int expand_y();
284         int zoom_in_y();
285         int expand_t();
286         int zoom_in_t();
287         void split_x();
288         void split_y();
289         void crop_video();
290         void update_plugins();
291 // Call after every edit operation
292         void save_backup();
293         void load_backup();
294         void show_plugin(Plugin *plugin);
295         void hide_plugin(Plugin *plugin, int lock);
296         void hide_plugins();
297         void delete_plugin(PluginServer *plugin);
298 // Update plugins with configuration changes.
299 // Called by TrackCanvas::cursor_motion_event.
300         void update_plugin_guis(int do_keyframe_guis = 1);
301         void update_plugin_states();
302         void update_plugin_titles();
303 // Called by Attachmentpoint during playback.
304 // Searches for matching plugin and renders data in it.
305         void render_plugin_gui(void *data, Plugin *plugin);
306         void render_plugin_gui(void *data, int size, Plugin *plugin);
307
308 // Called from PluginVClient::process_buffer
309 // Returns 1 if a GUI for the plugin is open so OpenGL routines can determine if
310 // they can run.
311         int plugin_gui_open(Plugin *plugin);
312
313         void show_keyframe_gui(Plugin *plugin);
314         void hide_keyframe_guis();
315         void hide_keyframe_gui(Plugin *plugin);
316         void update_keyframe_guis();
317         int get_hash_color(Edit *edit);
318         int get_hash_color(int v);
319         int get_group_color(int v);
320         int get_title_color(Edit *edit);
321
322 // ============================= editing commands ========================
323
324 // Map each recordable audio track to the desired pattern
325         void map_audio(int pattern);
326         void remap_audio(int pattern);
327         enum
328         {
329                 AUDIO_5_1_TO_2,
330                 AUDIO_1_TO_1
331         };
332         void add_audio_track_entry(int above, Track *dst);
333         int add_audio_track(int above, Track *dst);
334         void add_clip_to_edl(EDL *edl);
335         void add_video_track_entry(Track *dst = 0);
336         int add_video_track(int above, Track *dst);
337         void add_subttl_track_entry(Track *dst = 0);
338         int add_subttl_track(int above, Track *dst);
339
340         void asset_to_all();
341         void asset_to_size();
342         void asset_to_rate();
343 // Entry point for clear operations.
344         void clear_entry();
345 // Clears active region in EDL.
346 // If clear_handle, edit boundaries are cleared if the range is 0.
347 // Called by paste, record, menueffects, render, and CWindow drop.
348         void clear(int clear_handle);
349         void clear_labels();
350         int clear_labels(double start, double end);
351         void clear_hard_edges();
352         int clear_hard_edges(double start, double end);
353         void clear_select();
354         void concatenate_tracks();
355         int copy_flags(int copy_flags=COPY_CLIPBOARD);
356         void copy();
357         int copy(double start, double end);
358         void cut();
359         void blade(double position);
360         void cut(double start, double end, double new_position=-1);
361 // cut edit from current position to handle/label
362         void cut_left_edit();
363         void cut_right_edit();
364         void cut_left_label();
365         void cut_right_label();
366
367 // Calculate aspect ratio from pixel counts
368         static int create_aspect_ratio(float &w, float &h, int width, int height);
369 // Calculate defaults path
370         static void create_defaults_path(char *string, const char *config_file);
371
372         void delete_track(Track *track);
373         void delete_tracks();
374         int feather_edits(int64_t feather_samples, int audio, int video);
375         int64_t get_feather(int audio, int video);
376         float get_aspect_ratio();
377         void insert(double position, FileXML *file,
378                 int edit_labels, int edit_plugins, int edit_autos,
379                 EDL *parent_edl, Track *first_track, int overwrite);
380
381 // TrackCanvas calls this to insert multiple effects from the drag_pluginservers
382 // into pluginset_highlighted.
383         void insert_effects_canvas(double start, double length);
384
385 // CWindow calls this to insert multiple effects from
386 // the drag_pluginservers array.
387         void insert_effects_cwindow(Track *dest_track);
388
389 // Attach new effect to all recordable tracks
390 // single_standalone - attach 1 standalone on the first track and share it with
391 // other tracks
392         void insert_effect(char *title,
393                 SharedLocation *shared_location,
394                 int data_type, int plugin_type, int single_standalone);
395
396 // This is called multiple times by the above functions.
397 // It can't sync parameters.
398         void insert_effect(char *title,
399                 SharedLocation *shared_location,
400                 Track *track, PluginSet *plugin_set,
401                 double start, double length, int plugin_type);
402
403         void match_output_size(Track *track);
404         void delete_edit(Edit *edit, const char *msg, int collapse=0);
405         void delete_edits(ArrayList<Edit*> *edits, const char *msg, int collapse=0);
406         void delete_edits(int collapse=0);
407         void cut_selected_edits(int collapse, int packed);
408 // Move edit to new position
409         void move_edits(ArrayList<Edit*> *edits, Track *track, double position,
410                 int mode); // mode: 0 - mute and overwrite,  1 - cut and paste
411         void selected_edits_to_clipboard(int packed);
412         void paste_clipboard(Track *first_track, double position, int overwrite,
413                 int edit_edits, int edit_labels, int edit_autos, int edit_plugins);
414         void move_group(EDL *group, Track *first_track, double position, int overwrite);
415 // Move effect to position
416         void move_effect(Plugin *plugin, Track *track, int64_t position);
417         void move_effect(Plugin *plugin, PluginSet *plugin_set, int64_t position);
418         void move_plugins_up(PluginSet *plugin_set);
419         void move_plugins_down(PluginSet *plugin_set);
420         void move_track_down(Track *track);
421         void move_tracks_down();
422         void move_track_up(Track *track);
423         void move_tracks_up();
424         void mute_selection();
425         void new_folder(const char *new_folder, int is_clips);
426         void delete_folder(char *folder);
427 // For clipboard commands
428         void paste();
429         void paste(double start, Track *first_track, int clear_selection, int overwrite);
430 // For splice and overwrite
431         void overwrite(EDL *source, int all);
432         void splice(EDL *source, int all);
433         int paste(double start, double end, FileXML *file,
434                 int edit_labels, int edit_plugins, int edit_autos,
435                 Track *first_track, int overwrite);
436         int paste_output(int64_t startproject, int64_t endproject,
437                 int64_t startsource_sample, int64_t endsource_sample,
438                 int64_t startsource_frame, int64_t endsource_frame,
439                 Asset *asset, RecordLabels *new_labels);
440         void paste_silence();
441
442 // Detach single transition
443         void detach_transition(Transition *transition);
444 // Detach all transitions in selection
445         void detach_transitions();
446 // Attach dragged transition
447         void paste_transition();
448 // Attach transition to all edits in selection
449         void paste_transitions(int track_type, char *title);
450 // Attach transition dragged onto CWindow
451         void paste_transition_cwindow(Track *dest_track);
452 // Attach default transition to single edit
453         void paste_audio_transition();
454         void paste_video_transition();
455         void shuffle_edits();
456         void reverse_edits();
457         void align_edits();
458         void set_edit_length(double length);
459 // Set length of single transition
460         void set_transition_length(Transition *transition, double length);
461 // Set length in seconds of all transitions in active range
462         void set_transition_length(double length);
463
464         void remove_indexfile(Indexable *indexable);
465         void rebuild_indices();
466 // Asset removal from caches
467         void reset_caches();
468         void remove_asset_from_caches(Asset *asset);
469         void remove_assets_from_project(int push_undo /* = 0 */,
470                 int redraw /* 1 */,
471                 ArrayList<Indexable*> *drag_assets /* mwindow->session->drag_assets */,
472                 ArrayList<EDL*> *drag_clips /* mwindow->session->drag_clips */);
473         void remove_assets_from_disk();
474         void resize_track(Track *track, int w, int h);
475
476         void set_automation_mode(int mode);
477         void set_keyframe_type(int mode);
478         void set_auto_keyframes(int value);
479         void set_span_keyframes(int value);
480         void set_auto_visibility(Autos *autos, int value);
481         void set_labels_follow_edits(int value);
482
483 // Update the editing mode
484         int set_editing_mode(int new_editing_mode);
485         void toggle_editing_mode();
486         void set_inpoint();
487         void set_outpoint();
488         void unset_inoutpoint();
489         void toggle_loop_playback();
490         void trim_selection();
491 // Synchronize EDL settings with all playback engines depending on current
492 // operation.  Doesn't redraw anything.
493         void sync_parameters(int change_type = CHANGE_PARAMS);
494         void save_clip(EDL *new_edl, const char *txt);
495         void to_clip(EDL *edl, const char *txt, int all);
496         int toggle_label();
497         void undo_entry(BC_WindowBase *calling_window_gui);
498         void redo_entry(BC_WindowBase *calling_window_gui);
499         void save_undo_data();
500         void load_undo_data();
501         int copy_target(const char *path, const char *target);
502         int link_target(const char *real_path, const char *link_path, int relative);
503         void save_project(const char *dir, int save_mode, int overwrite, int reload);
504
505         int cut_automation();
506         int copy_automation();
507         int paste_automation();
508         void clear_automation();
509         int cut_default_keyframe();
510         int copy_default_keyframe();
511 // Use paste_automation to paste the default keyframe in other position.
512 // Use paste_default_keyframe to replace the default keyframe with whatever is
513 // in the clipboard.
514         int paste_default_keyframe();
515         int clear_default_keyframe();
516
517         FloatAuto* get_float_auto(PatchGUI *patch,int idx);
518         IntAuto* get_int_auto(PatchGUI *patch,int idx);
519         PanAuto* get_pan_auto(PatchGUI *patch);
520         PatchGUI *get_patchgui(Track *track);
521
522         int modify_edithandles();
523         int modify_pluginhandles();
524         void finish_modify_handles();
525         void rescale_proxy(EDL *clip, int orig_scale, int new_scale);
526         void add_proxy(int use_scaler,
527                 ArrayList<Indexable*> *orig_assets,
528                 ArrayList<Indexable*> *proxy_assets);
529         int render_proxy(ArrayList<Indexable *> &new_idxbls);
530         void beep(double freq, double secs, double gain);
531         int enable_proxy();
532         int disable_proxy();
533         int to_proxy(Asset *asset, int new_scale, int new_use_scaler);
534         ProxyBeep *proxy_beep;
535
536         void dump_plugins(FILE *fp=stdout);
537         void dump_edl(FILE *fp=stdout);
538         void dump_undo(FILE *fp=stdout);
539         void dump_exe(FILE *fp=stdout);
540         static void trap_hook(FILE *fp, void *vp);
541
542         void reset_android_remote();
543
544 // Send new EDL to caches
545         void age_caches();
546         int optimize_assets();            // delete unused assets from the cache and assets
547
548         void select_point(double position);
549         int set_loop_boundaries();         // toggle loop playback and set boundaries for loop playback
550
551
552         Playback3D *playback_3d;
553         SplashGUI *splash_window;
554
555 // Main undo stack
556         MainUndo *undo;
557         int undo_command;
558
559         BC_Hash *defaults;
560         Assets *assets;
561 // CICaches for drawing timeline only
562         CICache *audio_cache, *video_cache;
563 // Frame cache for drawing timeline only.
564 // Cache drawing doesn't wait for file decoding.
565         FrameCache *frame_cache;
566         WaveCache *wave_cache;
567         Preferences *preferences;
568         PreferencesThread *preferences_thread;
569         MainSession *session;
570         Theme *theme;
571         MainIndexes *mainindexes;
572         MainProgress *mainprogress;
573         BRender *brender;
574         char cin_lang[4];
575         int brender_active;
576         const char *default_standard;
577         static Commercials *commercials;
578         int commercial_active;
579         int has_commercials();
580 // copy of edl created in speed_before, used in speed_after to normalize_speed
581         EDL *speed_edl;
582
583 // Menu items
584         ArrayList<ColormodelItem*> colormodels;
585         ArrayList<InterlacemodeItem*>          interlace_project_modes;
586         ArrayList<InterlacemodeItem*>          interlace_asset_modes;
587
588         int reset_meters();
589         void resync_guis();
590
591         int select_asset(Asset *asset, int vstream, int astream, int delete_tracks);
592         int select_asset(int vtrack, int delete_tracks);
593
594 // Channel DB for playback only.  Record channel DB's are in record.C
595         ChannelDB *channeldb_buz;
596         ChannelDB *channeldb_v4l2jpeg;
597
598 // ====================================== plugins ==============================
599
600 // Contains file descriptors for all the dlopens
601         static ArrayList<PluginServer*> *plugindb;
602 // Currently visible plugins
603         int64_t plugin_visibility;
604         ArrayList<PluginServer*> *plugin_guis;
605 // GUI Plugins to delete
606         ArrayList<PluginServer*> *dead_plugins;
607 // Keyframe editors
608         ArrayList<KeyFrameThread*> *keyframe_threads;
609
610 // Adjust sample position to line up with frames.
611         int fix_timing(int64_t &samples_out,
612                 int64_t &frames_out,
613                 int64_t samples_in);
614
615
616         CreateBD_Thread *create_bd;
617         CreateDVD_Thread *create_dvd;
618         BatchRenderThread *batch_render;
619         Render *render;
620
621         ExportEDL *exportedl;
622
623
624 // Master edl
625         EDL *edl;
626 // Main Window GUI
627         MWindowGUI *gui;
628 // Compositor
629         CWindow *cwindow;
630 // Viewer
631         Mutex *vwindows_lock;
632         ArrayList<VWindow*> vwindows;
633 // Mixer
634         Mutex *zwindows_lock;
635         ArrayList<ZWindow*> zwindows;
636         MixersAlign *mixers_align;
637
638 // Asset manager
639         AWindow *awindow;
640 // Automation window
641         GWindow *gwindow;
642 // Tip of the day
643         TipWindow *twindow;
644 // Warning window
645         WWindow *wwindow;
646         void show_warning(int *do_warning, const char *text);
647         int wait_warning();
648 // Levels
649         LevelWindow *lwindow;
650         Mutex *run_lock;
651 // Lock during creation and destruction of GUI
652         Mutex *plugin_gui_lock;
653         Mutex *dead_plugin_lock;
654         Mutex *keyframe_gui_lock;
655 // Lock during creation and destruction of brender so playback doesn't use it.
656         Mutex *brender_lock;
657 // Initialize shared memory
658         void init_shm(const char *pfn, int64_t min);
659 // Initialize channel DB's for playback
660         void init_channeldb();
661         void init_render();
662         void init_exportedl();
663 // These three happen synchronously with each other
664 // Make sure this is called after synchronizing EDL's.
665         void init_brender();
666 // Restart brender after testing its existence
667         void restart_brender();
668 // Stops brender after testing its existence
669         void stop_brender();
670 // This one happens asynchronously of the others.  Used by playback to
671 // see what frame is background rendered.
672         int brender_available(int position);
673         void set_brender_active(int v, int update=1);
674         int put_commercial();
675         void activate_commercial() { commercial_active = 1; }
676         void commit_commercial();
677         void undo_commercial();
678         void cut_commercials();
679         void update_gui(int changed_edl);
680         int paste_subtitle_text(char *text, double start, double end);
681
682         void init_error();
683         void finit_error();
684         static void init_defaults(BC_Hash* &defaults, char *config_path);
685         void check_language();
686         const char *default_std();
687         void fill_preset_defaults(const char *preset, EDLSession *session);
688         const char *get_preset_name(int index);
689         void init_edl();
690         void init_awindow();
691         void init_gwindow();
692         void init_tipwindow();
693 // Used by MWindow and RenderFarmClient
694         static void get_plugin_path(char *path, const char *plug_dir, const char *fs_path);
695         static int init_plugins(MWindow *mwindow, Preferences *preferences);
696         static int init_ladspa_plugins(MWindow *mwindow, Preferences *preferences);
697         static void init_plugin_tips(ArrayList<PluginServer*> &plugins, const char *lang);
698         static int check_plugin_index(ArrayList<PluginServer*> &plugins,
699                 const char *plug_dir, const char *plug_path);
700         static void init_plugin_index(MWindow *mwindow, Preferences *preferences,
701                 FILE *fp, const char *plugin_dir);
702         static int init_ladspa_index(MWindow *mwindow, Preferences *preferences,
703                 FILE *fp, const char *plugin_dir);
704         static void scan_plugin_index(MWindow *mwindow, Preferences *preferences,
705                 FILE *fp, const char *plug_dir, const char *plug_path, int &idx);
706         static void init_ffmpeg();
707         static void init_ffmpeg_index(MWindow *mwindow, Preferences *preferences, FILE *fp);
708         static int load_plugin_index(MWindow *mwindow, FILE *fp, const char *plugin_dir);
709         static PluginServer *new_ffmpeg_server(MWindow *mwindow, const char *name);
710         static int init_lv2_index(MWindow *mwindow, Preferences *preferences, FILE *fp);
711         static PluginServer *new_lv2_server(MWindow *mwindow, const char *name);
712         static void remove_plugin_index();
713
714         void init_preferences();
715         void init_signals();
716         void init_shuttle();
717         void init_theme();
718         void init_compositor();
719         void init_levelwindow();
720 // Called when creating a new viewer to view footage
721         VWindow* get_viewer(int start_it, int idx=-1);
722         void init_cache();
723         void init_menus();
724         void init_indexes();
725         void init_gui();
726         void init_3d();
727         void init_playbackcursor();
728         void init_commercials();
729         static void add_plugins(ArrayList<PluginServer*> &plugins);
730         static void delete_plugins();
731         void speed_before();
732         int speed_after(int done);
733         int normalize_speed(EDL *old_edl, EDL *new_edl);
734 //
735         void clean_indexes();
736 //      TimeBomb timebomb;
737         SigHandler *sighandler;
738         int restart_status;
739         int screens;
740         int in_destructor;
741         Shuttle *shuttle;
742 };
743
744 #endif