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