dblclk label folder item is goto, fix no-drag trns if not drawn, amp up pane divider...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / mwindow.C
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 #include "aboutprefs.h"
22 #include "asset.h"
23 #include "assets.h"
24 #include "atrack.h"
25 #include "audioalsa.h"
26 #include "autos.h"
27 #include "awindowgui.h"
28 #include "awindow.h"
29 #include "batchrender.h"
30 #include "bccmodels.h"
31 #include "bcdisplayinfo.h"
32 #include "bcprogressbox.h"
33 #include "bcsignals.h"
34 #include "bctimer.h"
35 #include "bctrace.h"
36 #include "bdcreate.h"
37 #include "brender.h"
38 #include "cache.h"
39 #include "channel.h"
40 #include "channeldb.h"
41 #include "channelinfo.h"
42 #include "clip.h"
43 #include "clipedls.h"
44 #include "commercials.h"
45 #include "confirmsave.h"
46 #include "convert.h"
47 #include "cplayback.h"
48 #include "ctimebar.h"
49 #include "cwindowgui.h"
50 #include "cwindow.h"
51 #include "cwindowtool.h"
52 #include "bchash.h"
53 #include "devicedvbinput.inc"
54 #include "dvdcreate.h"
55 #include "editpanel.h"
56 #include "edl.h"
57 #include "edlsession.h"
58 #include "errorbox.h"
59 #include "fileformat.h"
60 #include "file.h"
61 #include "filesystem.h"
62 #include "filexml.h"
63 #include "floatautos.h"
64 #include "framecache.h"
65 #include "gwindow.h"
66 #include "gwindowgui.h"
67 #include "keyframegui.h"
68 #include "indexfile.h"
69 #include "intautos.h"
70 #include "interlacemodes.h"
71 #include "language.h"
72 #include "levelwindowgui.h"
73 #include "levelwindow.h"
74 #include "loadfile.inc"
75 #include "localsession.h"
76 #include "maincursor.h"
77 #include "mainerror.h"
78 #include "mainindexes.h"
79 #include "mainmenu.h"
80 #include "mainprogress.h"
81 #include "mainsession.h"
82 #include "mainundo.h"
83 #include "mbuttons.h"
84 #include "mixersalign.h"
85 #include "mutex.h"
86 #include "mwindowgui.h"
87 #include "mwindow.h"
88 #include "new.h"
89 #include "panautos.h"
90 #include "patchbay.h"
91 #include "playback3d.h"
92 #include "playbackengine.h"
93 #include "plugin.h"
94 #include "pluginserver.h"
95 #include "pluginset.h"
96 #include "preferences.h"
97 #include "proxy.h"
98 #include "record.h"
99 #include "recordmonitor.h"
100 #include "recordlabel.h"
101 #include "removefile.h"
102 #include "render.h"
103 #include "resourcethread.h"
104 #include "savefile.inc"
105 #include "samplescroll.h"
106 #include "sha1.h"
107 #include "shuttle.h"
108 #include "sighandler.h"
109 #include "splashgui.h"
110 #include "statusbar.h"
111 #include "theme.h"
112 #include "threadloader.h"
113 #include "timebar.h"
114 #include "timelinepane.h"
115 #include "tipwindow.h"
116 #include "trackcanvas.h"
117 #include "track.h"
118 #include "tracking.h"
119 #include "trackscroll.h"
120 #include "tracks.h"
121 #include "transition.h"
122 #include "transportque.h"
123 #include "vframe.h"
124 #include "vtrack.h"
125 #include "versioninfo.h"
126 #include "vicon.h"
127 #include "videodevice.inc"
128 #include "videowindow.h"
129 #include "vplayback.h"
130 #include "vwindowgui.h"
131 #include "vwindow.h"
132 #include "wavecache.h"
133 #include "wintv.h"
134 #include "wwindow.h"
135 #include "x10tv.h"
136 #include "zoombar.h"
137 #include "zwindow.h"
138 #include "zwindowgui.h"
139 #include "exportedl.h"
140
141 #include "defaultformats.h"
142 #include "ntsczones.h"
143
144 #include <stdint.h>
145 #include <stdlib.h>
146 #include <unistd.h>
147 #include <fcntl.h>
148 #include <string.h>
149 #include <sys/types.h>
150 #include <sys/stat.h>
151 #include <sys/time.h>
152 #include <sys/mman.h>
153 #include <sys/file.h>
154 #include <limits.h>
155 #include <errno.h>
156
157
158 extern "C"
159 {
160
161
162
163
164 // Hack for libdv to remove glib dependancy
165
166 // void
167 // g_log (const char    *log_domain,
168 //        int  log_level,
169 //        const char    *format,
170 //        ...)
171 // {
172 // }
173 //
174 // void
175 // g_logv (const char    *log_domain,
176 //        int  log_level,
177 //        const char    *format,
178 //        ...)
179 // {
180 // }
181 //
182
183 }
184
185 extern long cin_timezone;
186
187 ArrayList<PluginServer*>* MWindow::plugindb = 0;
188 Commercials* MWindow::commercials = 0;
189
190
191 MWindow::MWindow()
192  : Thread(1, 0, 0)
193 {
194         run_lock = new Mutex("MWindow::run_lock");
195         plugin_gui_lock = new Mutex("MWindow::plugin_gui_lock");
196         dead_plugin_lock = new Mutex("MWindow::dead_plugin_lock");
197         vwindows_lock = new Mutex("MWindow::vwindows_lock");
198         zwindows_lock = new Mutex("MWindow::zwindows_lock");
199         brender_lock = new Mutex("MWindow::brender_lock");
200         keyframe_gui_lock = new Mutex("MWindow::keyframe_gui_lock");
201
202         playback_3d = 0;
203         splash_window = 0;
204         undo = 0;
205         undo_command = COMMAND_NONE;
206         defaults = 0;
207         assets = 0;
208         //commercials = 0;
209         commercial_active = 0;
210         audio_cache = 0;
211         video_cache = 0;
212         frame_cache = 0;
213         wave_cache = 0;
214         preferences = 0;
215         session = 0;
216         theme = 0;
217         mainindexes = 0;
218         mainprogress = 0;
219         brender = 0;
220         brender_active = 0;
221         strcpy(cin_lang,"en");
222         channeldb_buz =  new ChannelDB;
223         channeldb_v4l2jpeg =  new ChannelDB;
224         plugin_guis = 0;
225         dead_plugins = 0;
226         keyframe_threads = 0;
227         create_bd = 0;
228         create_dvd = 0;
229         batch_render = 0;
230         convert_render = 0;
231         render = 0;
232         edl = 0;
233         gui = 0;
234         cwindow = 0;
235         awindow = 0;
236         gwindow = 0;
237         twindow = 0;
238         wwindow = 0;
239         lwindow = 0;
240         sighandler = 0;
241         restart_status = 0;
242         screens = 1;
243         in_destructor = 0;
244         speed_edl = 0;
245         beeper = 0;
246         redraw_tracks = 0;
247         shuttle = 0;
248         wintv = 0;
249         x10tv = 0;
250         mixers_align = 0;
251 }
252
253
254 // Need to delete brender temporary here.
255 MWindow::~MWindow()
256 {
257         run_lock->lock("MWindow::~MWindow");
258         in_destructor = 1;
259 //printf("MWindow::~MWindow %d\n", __LINE__);
260         if( wwindow && wwindow->is_running() )
261                 wwindow->close_window();
262         if( twindow && twindow->is_running() )
263                 twindow->close_window();
264         gui->remote_control->deactivate();
265         gui->record->stop();
266 #ifdef HAVE_DVB
267         gui->channel_info->stop();
268 #endif
269         delete beeper;          beeper = 0;
270         delete redraw_tracks;   redraw_tracks = 0;
271         delete create_bd;       create_bd = 0;
272         delete create_dvd;      create_dvd = 0;
273 #ifdef HAVE_SHUTTLE
274         delete shuttle;         shuttle = 0;
275 #endif
276 #ifdef HAVE_WINTV
277         delete wintv;           wintv = 0;
278 #endif
279 #ifdef HAVE_X10TV
280         delete x10tv;           x10tv = 0;
281 #endif
282         delete batch_render;    batch_render = 0;
283         delete convert_render;  convert_render = 0;
284         delete render;          render = 0;
285         delete mixers_align;    mixers_align = 0;
286         commit_commercial();
287         if( commercials && !commercials->remove_user() ) commercials = 0;
288         close_mixers();
289         if( speed_edl ) { speed_edl->remove_user();  speed_edl = 0; }
290 // Save defaults for open plugins
291         plugin_gui_lock->lock("MWindow::~MWindow");
292         for(int i = 0; i < plugin_guis->size(); i++) {
293                 plugin_guis->get(i)->hide_gui();
294                 delete_plugin(plugin_guis->get(i));
295         }
296         plugin_gui_lock->unlock();
297         hide_keyframe_guis();
298         clean_indexes();
299         save_defaults();
300 // Give up and go to a movie
301 //  cant run valgrind if this is used
302
303         gui->del_keyboard_listener(
304                 (int (BC_WindowBase::*)(BC_WindowBase *))
305                 &MWindowGUI::keyboard_listener);
306         reset_caches(0);
307 #if 0
308 // release the hounds
309         if( awindow && awindow->gui ) awindow->gui->close(0);
310         if( cwindow && cwindow->gui ) cwindow->gui->close(0);
311         if( lwindow && lwindow->gui ) lwindow->gui->close(0);
312         if( gwindow && gwindow->gui ) gwindow->gui->close(0);
313         vwindows.remove_all_objects();
314         zwindows.remove_all_objects();
315         gui->close(0);
316         if( awindow ) awindow->join();
317         if( cwindow ) cwindow->join();
318         if( lwindow ) lwindow->join();
319         if( gwindow ) gwindow->join();
320         join();
321 #else
322 // one at a time, or nouveau chokes
323 #define close_gui(win) if( win ) { \
324   if( win->gui ) win->gui->close(0); \
325   win->join(); }
326         close_gui(awindow);
327         close_gui(cwindow);
328         close_gui(lwindow);
329         close_gui(gwindow);
330         vwindows.remove_all_objects();
331         zwindows.remove_all_objects();
332         gui->close(0);
333         join();
334 #endif
335         dead_plugins->remove_all_objects();
336 // must delete theme before destroying plugindb
337 //  theme destructor will be deleted by delete_plugins
338         delete theme;           theme = 0;
339         delete_plugins();
340         finit_error();
341         keyframe_threads->remove_all_objects();
342         colormodels.remove_all_objects();
343         delete awindow;         awindow = 0;
344         delete lwindow;         lwindow = 0;
345         delete twindow;         twindow = 0;
346         delete wwindow;         wwindow = 0;
347         delete gwindow;         gwindow = 0;
348         delete cwindow;         cwindow = 0;
349         delete gui;             gui = 0;
350         delete mainindexes;     mainindexes = 0;
351         delete mainprogress;    mainprogress = 0;
352  // delete the caches after the assets
353         if( audio_cache ) { audio_cache->remove_user();  audio_cache = 0; }
354         if( video_cache ) { video_cache->remove_user();  video_cache = 0; }
355         delete frame_cache;     frame_cache = 0;
356         delete wave_cache;      wave_cache = 0;
357         delete plugin_guis;     plugin_guis = 0;
358         delete dead_plugins;    dead_plugins = 0;
359         delete keyframe_threads;  keyframe_threads = 0;
360         delete undo;            undo = 0;
361         delete preferences;     preferences = 0;
362         delete exportedl;       exportedl = 0;
363         delete session;         session = 0;
364         delete defaults;        defaults = 0;
365         delete assets;          assets = 0;
366         delete splash_window;   splash_window = 0;
367         if( !edl->Garbage::remove_user() ) edl = 0;
368         delete channeldb_buz;
369         delete channeldb_v4l2jpeg;
370 // This must be last thread to exit
371         delete playback_3d;     playback_3d = 0;
372         delete dead_plugin_lock;
373         delete plugin_gui_lock;
374         delete vwindows_lock;
375         delete zwindows_lock;
376         delete brender_lock;
377         delete keyframe_gui_lock;
378         colormodels.remove_all_objects();
379         interlace_project_modes.remove_all_objects();
380         interlace_asset_modes.remove_all_objects();
381         sighandler->terminate();
382         delete sighandler;
383         delete run_lock;
384 }
385
386
387 void MWindow::quit()
388 {
389         gui->set_done(0);
390 }
391
392 void MWindow::init_error()
393 {
394         MainError::init_error(this);
395 }
396
397 void MWindow::finit_error()
398 {
399         MainError::finit_error();
400 }
401
402 void MWindow::create_defaults_path(char *string, const char *config_file)
403 {
404 // set the .bcast path
405         FileSystem fs;
406
407         sprintf(string, "%s/", File::get_config_path());
408         fs.complete_path(string);
409         if(!fs.is_dir(string))
410                 fs.create_dir(string);
411
412 // load the defaults
413         strcat(string, config_file);
414 }
415 const char *MWindow::default_std()
416 {
417         char buf[BCTEXTLEN], *p = 0;
418
419         int fd = open(TIMEZONE_NAME, O_RDONLY);
420         if( fd >= 0 ) {
421                 int l = read(fd, buf, sizeof(buf)-1);
422                 close(fd);
423                 if( l > 0 ) {
424                         if( buf[l-1] == '\n' ) --l;
425                         buf[l] = 0;
426                         p = buf;
427                 }
428         }
429         if( !p ) {
430                 int l = readlink(LOCALTIME_LINK, buf, sizeof(buf)-1);
431                 if( l > 0 ) {
432                         buf[l] = 0;
433                         if( !(p=strstr(buf, ZONEINFO_STR)) != 0 ) return "PAL";
434                         p += strlen(ZONEINFO_STR);
435                 }
436         }
437
438         if( p ) {
439                 for( int i=0; ntsc_zones[i]; ++i ) {
440                         if( !strcmp(ntsc_zones[i], p) )
441                                 return "NTSC";
442                 }
443         }
444
445         p = getenv("TZ");
446         if( p ) {
447                 for( int i=0; ntsc_zones[i]; ++i ) {
448                         if( !strcmp(ntsc_zones[i], p) )
449                                 return "NTSC";
450                 }
451         }
452
453 // cin_timezone: Seconds west of UTC.  240sec/deg
454         double tz_deg =  -cin_timezone / 240.;
455 // from Honolulu = -10, to New York = -5, 15deg/hr   lat -150..-75
456         return tz_deg >= -10*15 && tz_deg <= -5*15 ? "NTSC" : "PAL";
457 }
458
459 void MWindow::fill_preset_defaults(const char *preset, EDLSession *session)
460 {
461         struct formatpresets *fpr;
462
463         for(fpr = &format_presets[0]; fpr->name; fpr++)
464         {
465                 if(strcmp(_(fpr->name), preset) == 0)
466                 {
467                         session->audio_channels = fpr->audio_channels;
468                         session->audio_tracks = fpr->audio_tracks;
469                         session->sample_rate = fpr->sample_rate;
470                         session->video_channels = fpr->video_channels;
471                         session->video_tracks = fpr->video_tracks;
472                         session->frame_rate = fpr->frame_rate;
473                         session->output_w = fpr->output_w;
474                         session->output_h = fpr->output_h;
475                         session->aspect_w = fpr->aspect_w;
476                         session->aspect_h = fpr->aspect_h;
477                         session->interlace_mode = fpr->interlace_mode;
478                         session->color_model = fpr->color_model;
479                         return;
480                 }
481         }
482 }
483
484 const char *MWindow::get_preset_name(int index)
485 {
486         if(index < 0 || index >= (int)MAX_NUM_PRESETS)
487                 return "Error";
488         return _(format_presets[index].name);
489 }
490
491
492 void MWindow::init_defaults(BC_Hash* &defaults, char *config_path)
493 {
494         char path[BCTEXTLEN];
495 // Use user supplied path
496         if(config_path[0])
497                 strcpy(path, config_path);
498         else
499                 create_defaults_path(path, CONFIG_FILE);
500
501         delete defaults;
502         defaults = new BC_Hash(path);
503         defaults->load();
504 }
505
506
507 void MWindow::check_language()
508 {
509         char pref_locale[BCSTRLEN];
510         strcpy(pref_locale, DEFAULT_LOCALE);
511         defaults->get("LOCALE",pref_locale);
512 // set LANGUAGE if pref locale != sys
513         if( strcmp(pref_locale, DEFAULT_LOCALE) )
514                 setenv("LANGUAGE", pref_locale, 1);
515
516         char curr_lang[BCTEXTLEN]; curr_lang[0] = 0;
517         const char *env_lang = getenv("LANGUAGE");
518         if( !env_lang ) env_lang = getenv("LC_ALL");
519         if( !env_lang ) env_lang = getenv("LANG");
520         if( !env_lang ) {
521                 snprintf(curr_lang, sizeof(curr_lang), "%s_%s-%s",
522                         BC_Resources::language, BC_Resources::region, BC_Resources::encoding);
523                 env_lang = curr_lang;
524         }
525         char last_lang[BCTEXTLEN]; last_lang[0] = 0;
526         defaults->get("LAST_LANG",last_lang);
527         if( strcmp(env_lang,last_lang)) {
528                 printf("lang changed from '%s' to '%s'\n", last_lang, env_lang);
529                 defaults->update("LAST_LANG",env_lang);
530                 char plugin_path[BCTEXTLEN];
531                 create_defaults_path(plugin_path, PLUGIN_FILE);
532                 ::remove(plugin_path);
533                 char ladspa_path[BCTEXTLEN];
534                 create_defaults_path(ladspa_path, LADSPA_FILE);
535                 ::remove(ladspa_path);
536                 defaults->save();
537         }
538         if( strlen(env_lang) > 1 &&
539             ( env_lang[2] == 0 || env_lang[2] == '_'  || env_lang[2] == '.' ) ) {
540                 cin_lang[0] = env_lang[0];  cin_lang[1] = env_lang[1];  cin_lang[2] = 0;
541         }
542         else
543                 strcpy(cin_lang, "en");
544 }
545
546 void MWindow::get_plugin_path(char *path, const char *plug_dir, const char *fs_path)
547 {
548         char *base_path = FileSystem::basepath(fs_path), *bp = base_path;
549         if( plug_dir ) {
550                 const char *dp = plug_dir;
551                 while( *bp && *dp && *bp == *dp ) { ++bp; ++dp; }
552                 bp = !*dp && *bp == '/' ? bp+1 : base_path;
553         }
554         strcpy(path, bp);
555         delete [] base_path;
556 }
557
558 int MWindow::load_plugin_index(MWindow *mwindow, FILE *fp, const char *plugin_dir)
559 {
560         if( !fp ) return -1;
561 // load index
562         fseek(fp, 0, SEEK_SET);
563         int ret = 0;
564         char index_line[BCTEXTLEN];
565         int index_version = -1, len = strlen(plugin_dir);
566         if( !fgets(index_line, BCTEXTLEN, fp) ||
567             sscanf(index_line, "%d", &index_version) != 1 ||
568             index_version != PLUGIN_FILE_VERSION ||
569             !fgets(index_line, BCTEXTLEN, fp) ||
570             (int)strlen(index_line)-1 != len || index_line[len] != '\n' ||
571             strncmp(index_line, plugin_dir, len) != 0 ) ret = 1;
572
573         ArrayList<PluginServer*> plugins;
574         while( !ret && !feof(fp) && fgets(index_line, BCTEXTLEN, fp) ) {
575                 if( index_line[0] == ';' ) continue;
576                 if( index_line[0] == '#' ) continue;
577                 int type = PLUGIN_TYPE_UNKNOWN;
578                 char path[BCTEXTLEN], title[BCTEXTLEN];
579                 int64_t mtime = 0;
580                 if( PluginServer::scan_table(index_line, type, path, title, mtime) ) {
581                         ret = 1; continue;
582                 }
583                 PluginServer *server = 0;
584                 switch( type ) {
585                 case PLUGIN_TYPE_BUILTIN:
586                 case PLUGIN_TYPE_EXECUTABLE:
587                 case PLUGIN_TYPE_LADSPA: {
588                         char plugin_path[BCTEXTLEN];  struct stat st;
589                         sprintf(plugin_path, "%s/%s", plugin_dir, path);
590                         if( stat(plugin_path, &st) || st.st_mtime != mtime ) {
591                                 ret = 1; continue;
592                         }
593                         server = new PluginServer(mwindow, plugin_path, type);
594                         break; }
595                 case PLUGIN_TYPE_FFMPEG: {
596                         server = new_ffmpeg_server(mwindow, path);
597                         break; }
598                 case PLUGIN_TYPE_LV2: {
599                         server = new_lv2_server(mwindow, path);
600                         break; }
601                 }
602                 if( !server ) continue;
603                 plugins.append(server);
604 // Create plugin server from index entry
605                 server->set_title(title);
606                 if( server->read_table(index_line) ) {
607                         ret = 1;  continue;
608                 }
609         }
610
611         if( !ret )
612                 ret = check_plugin_index(plugins, plugin_dir, ".");
613
614         if( !ret )
615                 add_plugins(plugins);
616         else
617                 plugins.remove_all_objects();
618
619         return ret;
620 }
621
622 int MWindow::check_plugin_index(ArrayList<PluginServer*> &plugins,
623         const char *plug_dir, const char *plug_path)
624 {
625         char plugin_path[BCTEXTLEN];
626         sprintf(plugin_path, "%s/%s", plug_dir, plug_path);
627         FileSystem fs;
628         fs.set_filter( "[*.plugin][*.so]" );
629         if( fs.update(plugin_path) )
630                 return 1;
631
632         for( int i=0; i<fs.dir_list.total; ++i ) {
633                 char fs_path[BCTEXTLEN];
634                 get_plugin_path(fs_path, 0, fs.dir_list[i]->path);
635                 if( fs.is_dir(fs_path) ) {
636                         get_plugin_path(plugin_path, plug_dir, fs_path);
637                         if( check_plugin_index(plugins, plug_dir, plugin_path) )
638                                 return 1;
639                 }
640                 else if( !plugin_exists(fs_path, plugins) )
641                         return 1;
642         }
643         return 0;
644 }
645
646
647 int MWindow::init_plugins(MWindow *mwindow, Preferences *preferences)
648 {
649         if( !plugindb )
650                 plugindb = new ArrayList<PluginServer*>;
651         init_ffmpeg();
652         char index_path[BCTEXTLEN], plugin_path[BCTEXTLEN];
653         create_defaults_path(index_path, PLUGIN_FILE);
654         char *plugin_dir = FileSystem::basepath(preferences->plugin_dir);
655         strcpy(plugin_path, plugin_dir);  delete [] plugin_dir;
656         FILE *fp = fopen(index_path,"a+");
657         if( !fp ) {
658                 fprintf(stderr,_("MWindow::init_plugins: "
659                         "can't open plugin index: %s\n"), index_path);
660                 return -1;
661         }
662         int fd = fileno(fp), ret = -1;
663         if( !flock(fd, LOCK_EX) ) {
664                 fseek(fp, 0, SEEK_SET);
665                 ret = load_plugin_index(mwindow, fp, plugin_path);
666         }
667         if( ret > 0 ) {
668                 ftruncate(fd, 0);
669                 fseek(fp, 0, SEEK_SET);
670                 printf("init plugin index: %s\n", plugin_path);
671                 fprintf(fp, "%d\n", PLUGIN_FILE_VERSION);
672                 fprintf(fp, "%s\n", plugin_path);
673                 init_plugin_index(mwindow, preferences, fp, plugin_path);
674                 init_ffmpeg_index(mwindow, preferences, fp);
675                 init_lv2_index(mwindow, preferences, fp);
676                 fseek(fp, 0, SEEK_SET);
677                 ret = load_plugin_index(mwindow, fp, plugin_path);
678         }
679         if( ret ) {
680                 fprintf(stderr,_("MWindow::init_plugins: "
681                         "can't %s plugin index: %s\n"),
682                         ret>0 ? _("create") : _("lock"), index_path);
683         }
684         fclose(fp);
685         return ret;
686 }
687
688 int MWindow::init_ladspa_plugins(MWindow *mwindow, Preferences *preferences)
689 {
690 #ifdef HAVE_LADSPA
691         char *path = getenv("LADSPA_PATH");
692         char ladspa_path[BCTEXTLEN];
693         if( !path ) {
694                 strncpy(ladspa_path, File::get_ladspa_path(), sizeof(ladspa_path));
695                 path = ladspa_path;
696         }
697         for( int len=0; *path; path+=len ) {
698                 char *cp = strchr(path,':');
699                 len = !cp ? strlen(path) : cp-path;
700                 char index_path[BCTEXTLEN], plugin_path[BCTEXTLEN];
701                 memcpy(plugin_path, path, len);  plugin_path[len] = 0;
702                 if( cp ) ++len;
703                 char *plugin_dir = FileSystem::basepath(plugin_path);
704                 strcpy(plugin_path, plugin_dir);  delete [] plugin_dir;
705                 create_defaults_path(index_path, LADSPA_FILE);
706                 cp = index_path + strlen(index_path);
707                 for( char *bp=plugin_path; *bp!=0; ++bp )
708                         *cp++ = *bp=='/' ? '_' : *bp;
709                 *cp = 0;
710                 FILE *fp = fopen(index_path,"a+");
711                 if( !fp ) {
712                         fprintf(stderr,_("MWindow::init_ladspa_plugins: "
713                                 "can't open ladspa plugin index: %s\n"), index_path);
714                         continue;
715                 }
716                 int fd = fileno(fp), ret = -1;
717                 if( !flock(fd, LOCK_EX) ) {
718                         fseek(fp, 0, SEEK_SET);
719                         ret = load_plugin_index(mwindow, fp, plugin_path);
720                 }
721                 if( ret > 0 ) {
722                         ftruncate(fd, 0);
723                         fseek(fp, 0, SEEK_SET);
724                         init_ladspa_index(mwindow, preferences, fp, plugin_path);
725                         fseek(fp, 0, SEEK_SET);
726                         ret = load_plugin_index(mwindow, fp, plugin_path);
727                 }
728                 if( ret ) {
729                         fprintf(stderr,_("MWindow::init_ladspa_plugins: "
730                                 "can't %s ladspa plugin index: %s\n"),
731                                 ret>0 ? _("create") : _("lock"), index_path);
732                 }
733                 fclose(fp);
734         }
735 #endif
736         return 1;
737 }
738
739 void MWindow::init_plugin_index(MWindow *mwindow, Preferences *preferences,
740         FILE *fp, const char *plugin_dir)
741 {
742         int idx = PLUGIN_IDS;
743         if( plugindb ) {
744                 for( int i=0; i<plugindb->size(); ++i ) {
745                         PluginServer *server = plugindb->get(i);
746                         if( server->dir_idx >= idx )
747                                 idx = server->dir_idx+1;
748                 }
749         }
750         scan_plugin_index(mwindow, preferences, fp, plugin_dir, ".", idx);
751 }
752
753 void MWindow::scan_plugin_index(MWindow *mwindow, Preferences *preferences, FILE *fp,
754         const char *plug_dir, const char *plug_path, int &idx)
755 {
756         char plugin_path[BCTEXTLEN];
757         sprintf(plugin_path, "%s/%s", plug_dir, plug_path);
758         FileSystem fs;
759         fs.set_filter( "[*.plugin][*.so][*.dll]" );
760         int result = fs.update(plugin_path);
761         if( result || !fs.dir_list.total ) return;
762         int vis_id = idx++;
763
764         for( int i=0; i<fs.dir_list.total; ++i ) {
765                 char fs_path[BCTEXTLEN], path[BCTEXTLEN];
766                 get_plugin_path(fs_path, 0, fs.dir_list[i]->path);
767                 get_plugin_path(path, plug_dir, fs_path);
768                 if( fs.is_dir(fs_path) ) {
769                         scan_plugin_index(mwindow, preferences, fp, plug_dir, path, idx);
770                         continue;
771                 }
772                 if( plugin_exists(path) ) continue;
773                 struct stat st;
774                 if( stat(fs_path, &st) ) continue;
775                 int64_t mtime = st.st_mtime;
776                 PluginServer server(mwindow, fs_path, PLUGIN_TYPE_UNKNOWN);
777                 result = server.open_plugin(1, preferences, 0, 0);
778                 if( !result ) {
779                         server.write_table(fp, path, vis_id, mtime);
780                         server.close_plugin();
781                 }
782                 else if( result == PLUGINSERVER_IS_LAD ) {
783                         int lad_index = 0;
784                         for(;;) {
785                                 PluginServer ladspa(mwindow, fs_path, PLUGIN_TYPE_LADSPA);
786                                 ladspa.set_lad_index(lad_index++);
787                                 result = ladspa.open_plugin(1, preferences, 0, 0);
788                                 if( result ) break;
789                                 ladspa.write_table(fp, path, PLUGIN_LADSPA_ID, mtime);
790                                 ladspa.close_plugin();
791                         }
792                 }
793         }
794 }
795
796 void MWindow::add_plugins(ArrayList<PluginServer*> &plugins)
797 {
798         for( int i=0; i<plugins.size(); ++i )
799                 plugindb->append(plugins[i]);
800         plugins.remove_all();
801 }
802
803 void MWindow::init_plugin_tips(ArrayList<PluginServer*> &plugins, const char *lang)
804 {
805         const char *dat_path = File::get_cindat_path();
806         char msg_path[BCTEXTLEN];
807         FILE *fp = 0;
808         if( BC_Resources::language[0] ) {
809                 snprintf(msg_path, sizeof(msg_path), "%s/info/plugins.%s",
810                         dat_path, lang);
811                 fp = fopen(msg_path, "r");
812         }
813         if( !fp ) {
814                 snprintf(msg_path, sizeof(msg_path), "%s/info/plugins.txt",
815                         dat_path);
816                 fp = fopen(msg_path, "r");
817         }
818         if( !fp ) return;
819         char text[BCTEXTLEN];
820         char *tp = text, *ep = tp + sizeof(text)-1;
821         char title[BCTEXTLEN];
822         title[0] = 0;
823         int no = 0;
824         for(;;) {
825                 ++no;  int done = 1;
826                 char line[BCTEXTLEN], *cp = line;
827                 if( fgets(line,sizeof(line)-1,fp) ) {
828                         if( *cp == '#' ) continue;
829                         done = *cp == ' ' || *cp == '\t' ? 0 : -1;
830                 }
831                 if( done ) {
832                         if( tp > text && *--tp == '\n' ) *tp = 0;
833                         if( title[0] ) {
834                                 int idx = plugins.size();
835                                 while( --idx>=0 && strcmp(plugins[idx]->title, title) );
836                                 if( idx >= 0 ) {
837                                         delete [] plugins[idx]->tip;
838                                         plugins[idx]->tip = cstrdup(text);
839                                 }
840                                 title[0] = 0;
841                         }
842                         if( done > 0 ) break;
843                         tp = text;  *tp = 0;
844                         char *dp = strchr(cp, ':');
845                         if( !dp ) {
846                                 printf("plugin tips: error on line %d\n", no);
847                                 continue;
848                         }
849                         char *bp = title;
850                         while( cp < dp ) *bp++ = *cp++;
851                         *bp = 0;
852                         ++cp;
853                 }
854
855                 while( *cp == ' ' || *cp == '\t' ) ++cp;
856                 for( ; tp<ep && (*tp=*cp)!=0; ++tp,++cp );
857         }
858         fclose(fp);
859 }
860
861 void MWindow::delete_plugins()
862 {
863         plugindb->remove_all_objects();
864         delete plugindb;
865         plugindb = 0;
866 }
867
868 void MWindow::search_plugindb(int do_audio,
869                 int do_video,
870                 int is_realtime,
871                 int is_transition,
872                 int is_theme,
873                 ArrayList<PluginServer*> &results)
874 {
875 // Get plugins
876         for(int i = 0; i < MWindow::plugindb->total; i++)
877         {
878                 PluginServer *current = MWindow::plugindb->get(i);
879
880                 if(current->audio == do_audio &&
881                         current->video == do_video &&
882                         (current->realtime == is_realtime || is_realtime < 0) &&
883                         current->transition == is_transition &&
884                         current->theme == is_theme)
885                         results.append(current);
886         }
887
888 // Alphabetize list by title
889         int done = 0;
890         while(!done)
891         {
892                 done = 1;
893
894                 for(int i = 0; i < results.total - 1; i++)
895                 {
896                         PluginServer *value1 = results[i];
897                         PluginServer *value2 = results[i + 1];
898                         if(strcmp(_(value1->title), _(value2->title)) > 0)
899                         {
900                                 done = 0;
901                                 results[i] = value2;
902                                 results[i + 1] = value1;
903                         }
904                 }
905         }
906 }
907
908 PluginServer* MWindow::scan_plugindb(char *title,
909                 int data_type)
910 {
911 //      if(data_type < 0)
912 //      {
913 //              printf("MWindow::scan_plugindb data_type < 0\n");
914 //              return 0;
915 //      }
916
917         for(int i = 0; i < plugindb->total; i++)
918         {
919                 PluginServer *server = plugindb->get(i);
920                 if(server->title &&
921                         !strcasecmp(server->title, title) &&
922                         (data_type < 0 ||
923                                 (data_type == TRACK_AUDIO && server->audio) ||
924                                 (data_type == TRACK_VIDEO && server->video)))
925                         return plugindb->get(i);
926         }
927         return 0;
928 }
929
930 // repair session files with xlated plugin titles
931 void MWindow::fix_plugin_title(char *title)
932 {
933         for(int i = 0; i < plugindb->total; i++) {
934                 PluginServer *server = plugindb->get(i);
935                 if( !server->title ) continue;
936                 const char *server_title = server->title;
937                 if( !bstrcasecmp(title, _(server_title)) ) {
938                         strcpy(title, server_title);
939                         return;
940                 }
941         }
942 }
943
944 int MWindow::plugin_exists(const char *plugin_path, ArrayList<PluginServer*> &plugins)
945 {
946         for( int i=0; i<plugins.size(); ++i )
947                 if( !strcmp(plugin_path, plugins[i]->get_path()) ) return 1;
948         return 0;
949 }
950
951 int MWindow::plugin_exists(char *plugin_path)
952 {
953         return !plugindb ? 0 : plugin_exists(plugin_path, *plugindb);
954 }
955
956 void MWindow::remove_plugin_index()
957 {
958         char index_path[BCTEXTLEN];
959         MWindow::create_defaults_path(index_path, PLUGIN_FILE);
960         ::remove(index_path);
961 }
962
963 void MWindow::init_preferences()
964 {
965         preferences = new Preferences;
966         preferences->load_defaults(defaults);
967         File::setenv_path("LV2_PATH",preferences->lv2_path, 1);
968         session = new MainSession(this);
969         session->load_defaults(defaults);
970         // set x11_host, screens, window_config
971         screens = session->set_default_x11_host();
972         BC_Signals::set_trap_hook(trap_hook, this);
973         BC_Signals::set_catch_segv(preferences->trap_sigsegv);
974         BC_Signals::set_catch_intr(preferences->trap_sigintr);
975         if( preferences->trap_sigsegv || preferences->trap_sigintr ) {
976                 BC_Trace::enable_locks();
977         }
978         else {
979                 BC_Trace::disable_locks();
980         }
981         BC_WindowBase::get_resources()->popupmenu_btnup = preferences->popupmenu_btnup;
982         BC_WindowBase::get_resources()->textbox_focus_policy = preferences->textbox_focus_policy;
983         BC_WindowBase::get_resources()->grab_input_focus = preferences->grab_input_focus;
984         YUV::yuv.yuv_set_colors(preferences->yuv_color_space, preferences->yuv_color_range);
985 }
986
987 void MWindow::clean_indexes()
988 {
989         FileSystem fs;
990         int total_excess;
991         long oldest = 0;
992         int oldest_item = -1;
993         int result;
994         char string[BCTEXTLEN];
995         char string2[BCTEXTLEN];
996
997 // Delete extra indexes
998         fs.set_filter("*.idx");
999         fs.complete_path(preferences->index_directory);
1000         fs.update(preferences->index_directory);
1001 //printf("MWindow::clean_indexes 1 %d\n", fs.dir_list.total);
1002
1003 // Eliminate directories
1004         result = 1;
1005         while(result)
1006         {
1007                 result = 0;
1008                 for(int i = 0; i < fs.dir_list.total && !result; i++)
1009                 {
1010                         fs.join_names(string, preferences->index_directory, fs.dir_list[i]->name);
1011                         if(fs.is_dir(string))
1012                         {
1013                                 delete fs.dir_list[i];
1014                                 fs.dir_list.remove_number(i);
1015                                 result = 1;
1016                         }
1017                 }
1018         }
1019         total_excess = fs.dir_list.total - preferences->index_count;
1020
1021 //printf("MWindow::clean_indexes 2 %d\n", fs.dir_list.total);
1022         while(total_excess > 0)
1023         {
1024 // Get oldest
1025                 for(int i = 0; i < fs.dir_list.total; i++)
1026                 {
1027                         fs.join_names(string, preferences->index_directory, fs.dir_list[i]->name);
1028
1029                         if(i == 0 || fs.get_date(string) <= oldest)
1030                         {
1031                                 oldest = fs.get_date(string);
1032                                 oldest_item = i;
1033                         }
1034                 }
1035
1036                 if(oldest_item >= 0)
1037                 {
1038 // Remove index file
1039                         fs.join_names(string,
1040                                 preferences->index_directory,
1041                                 fs.dir_list[oldest_item]->name);
1042 //printf("MWindow::clean_indexes 1 %s\n", string);
1043                         if(remove(string))
1044                                 perror("delete_indexes");
1045                         delete fs.dir_list[oldest_item];
1046                         fs.dir_list.remove_number(oldest_item);
1047
1048 // Remove table of contents if it exists
1049                         strcpy(string2, string);
1050                         char *ptr = strrchr(string2, '.');
1051                         if(ptr)
1052                         {
1053 //printf("MWindow::clean_indexes 2 %s\n", string2);
1054                                 sprintf(ptr, ".toc");
1055                                 remove(string2);
1056                                 sprintf(ptr, ".mkr");
1057                                 remove(string2);
1058                         }
1059                 }
1060
1061                 total_excess--;
1062         }
1063 }
1064
1065 void MWindow::init_awindow()
1066 {
1067         awindow = new AWindow(this);
1068         awindow->create_objects();
1069 }
1070
1071 void MWindow::init_gwindow()
1072 {
1073         gwindow = new GWindow(this);
1074         gwindow->create_objects();
1075 }
1076
1077 void MWindow::init_tipwindow()
1078 {
1079         TipWindow::load_tips(cin_lang);
1080         if( !twindow )
1081                 twindow = new TipWindow(this);
1082         twindow->start();
1083 }
1084
1085 void MWindow::show_warning(int *do_warning, const char *text)
1086 {
1087         if( do_warning && !*do_warning ) return;
1088         if( !wwindow )
1089                 wwindow = new WWindow(this);
1090         wwindow->show_warning(do_warning, text);
1091 }
1092
1093 int MWindow::wait_warning()
1094 {
1095         return wwindow->wait_result();
1096 }
1097
1098 void MWindow::init_theme()
1099 {
1100         Timer timer;
1101         theme = 0;
1102
1103         PluginServer *theme_plugin = 0;
1104         for(int i = 0; i < plugindb->total && !theme_plugin; i++) {
1105                 if( plugindb->get(i)->theme &&
1106                     !strcasecmp(preferences->theme, plugindb->get(i)->title) )
1107                         theme_plugin = plugindb->get(i);
1108         }
1109
1110         if( !theme_plugin )
1111                 fprintf(stderr, _("MWindow::init_theme: prefered theme %s not found.\n"),
1112                          preferences->theme);
1113
1114         const char *default_theme = DEFAULT_THEME;
1115         if( !theme_plugin && strcasecmp(preferences->theme, default_theme) ) {
1116                 fprintf(stderr, _("MWindow::init_theme: trying default theme %s\n"),
1117                         default_theme);
1118                 for(int i = 0; i < plugindb->total && !theme_plugin; i++) {
1119                         if( plugindb->get(i)->theme &&
1120                             !strcasecmp(default_theme, plugindb->get(i)->title) )
1121                                 theme_plugin = plugindb->get(i);
1122                 }
1123         }
1124
1125         if(!theme_plugin) {
1126                 fprintf(stderr, _("MWindow::init_theme: theme_plugin not found.\n"));
1127                 exit(1);
1128         }
1129
1130         PluginServer *plugin = new PluginServer(*theme_plugin);
1131         if( plugin->open_plugin(0, preferences, 0, 0) ) {
1132                 fprintf(stderr, _("MWindow::init_theme: unable to load theme %s\n"),
1133                         theme_plugin->title);
1134                 exit(1);
1135         }
1136
1137         theme = plugin->new_theme();
1138         theme->mwindow = this;
1139         strcpy(theme->path, plugin->path);
1140         delete plugin;
1141
1142 // Load default images & settings
1143         theme->Theme::initialize();
1144 // Load user images & settings
1145         theme->initialize();
1146 // Create menus with user colors
1147         theme->build_menus();
1148         init_menus();
1149
1150         theme->sort_image_sets();
1151         theme->check_used();
1152 //printf("MWindow::init_theme %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1153 }
1154
1155 void MWindow::init_3d()
1156 {
1157         playback_3d = new Playback3D(this);
1158         playback_3d->create_objects();
1159 }
1160
1161 void MWindow::init_edl()
1162 {
1163         edl = new EDL;
1164         edl->create_objects();
1165         fill_preset_defaults(default_standard, edl->session);
1166         edl->load_defaults(defaults);
1167         edl->session->brender_start = edl->session->brender_end = 0;
1168         edl->create_default_tracks();
1169         edl->tracks->update_y_pixels(theme);
1170 }
1171
1172 void MWindow::init_compositor()
1173 {
1174         cwindow = new CWindow(this);
1175         cwindow->create_objects();
1176 }
1177
1178 void MWindow::init_levelwindow()
1179 {
1180         lwindow = new LevelWindow(this);
1181         lwindow->create_objects();
1182 }
1183
1184 VWindow *MWindow::get_viewer(int start_it, int idx)
1185 {
1186         vwindows_lock->lock("MWindow::get_viewer");
1187         VWindow *vwindow = idx >= 0 && idx < vwindows.size() ? vwindows[idx] : 0;
1188         if( !vwindow ) idx = vwindows.size();
1189         while( !vwindow && --idx >= 0 ) {
1190                 VWindow *vwin = vwindows[idx];
1191                 if( !vwin->is_running() || !vwin->get_edl() )
1192                         vwindow = vwin;
1193         }
1194         if( !vwindow ) {
1195                 vwindow = new VWindow(this);
1196                 vwindow->load_defaults();
1197                 vwindow->create_objects();
1198                 vwindows.append(vwindow);
1199         }
1200         vwindows_lock->unlock();
1201         if( start_it ) vwindow->start();
1202         return vwindow;
1203 }
1204
1205 ZWindow *MWindow::get_mixer(Mixer *&mixer)
1206 {
1207         zwindows_lock->lock("MWindow::get_mixer");
1208         if( !mixer ) mixer = edl->mixers.new_mixer();
1209         ZWindow *zwindow = 0;
1210         for( int i=0; !zwindow && i<zwindows.size(); ++i ) {
1211                 ZWindow *zwdw = zwindows[i];
1212                 if( zwdw->running() ) continue;
1213                 if( zwdw->idx >= 0 ) continue;
1214                 zwindow = zwindows[i];
1215         }
1216         if( !zwindow )
1217                 zwindows.append(zwindow = new ZWindow(this));
1218         zwindow->idx = mixer->idx;
1219         zwindows_lock->unlock();
1220         return zwindow;
1221 }
1222
1223 ZWindow *MWindow::get_mixer(int idx)
1224 {
1225         ZWindow *zwindow = 0;
1226         zwindows_lock->lock("MWindow::get_mixer");
1227         for( int i=0; !zwindow && i<zwindows.size(); ++i ) {
1228                 ZWindow *zwdw = zwindows[i];
1229                 if( !zwdw->running() ) continue;
1230                 if( zwdw->idx != idx ) continue;
1231                 zwindow = zwindows[i];
1232         }
1233         zwindows_lock->unlock();
1234         return zwindow;
1235 }
1236
1237 void MWindow::close_mixer(ZWindow *zwindow)
1238 {
1239         zwindows_lock->lock("MWindow::close_mixer 0");
1240         if( session->selected_zwindow >= 0 ) {
1241                 int i = zwindows.number_of(zwindow);
1242                 if( i >= 0 && i < session->selected_zwindow )
1243                         --session->selected_zwindow;
1244                 else if( i == session->selected_zwindow )
1245                         session->selected_zwindow = -1;
1246         }
1247         zwindows_lock->unlock();
1248         gui->lock_window("MWindow::close_mixer 1");
1249         gui->update_mixers(0, -1);
1250         gui->unlock_window();
1251 }
1252
1253 void MWindow::start_mixer()
1254 {
1255         Mixer *mixer = 0;
1256         ZWindow *zwindow = get_mixer(mixer);
1257         const char *title = 0;
1258
1259         for( Track *track=edl->tracks->first; track!=0; track=track->next ) {
1260                 PatchGUI *patchgui = get_patchgui(track);
1261                 if( !patchgui || !patchgui->mixer ) continue;
1262                 mixer->mixer_ids.append(track->get_mixer_id());
1263                 if( !title ) title = track->title;
1264         }
1265
1266         session->selected_zwindow = -1;
1267         gui->lock_window("MWindow::start_mixer");
1268         gui->update_mixers(0, 0);
1269         gui->unlock_window();
1270
1271         zwindow->set_title(title);
1272         zwindow->start();
1273         refresh_mixers();
1274 }
1275
1276 int MWindow::mixer_track_active(Track *track)
1277 {
1278         int i = session->selected_zwindow;
1279         if( i < 0 || i >= zwindows.size() ) return 0;
1280         ZWindow *zwindow = zwindows[i];
1281         Mixer *mixer = edl->mixers.get_mixer(zwindow->idx);
1282         if( !mixer ) return 0;
1283         int n = mixer->mixer_ids.number_of(track->get_mixer_id());
1284         return n >= 0 ? 1 : 0;
1285 }
1286
1287 void MWindow::update_mixer_tracks()
1288 {
1289         zwindows_lock->lock("MixPatch::handle_event");
1290         int i = session->selected_zwindow;
1291         if( i >= 0 && i < zwindows.size() ) {
1292                 ZWindow *zwindow = zwindows[i];
1293                 zwindow->update_mixer_ids();
1294         }
1295         zwindows_lock->unlock();
1296 }
1297
1298 void MWindow::handle_mixers(EDL *edl, int command, int wait_tracking,
1299                 int use_inout, int toggle_audio, int loop_play, float speed)
1300 {
1301         zwindows_lock->lock("MWindow::handle_mixers");
1302         for( int vidx=0; vidx<zwindows.size(); ++vidx ) {
1303                 ZWindow *zwindow = zwindows[vidx];
1304                 if( zwindow->idx < 0 ) continue;
1305                 Mixer *mixer = edl->mixers.get_mixer(zwindow->idx);
1306                 if( !mixer || !mixer->mixer_ids.size() ) continue;
1307                 int k = -1;
1308                 for( Track *track = edl->tracks->first; k<0 && track!=0; track=track->next ) {
1309                         if( track->data_type != TRACK_VIDEO ) continue;
1310                         int mixer_id = track->get_mixer_id();
1311                         k = mixer->mixer_ids.size();
1312                         while( --k >= 0 && mixer_id != mixer->mixer_ids[k] );
1313                 }
1314                 if( k < 0 ) continue;
1315                 EDL *mixer_edl = new EDL(this->edl);
1316                 mixer_edl->create_objects();
1317                 mixer_edl->copy_all(edl);
1318                 mixer_edl->remove_vwindow_edls();
1319                 for( Track *track = mixer_edl->tracks->first; track!=0; track=track->next ) {
1320                         k = mixer->mixer_ids.size();
1321                         while( --k >= 0 && track->get_mixer_id() != mixer->mixer_ids[k] );
1322                         if( k >= 0 ) {
1323                                 track->armed = 1;
1324                                 track->play = track->data_type == TRACK_VIDEO ? 1 : 0;
1325                         }
1326                         else
1327                                 track->armed = track->play = 0;
1328                 }
1329                 zwindow->change_source(mixer_edl);
1330                 zwindow->handle_mixer(command, 0,
1331                                 use_inout, toggle_audio, loop_play, speed);
1332         }
1333         zwindows_lock->unlock();
1334 }
1335
1336 void MWindow::refresh_mixers(int dir)
1337 {
1338         int command = dir >= 0 ? CURRENT_FRAME : LAST_FRAME;
1339         handle_mixers(edl, command, 0, 0, 0, 0, 0);
1340 }
1341
1342 void MWindow::stop_mixers()
1343 {
1344         for( int vidx=0; vidx<zwindows.size(); ++vidx ) {
1345                 ZWindow *zwindow = zwindows[vidx];
1346                 if( zwindow->idx < 0 ) continue;
1347                 zwindow->handle_mixer(STOP, 0, 0, 0, 0, 0);
1348         }
1349 }
1350
1351 void MWindow::close_mixers(int result)
1352 {
1353         ArrayList<ZWindow*> closed;
1354         zwindows_lock->lock("MWindow::close_mixers");
1355         for( int i=zwindows.size(); --i>=0; ) {
1356                 ZWindow *zwindow = zwindows[i];
1357                 if( zwindow->idx < 0 ) continue;
1358                 zwindow->idx = -1;
1359                 ZWindowGUI *zgui = zwindow->zgui;
1360                 zgui->lock_window("MWindow::select_zwindow 0");
1361                 zgui->set_done(result);
1362                 zgui->unlock_window();
1363                 closed.append(zwindow);
1364         }
1365         zwindows_lock->unlock();
1366         for( int i=0; i<closed.size(); ++i ) {
1367                 ZWindow *zwindow = closed[i];
1368                 zwindow->join();
1369         }
1370 }
1371
1372 ZWindow *MWindow::create_mixer(Indexable *indexable, double position)
1373 {
1374         ArrayList<Indexable*> new_assets;
1375         new_assets.append(indexable);
1376         Track *track = edl->tracks->last;
1377         load_assets(&new_assets, position, LOADMODE_NEW_TRACKS, 0, 0, 0, 0, 0, 1);
1378         track = !track ? edl->tracks->first : track->next;
1379         Mixer *mixer = 0;
1380         ZWindow *zwindow = get_mixer(mixer);
1381         while( track ) {
1382                 track->play = track->armed = 0;
1383                 if( track->data_type == TRACK_VIDEO ) {
1384                         sprintf(track->title, _("Mixer %d"), zwindow->idx);
1385                 }
1386                 mixer->mixer_ids.append(track->get_mixer_id());
1387                 track = track->next;
1388         }
1389         if(  indexable->is_asset ) {
1390                 char *path = indexable->path;
1391                 char *tp = strrchr(path, '/');
1392                 if( !tp ) tp = path; else ++tp;
1393                 zwindow->set_title(tp);
1394         }
1395         else {
1396                 char *title = ((EDL*)indexable)->local_session->clip_title;
1397                 zwindow->set_title(title);
1398         }
1399         return zwindow;
1400 }
1401
1402 void MWindow::create_mixers(double position)
1403 {
1404         if( !session->drag_assets->size() &&
1405             !session->drag_clips->size() ) return;
1406         undo_before();
1407
1408         select_zwindow(0);
1409         ArrayList<ZWindow *>new_mixers;
1410
1411         for( int i=0; i<session->drag_assets->size(); ++i ) {
1412                 Indexable *indexable = session->drag_assets->get(i);
1413                 if( !indexable->have_video() ) continue;
1414                 ZWindow *zwindow = create_mixer(indexable, position);
1415                 new_mixers.append(zwindow);
1416         }
1417         for( int i=0; i<session->drag_clips->size(); ++i ) {
1418                 Indexable *indexable = (Indexable*)session->drag_clips->get(i);
1419                 if( !indexable->have_video() ) continue;
1420                 ZWindow *zwindow = create_mixer(indexable, position);
1421                 new_mixers.append(zwindow);
1422         }
1423
1424         tile_mixers();
1425         for( int i=0; i<new_mixers.size(); ++i )
1426                 new_mixers[i]->start();
1427
1428         refresh_mixers();
1429         save_backup();
1430         undo_after(_("create mixers"), LOAD_ALL);
1431         restart_brender();
1432         gui->update(1, FORCE_REDRAW, 1, 1, 1, 1, 0);
1433         sync_parameters(CHANGE_ALL);
1434 }
1435
1436 void MWindow::open_mixers()
1437 {
1438         for( int i=0; i<edl->mixers.size(); ++i ) {
1439                 Mixer *mixer = edl->mixers[i];
1440                 ZWindow *zwindow = get_mixer(mixer);
1441                 zwindow->set_title(mixer->title);
1442                 zwindow->start();
1443         }
1444         refresh_mixers();
1445 }
1446
1447 int MWindow::select_zwindow(ZWindow *zwindow)
1448 {
1449         int ret = 0, n = zwindows.number_of(zwindow);
1450         if( session->selected_zwindow != n ) {
1451                 session->selected_zwindow = n;
1452                 for( int i=0; i<zwindows.size(); ++i ) {
1453                         ZWindow *zwindow = zwindows[i];
1454                         if( zwindow->idx < 0 ) continue;
1455                         ZWindowGUI *zgui = zwindow->zgui;
1456                         zgui->lock_window("MWindow::select_zwindow 0");
1457                         zwindow->highlighted = i == n ? 1 : 0;
1458                         if( zgui->draw_overlays() )
1459                                 zgui->canvas->get_canvas()->flash(1);
1460                         zgui->unlock_window();
1461                 }
1462                 ret = 1;
1463                 gui->lock_window("MWindow::select_window 1");
1464                 gui->update_mixers(0, -1);
1465                 gui->unlock_window();
1466         }
1467         return ret;
1468 }
1469
1470 void MWindow::tile_mixers()
1471 {
1472         int nz = 0;
1473         for( int i=0; i<zwindows.size(); ++i ) {
1474                 ZWindow *zwindow = zwindows[i];
1475                 if( zwindow->idx < 0 ) continue;
1476                 ++nz;
1477         }
1478         if( !nz ) return;
1479         int zn = ceil(sqrt(nz));
1480         int x1 = 1 + gui->get_x(), x2 = cwindow->gui->get_x();
1481         int y1 = 1, y2 = gui->get_y();
1482         int rw = gui->get_root_w(0), rh = gui->get_root_h(0);
1483         if( x1 < 0 ) x1 = 0;
1484         if( y1 < 0 ) y1 = 0;
1485         if( x2 > rw ) x2 = rw;
1486         if( y2 > rh ) y2 = rh;
1487         int dx = x2 - x1, dy = y2 - y1;
1488         int zw = dx / zn;
1489         int lt = BC_DisplayInfo::get_left_border();
1490         int top = BC_DisplayInfo::get_top_border();
1491         int bw = lt + BC_DisplayInfo::get_right_border();  // borders
1492         int bh = top + BC_DisplayInfo::get_bottom_border();
1493         int zx = 0, zy = 0;  // window origins
1494         int mw = xS(10+10), mh = yS(10+10); // canvas margins
1495         int rsz = 0, n = 0, dz = 0;
1496         int ow = edl->session->output_w, oh = edl->session->output_h;
1497         for( int i=0; i<zwindows.size(); ++i ) {
1498                 ZWindow *zwindow = zwindows[i];
1499                 if( zwindow->idx < 0 ) continue;
1500                 int ww = zw - bw, hh = (ww - mw) * oh / ow + mh, zh = hh + bh;
1501                 if( rsz < hh ) rsz = hh;
1502                 int xx = zx + x1, yy = zy + y1;
1503                 int mx = x2 - zw, my = y2 - zh;
1504                 if( xx > mx ) xx = mx;
1505                 if( yy > my ) yy = my;
1506                 xx += lt + xS(dz);  yy += top + yS(dz);
1507                 zwindow->reposition(xx,yy, ww,hh);
1508                 if( zwindow->running() ) {
1509                         ZWindowGUI *gui = (ZWindowGUI *)zwindow->get_gui();
1510                         gui->lock_window("MWindow::tile_mixers");
1511                         gui->BC_WindowBase::reposition_window(xx,yy, ww,hh);
1512                         gui->unlock_window();
1513                 }
1514                 if( ++n >= zn ) {
1515                         n = 0;  rsz += bh;
1516                         if( (zy += rsz) > (dy - rsz) ) dz += 10;
1517                         rsz = 0;
1518                         zx = 0;
1519                 }
1520                 else
1521                         zx += zw;
1522         }
1523 }
1524
1525 void MWindow::set_gang_tracks(int v)
1526 {
1527         edl->local_session->gang_tracks = v;
1528         sync_parameters(CHANGE_PARAMS);
1529         gui->update(1, 1, 0, 0, 1, 0, 0);
1530         gui->flush();
1531 }
1532
1533
1534 void MWindow::init_cache()
1535 {
1536         audio_cache = new CICache(preferences);
1537         video_cache = new CICache(preferences);
1538         frame_cache = new FrameCache;
1539         wave_cache = new WaveCache;
1540 }
1541
1542 void MWindow::init_channeldb()
1543 {
1544         channeldb_buz->load("channeldb_buz");
1545         channeldb_v4l2jpeg->load("channeldb_v4l2jpeg");
1546 }
1547
1548 void MWindow::init_menus()
1549 {
1550         char string[BCTEXTLEN];
1551
1552         // Color Models
1553         BC_CModels::to_text(string, BC_RGB888);
1554         colormodels.append(new ColormodelItem(string, BC_RGB888));
1555         BC_CModels::to_text(string, BC_RGBA8888);
1556         colormodels.append(new ColormodelItem(string, BC_RGBA8888));
1557 //      BC_CModels::to_text(string, BC_RGB161616);
1558 //      colormodels.append(new ColormodelItem(string, BC_RGB161616));
1559 //      BC_CModels::to_text(string, BC_RGBA16161616);
1560 //      colormodels.append(new ColormodelItem(string, BC_RGBA16161616));
1561         BC_CModels::to_text(string, BC_RGB_FLOAT);
1562         colormodels.append(new ColormodelItem(string, BC_RGB_FLOAT));
1563         BC_CModels::to_text(string, BC_RGBA_FLOAT);
1564         colormodels.append(new ColormodelItem(string, BC_RGBA_FLOAT));
1565         BC_CModels::to_text(string, BC_YUV888);
1566         colormodels.append(new ColormodelItem(string, BC_YUV888));
1567         BC_CModels::to_text(string, BC_YUVA8888);
1568         colormodels.append(new ColormodelItem(string, BC_YUVA8888));
1569 //      BC_CModels::to_text(string, BC_YUV161616);
1570 //      colormodels.append(new ColormodelItem(string, BC_YUV161616));
1571 //      BC_CModels::to_text(string, BC_YUVA16161616);
1572 //      colormodels.append(new ColormodelItem(string, BC_YUVA16161616));
1573
1574 #define ILACEPROJECTMODELISTADD(x) ilacemode_to_text(string, x); \
1575                            interlace_project_modes.append(new InterlacemodeItem(string, x));
1576
1577 #define ILACEASSETMODELISTADD(x) ilacemode_to_text(string, x); \
1578                            interlace_asset_modes.append(new InterlacemodeItem(string, x));
1579
1580         // Interlacing Modes
1581         ILACEASSETMODELISTADD(ILACE_MODE_UNDETECTED); // Not included in the list for the project options.
1582
1583         ILACEASSETMODELISTADD(ILACE_MODE_TOP_FIRST);
1584         ILACEPROJECTMODELISTADD(ILACE_MODE_TOP_FIRST);
1585
1586         ILACEASSETMODELISTADD(ILACE_MODE_BOTTOM_FIRST);
1587         ILACEPROJECTMODELISTADD(ILACE_MODE_BOTTOM_FIRST);
1588
1589         ILACEASSETMODELISTADD(ILACE_MODE_NOTINTERLACED);
1590         ILACEPROJECTMODELISTADD(ILACE_MODE_NOTINTERLACED);
1591
1592         mixers_align = new MixersAlign(this);
1593 }
1594
1595 void MWindow::init_indexes()
1596 {
1597         mainindexes = new MainIndexes(this);
1598         mainindexes->start_loop();
1599 }
1600
1601 void MWindow::init_gui()
1602 {
1603         gui = new MWindowGUI(this);
1604         gui->create_objects();
1605         gui->load_defaults(defaults);
1606 }
1607
1608 void MWindow::init_signals()
1609 {
1610         sighandler = new SigHandler;
1611         sighandler->initialize("/tmp/cinelerra_%d.dmp");
1612 ENABLE_BUFFER
1613 }
1614
1615 void MWindow::init_render()
1616 {
1617         render = new Render(this);
1618         create_bd = new CreateBD_Thread(this);
1619         create_dvd = new CreateDVD_Thread(this);
1620         batch_render = new BatchRenderThread(this);
1621 }
1622
1623 void MWindow::init_exportedl()
1624 {
1625         exportedl = new ExportEDL(this);
1626 }
1627
1628
1629 void MWindow::init_shuttle()
1630 {
1631 #ifdef HAVE_SHUTTLE
1632         int ret = Shuttle::probe();
1633         if( ret >= 0 ) {
1634                 shuttle = new Shuttle(this);
1635                 if( shuttle->read_config_file() > 0 ) {
1636                         printf("shuttle: bad config file\n");
1637                         delete shuttle;  shuttle = 0;
1638                         return;
1639                 }
1640                 shuttle->start(ret);
1641         }
1642 #endif
1643 }
1644 void MWindow::init_wintv()
1645 {
1646 #ifdef HAVE_WINTV
1647         wintv = WinTV::probe(this);
1648         if( wintv )
1649                 wintv->start();
1650 #endif
1651 }
1652 void MWindow::init_x10tv()
1653 {
1654 #ifdef HAVE_X10TV
1655         x10tv = X10TV::probe(this);
1656         if( x10tv )
1657                 x10tv->start();
1658 #endif
1659 }
1660
1661
1662 void MWindow::init_brender()
1663 {
1664         if(preferences->use_brender && !brender)
1665         {
1666                 brender_lock->lock("MWindow::init_brender 1");
1667                 brender = new BRender(this);
1668                 brender->initialize();
1669                 session->brender_end = 0;
1670                 brender_lock->unlock();
1671         }
1672         else
1673         if(!preferences->use_brender && brender)
1674         {
1675                 brender_lock->lock("MWindow::init_brender 2");
1676                 delete brender;
1677                 brender = 0;
1678                 session->brender_end = 0;
1679                 brender_lock->unlock();
1680         }
1681         brender_active = 0;
1682         stop_brender();
1683 }
1684
1685 void MWindow::restart_brender()
1686 {
1687 //printf("MWindow::restart_brender 1\n");
1688         if( !brender_active || !preferences->use_brender ) return;
1689         if( !brender ) return;
1690         brender->restart(edl);
1691 }
1692
1693 void MWindow::stop_brender()
1694 {
1695         if( !brender ) return;
1696 // cannot be holding mwindow->gui display lock
1697         brender->stop();
1698 }
1699
1700 int MWindow::brender_available(int position)
1701 {
1702         int result = 0;
1703         brender_lock->lock("MWindow::brender_available 1");
1704         if(brender && brender_active)
1705         {
1706                 if(brender->map_valid)
1707                 {
1708                         brender->map_lock->lock("MWindow::brender_available 2");
1709                         if(position < brender->map_size &&
1710                                 position >= 0)
1711                         {
1712 //printf("MWindow::brender_available 1 %d %d\n", position, brender->map[position]);
1713                                 if(brender->map[position] == BRender::RENDERED)
1714                                         result = 1;
1715                         }
1716                         brender->map_lock->unlock();
1717                 }
1718         }
1719         brender_lock->unlock();
1720         return result;
1721 }
1722
1723 void MWindow::set_brender_active(int v, int update)
1724 {
1725         if( !preferences->use_brender ) v = 0;
1726         brender_active = v;
1727         gui->mainmenu->brender_active->set_checked(v);
1728         if( v != 0 ) {
1729                 edl->session->brender_start = edl->local_session->get_selectionstart(1);
1730                 edl->session->brender_end = edl->local_session->get_selectionend(1);
1731
1732                 if(EQUIV(edl->session->brender_end, edl->session->brender_start)) {
1733                         edl->session->brender_end = edl->tracks->total_video_length();
1734                 }
1735                 restart_brender();
1736         }
1737         else {
1738                 edl->session->brender_start = edl->session->brender_end = 0;
1739                 gui->unlock_window();
1740                 stop_brender();
1741                 gui->lock_window("MWindow::set_brender_active");
1742         }
1743         if( update ) {
1744                 gui->update_timebar(0);
1745                 gui->draw_overlays(1);
1746         }
1747 }
1748
1749 int MWindow::has_commercials()
1750 {
1751 #ifdef HAVE_COMMERCIAL
1752         return theme->use_commercials;
1753 #else
1754         return 0;
1755 #endif
1756 }
1757
1758 void MWindow::init_commercials()
1759 {
1760 #ifdef HAVE_COMMERCIAL
1761         if( !commercials ) {
1762                 commercials = new Commercials(this);
1763                 commercial_active = 0;
1764         }
1765         else
1766                 commercials->add_user();
1767 #endif
1768 }
1769
1770 void MWindow::commit_commercial()
1771 {
1772 #ifdef HAVE_COMMERCIAL
1773         if( !commercial_active ) return;
1774         commercial_active = 0;
1775         if( !commercials ) return;
1776         commercials->commitDb();
1777 #endif
1778 }
1779
1780 void MWindow::undo_commercial()
1781 {
1782 #ifdef HAVE_COMMERCIAL
1783         if( !commercial_active ) return;
1784         commercial_active = 0;
1785         if( !commercials ) return;
1786         commercials->undoDb();
1787 #endif
1788 }
1789
1790 int MWindow::put_commercial()
1791 {
1792         int result = 0;
1793 #ifdef HAVE_COMMERCIAL
1794         double start = edl->local_session->get_selectionstart();
1795         double end = edl->local_session->get_selectionend();
1796         if( start >= end ) return 0;
1797
1798         const char *errmsg = 0;
1799         int count = 0;
1800         Tracks *tracks = edl->tracks;
1801         //check it
1802         for(Track *track=tracks->first; track && !errmsg; track=track->next) {
1803                 if( track->data_type != TRACK_VIDEO ) continue;
1804                 if( !track->armed ) continue;
1805                 if( count > 0 ) { errmsg = _("multiple video tracks"); break; }
1806                 ++count;
1807                 int64_t units_start = track->to_units(start,0);
1808                 int64_t units_end = track->to_units(end,0);
1809                 Edits *edits = track->edits;
1810                 Edit *edit1 = edits->editof(units_start, PLAY_FORWARD, 0);
1811                 Edit *edit2 = edits->editof(units_end, PLAY_FORWARD, 0);
1812                 if(!edit1 && !edit2) continue;  // nothing selected
1813                 if(!edit2) {                    // edit2 beyond end of track
1814                         edit2 = edits->last;
1815                         units_end = edits->length();
1816                 }
1817                 if(edit1 != edit2) { errmsg = _("crosses edits"); break; }
1818                 Indexable *indexable = edit1->get_source();
1819                 if( !indexable->is_asset ) { errmsg = _("not asset"); break; }
1820         }
1821         //run it
1822         for(Track *track=tracks->first; track && !errmsg; track=track->next) {
1823                 if( track->data_type != TRACK_VIDEO ) continue;
1824                 if( !track->armed ) continue;
1825                 int64_t units_start = track->to_units(start,0);
1826                 int64_t units_end = track->to_units(end,0);
1827                 Edits *edits = track->edits;
1828                 Edit *edit1 = edits->editof(units_start, PLAY_FORWARD, 0);
1829                 Edit *edit2 = edits->editof(units_end, PLAY_FORWARD, 0);
1830                 if(!edit1 && !edit2) continue;  // nothing selected
1831                 if(!edit2) {                    // edit2 beyond end of track
1832                         edit2 = edits->last;
1833                         units_end = edits->length();
1834                 }
1835                 Indexable *indexable = edit1->get_source();
1836                 Asset *asset = (Asset *)indexable;
1837                 File *file = video_cache->check_out(asset, edl);
1838                 if( !file ) { errmsg = _("no file"); break; }
1839                 int64_t edit_length = units_end - units_start;
1840                 int64_t edit_start = units_start - edit1->startproject + edit1->startsource;
1841                 result = commercials->put_clip(file, edit1->channel,
1842                         track->from_units(edit_start), track->from_units(edit_length));
1843                 video_cache->check_in(asset);
1844                 if( result ) { errmsg = _("db failed"); break; }
1845         }
1846         if( errmsg ) {
1847                 char string[BCTEXTLEN];
1848                 sprintf(string, _("put_commercial: %s"), errmsg);
1849                 MainError::show_error(string);
1850                 undo_commercial();
1851                 result = 1;
1852         }
1853 #endif
1854         return result;
1855 }
1856
1857 void MWindow::stop_playback(int wait)
1858 {
1859         gui->stop_drawing();
1860
1861         cwindow->stop_playback(wait);
1862
1863         for(int i = 0; i < vwindows.size(); i++) {
1864                 VWindow *vwindow = vwindows[i];
1865                 if( !vwindow->is_running() ) continue;
1866                 vwindow->stop_playback(wait);
1867         }
1868         for(int i = 0; i < zwindows.size(); i++) {
1869                 ZWindow *zwindow = zwindows[i];
1870                 if( zwindow->idx < 0 ) continue;
1871                 zwindow->stop_playback(wait);
1872         }
1873 }
1874
1875 void MWindow::stop_transport()
1876 {
1877         gui->stop_transport(gui->get_window_lock() ? "MWindow::stop_transport" : 0);
1878 }
1879
1880 void MWindow::undo_before(const char *description, void *creator)
1881 {
1882         undo->update_undo_before(description, creator);
1883 }
1884
1885 void MWindow::undo_after(const char *description, uint32_t load_flags, int changes_made)
1886 {
1887         undo->update_undo_after(description, load_flags, changes_made);
1888 }
1889
1890 void MWindow::beep(double freq, double secs, double gain)
1891 {
1892         if( !beeper ) beeper = new Beeper(this);
1893         beeper->tone(freq, secs, gain);
1894 }
1895
1896 Beeper::Beeper(MWindow *mwindow)
1897  : Thread(1, 0, 0)
1898 {
1899         this->mwindow = mwindow;
1900         audio = new AudioDevice(mwindow);
1901         playing_audio = 0;
1902         interrupted = -1;
1903 }
1904
1905 Beeper::~Beeper()
1906 {
1907         stop(0);
1908         delete audio;
1909 }
1910
1911 void Beeper::run()
1912 {
1913         int channels = 2;
1914         int64_t bfrsz = BEEP_SAMPLE_RATE;
1915         EDL *edl = mwindow->edl;
1916         EDLSession *session = edl->session;
1917         AudioOutConfig *aconfig = session->playback_config->aconfig;
1918         audio->open_output(aconfig, BEEP_SAMPLE_RATE, bfrsz, channels, 0);
1919         audio->start_playback();
1920
1921         double out0[bfrsz], out1[bfrsz], *out[2] = { out0, out1 };
1922         const double two_pi = 2*M_PI;
1923         int64_t audio_len = BEEP_SAMPLE_RATE * secs;
1924         const double dt = two_pi * freq/BEEP_SAMPLE_RATE;
1925         double th = 0;
1926
1927         audio_pos = 0;
1928         playing_audio = 1;
1929         while( !interrupted ) {
1930                 int len = audio_len - audio_pos;
1931                 if( len <= 0 ) break;
1932                 if( len > bfrsz ) len = bfrsz;
1933                 int k = audio_pos;
1934                 for( int i=0; i<len; ++i,++k,th+=dt ) {
1935                         double t = th - two_pi;
1936                         if( t >= 0 ) th = t;
1937                         out0[i] = out1[i] = sin(th) * gain;
1938                 }
1939                 audio->write_buffer(out, channels, len);
1940                 audio_pos = k;
1941         }
1942
1943         if( !interrupted )
1944                 audio->set_last_buffer();
1945         audio->stop_audio(interrupted ? 0 : 1);
1946         playing_audio = 0;
1947
1948         audio->close_all();
1949 }
1950
1951 void Beeper::start()
1952 {
1953         if( running() ) return;
1954         audio_pos = -1;
1955         interrupted = 0;
1956         Thread::start();
1957 }
1958
1959 void Beeper::stop(int wait)
1960 {
1961         if( running() && !interrupted ) {
1962                 interrupted = 1;
1963                 audio->stop_audio(wait);
1964         }
1965         Thread::join();
1966 }
1967
1968 void Beeper::tone(double freq, double secs, double gain)
1969 {
1970         stop(0);
1971         this->freq = freq;
1972         this->secs = secs;
1973         this->gain = gain;
1974         start();
1975 }
1976
1977
1978 int MWindow::load_filenames(ArrayList<char*> *filenames,
1979                 int load_mode, int edl_mode, int update_filename)
1980 {
1981         ArrayList<EDL*> new_edls;
1982         ArrayList<Asset*> new_assets;
1983         ArrayList<File*> new_files;
1984
1985 //      save_defaults();
1986         gui->start_hourglass();
1987
1988 // Need to stop playback since tracking depends on the EDL not getting
1989 // deleted.
1990         gui->unlock_window();
1991         stop_playback(1);
1992         gui->lock_window("MWindow::load_filenames 0");
1993         undo_before();
1994
1995 const int debug = 0;
1996 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1997
1998 // Define new_edls and new_assets to load
1999         int result = 0, ftype = -1;
2000
2001         for( int i=0; i<filenames->size(); ++i ) {
2002 // Get type of file
2003                 File *new_file = new File;
2004                 Asset *new_asset = new Asset(filenames->get(i));
2005                 EDL *new_edl = new EDL;
2006                 new_edl->create_objects();
2007                 new_edl->copy_session(edl, -1);
2008                 new_file->set_program(edl->session->program_no);
2009
2010                 char string[BCTEXTLEN];
2011                 sprintf(string, _("Loading %s"), new_asset->path);
2012                 gui->show_message(string);
2013
2014                 ftype = new_file->open_file(preferences, new_asset, 1, 0);
2015
2016                 result = 1;
2017                 switch( ftype ) {
2018 // Convert media file to EDL
2019                 case FILE_OK: {
2020 // Warn about odd image dimensions
2021                         if( new_asset->video_data &&
2022                             ((new_asset->width % 2) || (new_asset->height % 2)) ) {
2023                                 eprintf(_("%s's resolution is %dx%d.\n"
2024                                         "Images with odd dimensions may not decode properly."),
2025                                         new_asset->path, new_asset->width, new_asset->height);
2026                         }
2027
2028                         if( new_asset->program >= 0 &&
2029                             edl->session->program_no != new_asset->program ) {
2030                                 eprintf(_("%s's index was built for program number %d\n"
2031                                         "Playback preference is %d.\n  Using program %d."),
2032                                         new_asset->path, new_asset->program,
2033                                         edl->session->program_no, new_asset->program);
2034                         }
2035
2036                         if( load_mode == LOADMODE_RESOURCESONLY ) {
2037                                 new_assets.append(new_asset);
2038                                 new_asset->add_user();
2039                                 result = 0;
2040                                 break;
2041                         }
2042
2043                         RecordLabels *labels = edl->session->label_cells ?
2044                                 new RecordLabels(new_file) : 0;
2045                         asset_to_edl(new_edl, new_asset, labels);
2046                         new_edls.append(new_edl);
2047                         new_edl->add_user();
2048                         delete labels;
2049
2050                         if( load_mode == LOADMODE_REPLACE ||
2051                             load_mode == LOADMODE_REPLACE_CONCATENATE ) {
2052 // Set filename to nothing for assets since save EDL would overwrite them.
2053                                 set_filename("");
2054 // Reset timeline position
2055                                 for( int i=0; i<TOTAL_PANES; ++i ) {
2056                                         new_edl->local_session->view_start[i] = 0;
2057                                         new_edl->local_session->track_start[i] = 0;
2058                                 }
2059                         }
2060                         result = 0;
2061                         break; }
2062
2063                 case FILE_NOT_FOUND: {
2064                         eprintf(_("Failed to open %s"), new_asset->path);
2065                         sprintf(string, _("Failed to open %s"), new_asset->path);
2066                         gui->show_message(string, theme->message_error);
2067                         gui->update_default_message();
2068                         break; }
2069
2070 // Unknown format
2071                 case FILE_UNRECOGNIZED_CODEC: {
2072 // Test index file
2073                         { IndexFile indexfile(this, new_asset);
2074                         if( !(result = indexfile.open_index()) )
2075                                 indexfile.close_index(); }
2076
2077 // Test existing EDLs
2078                         for( int j=0; result && j<new_edls.total; ++j ) {
2079                                 Asset *old_asset = new_edls[j]->assets->get_asset(new_asset->path);
2080                                 if( old_asset ) {
2081                                         new_asset->copy_from(old_asset,1);
2082                                         result = 0;
2083                                 }
2084                         }
2085                         if( result ) {
2086                                 Asset *old_asset = edl->assets->get_asset(new_asset->path);
2087                                 if( old_asset ) {
2088                                         new_asset->copy_from(old_asset,1);
2089                                         result = 0;
2090                                 }
2091                         }
2092
2093 // Prompt user
2094                         if( result ) {
2095                                 new_asset->audio_data = 1;
2096                                 new_asset->format = FILE_PCM;
2097                                 new_asset->channels = defaults->get("AUDIO_CHANNELS", 2);
2098                                 new_asset->sample_rate = defaults->get("SAMPLE_RATE", 44100);
2099                                 new_asset->bits = defaults->get("AUDIO_BITS", 16);
2100                                 new_asset->byte_order = defaults->get("BYTE_ORDER", 1);
2101                                 new_asset->signed_ = defaults->get("SIGNED_", 1);
2102                                 new_asset->header = defaults->get("HEADER", 0);
2103
2104                                 FileSystem fs;
2105                                 fs.extract_name(string, new_asset->path);
2106                                 strcat(string, _("'s format couldn't be determined."));
2107                                 FileFormat fwindow(this);
2108                                 fwindow.create_objects(new_asset, string);
2109                                 result = fwindow.run_window();
2110
2111                                 defaults->update("AUDIO_CHANNELS", new_asset->channels);
2112                                 defaults->update("SAMPLE_RATE", new_asset->sample_rate);
2113                                 defaults->update("AUDIO_BITS", new_asset->bits);
2114                                 defaults->update("BYTE_ORDER", new_asset->byte_order);
2115                                 defaults->update("SIGNED_", new_asset->signed_);
2116                                 defaults->update("HEADER", new_asset->header);
2117                                 save_defaults();
2118                         }
2119 // Append to list
2120                         if( !result ) {
2121 // Recalculate length
2122                                 delete new_file;
2123                                 new_file = new File;
2124                                 result = new_file->open_file(preferences, new_asset, 1, 0);
2125
2126                                 if( load_mode != LOADMODE_RESOURCESONLY ) {
2127                                         RecordLabels *labels = edl->session->label_cells ?
2128                                                 new RecordLabels(new_file) : 0;
2129                                         asset_to_edl(new_edl, new_asset, labels);
2130                                         new_edls.append(new_edl);
2131                                         new_edl->add_user();
2132                                         delete labels;
2133                                 }
2134                                 else {
2135                                         new_assets.append(new_asset);
2136                                         new_asset->add_user();
2137                                 }
2138                         }
2139                         break; }
2140
2141                 case FILE_IS_XML: {
2142                         FileXML xml_file;
2143                         const char *filename = filenames->get(i);
2144                         if( xml_file.read_from_file(filename, 1) ) {
2145                                 eprintf(_("Error: unable to open:\n  %s"), filename);
2146                                 break;
2147                         }
2148                         const char *cin_version = 0;
2149                         while( !xml_file.read_tag() ) {
2150                                 if( xml_file.tag.title_is("EDL") ) {
2151                                         cin_version = xml_file.tag.get_property("VERSION");
2152                                         break;
2153                                 }
2154                         }
2155                         xml_file.rewind();
2156                         if( !cin_version ) {
2157                                 eprintf(_("XML file %s\n not from cinelerra."),filename);
2158                                 char string[BCTEXTLEN];
2159                                 sprintf(string,_("Unknown %s"), filename);
2160                                 gui->show_message(string);
2161                                 break;
2162                         }
2163                         if( strcmp(cin_version, CINELERRA_VERSION) &&
2164                             strcmp(cin_version, "Unify") &&
2165                             strcmp(cin_version, "5.1") ) {
2166                                 eprintf(_("Warning: XML from cinelerra version %s\n"
2167                                         "Session data may be incompatible."), cin_version);
2168                         }
2169                         if( new_edl->load_xml(&xml_file, LOAD_ALL) ) {
2170                                 eprintf(_("Error: unable to load:\n  %s"), filename);
2171                                 break;
2172                         }
2173                         test_plugins(new_edl, filename);
2174                         int groups = new_edl->regroup(session->group_number);
2175                         session->group_number += groups;
2176                         switch( edl_mode ) {
2177                         case LOADMODE_EDL_CLIP: {
2178                                 strcpy(new_edl->local_session->clip_title,
2179                                         filenames->get(i));
2180                                 struct stat st;
2181                                 time_t t = !stat(filenames->get(i),&st) ?
2182                                         st.st_mtime : time(&t);
2183                                 ctime_r(&t, new_edl->local_session->clip_notes);
2184                                 switch( load_mode ) {
2185                                 case LOADMODE_REPLACE:
2186                                 case LOADMODE_REPLACE_CONCATENATE:
2187                                         strcpy(session->filename, filename);
2188                                         if( update_filename ) set_filename(filename);
2189                                         break;
2190                                 }
2191                                 result = 0;
2192                                 break; }
2193                         case LOADMODE_EDL_NESTED: {
2194                                 EDL *nested_edl = new EDL;
2195                                 nested_edl->create_objects();
2196                                 nested_edl->copy_session(edl, -1);
2197                                 nested_edl->create_nested(new_edl);
2198                                 nested_edl->set_path(filename);
2199                                 new_edl->remove_user();
2200                                 new_edl = nested_edl;
2201                                 result = 0;
2202                                 break; }
2203                         case LOADMODE_EDL_FILEREF: {
2204                                 result = create_ref(new_asset, new_edl);
2205                                 if( result ) break;
2206                                 new_assets.append(new_asset);
2207                                 new_asset->add_user();
2208                                 new_edl->remove_user();
2209                                 new_edl = new EDL;
2210                                 new_edl->create_objects();
2211                                 new_edl->copy_session(edl, -1);
2212                                 asset_to_edl(new_edl, new_asset);
2213                                 delete new_file;
2214                                 new_file = new File;
2215                                 result = new_file->open_file(preferences, new_asset, 1, 0);
2216                                 break; }
2217                         }
2218                         if( !result ) {
2219                                 new_edls.append(new_edl);
2220                                 new_edl->add_user();
2221                         }
2222                         else
2223                                 eprintf(_("Error: Unable to load xml:\n  %s"), new_asset->path);
2224                         break; }
2225                 }
2226
2227                 new_edl->Garbage::remove_user();
2228                 new_asset->Garbage::remove_user();
2229
2230 // Store for testing index
2231                 new_files.append(new_file);
2232         }
2233
2234 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2235
2236         if(!result) {
2237                 gui->reset_default_message();
2238                 gui->default_message();
2239         }
2240
2241 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2242
2243 // Paste them.
2244 // Don't back up here.
2245         if( new_edls.size() ) {
2246 // For pasting, clear the active region
2247                 if( load_mode == LOADMODE_PASTE ) {
2248                         double start = edl->local_session->get_selectionstart();
2249                         double end = edl->local_session->get_selectionend();
2250                         if(!EQUIV(start, end))
2251                                 edl->clear(start, end,
2252                                         edl->session->labels_follow_edits,
2253                                         edl->session->plugins_follow_edits,
2254                                         edl->session->autos_follow_edits);
2255
2256                         paste_edls(&new_edls, load_mode, 0, -1,
2257                                 edl->session->labels_follow_edits,
2258                                 edl->session->plugins_follow_edits,
2259                                 edl->session->autos_follow_edits,
2260                                 0); // overwrite
2261                 }
2262                 else if( load_mode == LOADMODE_NEW_TRACKS &&
2263                          edl_mode != LOADMODE_EDL_CLIP )
2264                         paste_edls(&new_edls, load_mode, 0, -1, 0, 0, 0, 0);
2265                 else if( load_mode != LOADMODE_RESOURCESONLY ||
2266                          edl_mode == LOADMODE_EDL_CLIP )
2267                         paste_edls(&new_edls, load_mode, 0, -1, 1, 1, 1, 0);
2268                 else
2269                         paste_edls(&new_edls, LOADMODE_NOTHING, 0, -1, 0, 0, 0, 0);
2270
2271         }
2272
2273 // Add new assets to EDL and schedule assets for index building.
2274         int got_indexes = 0;
2275         for( int i=0; i<new_edls.size(); ++i ) {
2276                 EDL *new_edl = new_edls[i];
2277                 for( int j=0; j<new_edl->nested_edls.size(); ++j ) {
2278                         mainindexes->add_indexable(new_edl->nested_edls[j]);
2279                         edl->nested_edls.update_index(new_edl->nested_edls[j]);
2280                         got_indexes = 1;
2281                 }
2282
2283         }
2284
2285         for( int i=0; i<new_assets.size(); ++i ) {
2286                 Asset *new_asset = new_assets[i];
2287                 mainindexes->add_indexable(new_asset);
2288                 edl->assets->update(new_asset);
2289                 got_indexes = 1;
2290         }
2291
2292 // Start examining next batch of index files
2293         if(got_indexes) mainindexes->start_build();
2294
2295 // reload renderengine edl or the plugin guis will flip out
2296         sync_parameters(CHANGE_ALL);
2297 // Open plugin GUIs
2298         show_plugins();
2299
2300         // opening new session
2301         if( ( load_mode == LOADMODE_REPLACE ||
2302               load_mode == LOADMODE_REPLACE_CONCATENATE ) &&
2303             (ftype != FILE_IS_XML || edl_mode != LOADMODE_EDL_CLIP) ) {
2304                 select_asset(0, 0);
2305                 edl->session->proxy_scale = 1;
2306                 edl->session->proxy_disabled_scale = 1;
2307                 edl->session->proxy_use_scaler = 0;
2308                 edl->session->proxy_auto_scale = 0;
2309                 edl->session->proxy_beep = 0;
2310                 edl->local_session->preview_start = 0;
2311                 edl->local_session->preview_end = -1;
2312                 edl->local_session->loop_playback = 0;
2313                 edl->local_session->set_selectionstart(0);
2314                 edl->local_session->set_selectionend(0);
2315                 edl->local_session->unset_inpoint();
2316                 edl->local_session-> unset_outpoint();
2317                 set_brender_active(0, 0);
2318                 fit_selection();
2319                 goto_start();
2320         }
2321
2322         if( ( edl->session->proxy_auto_scale && edl->session->proxy_scale != 1 ) &&
2323             ( load_mode != LOADMODE_REPLACE && load_mode != LOADMODE_REPLACE_CONCATENATE ) ) {
2324                 ArrayList<Indexable *> orig_idxbls;
2325                 for( int i=0; i<new_assets.size(); ++i )
2326                         orig_idxbls.append(new_assets.get(i));
2327                 for( int i=0; i<new_edls.size(); ++i ) {
2328                         EDL *new_edl = new_edls[i];
2329                         for( Track *track=new_edl->tracks->first; track; track=track->next ) {
2330                                 if( track->data_type != TRACK_VIDEO ) continue;
2331                                 for( Edit *edit=track->edits->first; edit; edit=edit->next ) {
2332                                         Indexable *idxbl = (Indexable *)edit->asset;
2333                                         if( !idxbl ) continue;
2334                                         if( !idxbl->have_video() ) continue;
2335                                         if( edit->channel != 0 ) continue; // first layer only
2336                                         orig_idxbls.append(edit->asset);
2337                                 }
2338                         }
2339                 }
2340                 gui->unlock_window(); // to update progress bar
2341                 int ret = render_proxy(orig_idxbls);
2342                 gui->lock_window("MWindow::load_filenames");
2343                 float gain = edl->session->proxy_beep;
2344                 if( ret >= 0 && gain > 0 ) {
2345                         if( ret > 0 )
2346                                 beep(2000., 1.5, gain);
2347                         else
2348                                 beep(4000., 0.25, gain);
2349                 }
2350         }
2351
2352 // need to update undo before project, since mwindow is unlocked & a new load
2353 // can begin here.  Should really prevent loading until we're done.
2354 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2355         undo_after(_("load"), LOAD_ALL);
2356
2357         for(int i = 0; i < new_edls.size(); i++)
2358         {
2359                 new_edls[i]->remove_user();
2360         }
2361 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2362
2363         new_edls.remove_all();
2364
2365         for(int i = 0; i < new_assets.size(); i++)
2366         {
2367                 new_assets[i]->Garbage::remove_user();
2368         }
2369
2370         new_assets.remove_all();
2371         new_files.remove_all_objects();
2372
2373
2374 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2375         if(load_mode == LOADMODE_REPLACE ||
2376                 load_mode == LOADMODE_REPLACE_CONCATENATE)
2377         {
2378                 session->changes_made = 0;
2379         }
2380         else
2381         {
2382                 session->changes_made = 1;
2383         }
2384
2385         gui->stop_hourglass();
2386
2387
2388 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2389         update_project(load_mode);
2390
2391 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2392
2393         return 0;
2394 }
2395
2396 int MWindow::render_proxy(ArrayList<Indexable *> &new_idxbls)
2397 {
2398         Asset *format_asset = new Asset;
2399         format_asset->format = FILE_FFMPEG;
2400         format_asset->load_defaults(defaults, "PROXY_", 1, 1, 0, 0, 0);
2401         int new_scale = edl->session->proxy_scale;
2402         ProxyRender proxy_render(this, format_asset, new_scale);
2403
2404         for( int i=0; i<new_idxbls.size(); ++i ) {
2405                 Indexable *orig = new_idxbls.get(i);
2406                 Asset *proxy = proxy_render.add_original(orig, new_scale);
2407                 if( !proxy ) continue;
2408                 FileSystem fs;
2409                 int exists = fs.get_size(proxy->path) > 0 ? 1 : 0;
2410                 int got_it = exists && // if proxy exists, and is newer than orig
2411                     fs.get_date(proxy->path) > fs.get_date(orig->path) ? 1 : 0;
2412                 if( got_it ) continue;
2413                 proxy_render.add_needed(orig, proxy);
2414         }
2415
2416 // render needed proxies
2417         int result = proxy_render.create_needed_proxies(new_scale);
2418         if( !result ) {
2419                 add_proxy(&proxy_render.orig_idxbls, &proxy_render.orig_proxies);
2420         }
2421         format_asset->remove_user();
2422         return !result ? proxy_render.needed_proxies.size() : -1;
2423 }
2424
2425 int MWindow::enable_proxy()
2426 {
2427         int ret = 0;
2428         if( edl->session->proxy_scale == 1 &&
2429             edl->session->proxy_disabled_scale != 1 ) {
2430                 int new_scale = edl->session->proxy_disabled_scale;
2431                 int new_use_scaler = edl->session->proxy_use_scaler;
2432                 Asset *asset = new Asset;
2433                 asset->format = FILE_FFMPEG;
2434                 asset->load_defaults(defaults, "PROXY_", 1, 1, 0, 0, 0);
2435                 ret = to_proxy(asset, new_scale, new_use_scaler);
2436                 asset->remove_user();
2437                 if( ret > 0 ) {
2438                         float gain = edl->session->proxy_beep;
2439                         beep(2000., 1.5, gain);
2440                 }
2441                 edl->session->proxy_disabled_scale = 1;
2442                 gui->lock_window("MWindow::to_proxy");
2443                 update_project(LOADMODE_REPLACE);
2444                 gui->unlock_window();
2445         }
2446         return 1;
2447 }
2448
2449 int MWindow::disable_proxy()
2450 {
2451         if( edl->session->proxy_scale != 1 &&
2452             edl->session->proxy_disabled_scale == 1 ) {
2453                 int old_scale = edl->session->proxy_scale, new_scale = 1;
2454                 int new_use_scaler = edl->session->proxy_use_scaler;
2455                 Asset *asset = new Asset;
2456                 asset->format = FILE_FFMPEG;
2457                 asset->load_defaults(defaults, "PROXY_", 1, 1, 0, 0, 0);
2458                 to_proxy(asset, new_scale, new_use_scaler);
2459                 asset->remove_user();
2460                 edl->session->proxy_disabled_scale = old_scale;
2461                 gui->lock_window("MWindow::to_proxy");
2462                 update_project(LOADMODE_REPLACE);
2463                 gui->unlock_window();
2464         }
2465         return 1;
2466 }
2467
2468 int MWindow::to_proxy(Asset *asset, int new_scale, int new_use_scaler)
2469 {
2470         ArrayList<Indexable*> orig_idxbls;
2471         ArrayList<Indexable*> proxy_assets;
2472
2473         edl->Garbage::add_user();
2474         save_backup();
2475         undo_before(_("proxy"), this);
2476         int asset_scale = new_scale == 1 ? 0 :
2477                         !new_use_scaler ? 1 : new_scale;
2478         ProxyRender proxy_render(this, asset, asset_scale);
2479
2480 // revert project to original size from current size
2481 // remove all session proxy assets at the at the current proxy_scale
2482         int proxy_scale = edl->session->proxy_scale;
2483
2484         if( proxy_scale > 1 ) {
2485                 Asset *orig_asset = edl->assets->first;
2486                 for( ; orig_asset; orig_asset=orig_asset->next ) {
2487                         char new_path[BCTEXTLEN];
2488                         proxy_render.to_proxy_path(new_path, orig_asset, proxy_scale);
2489 // test if proxy asset was already added to proxy_assets
2490                         int got_it = 0;
2491                         for( int i = 0; !got_it && i<proxy_assets.size(); ++i )
2492                                 got_it = !strcmp(proxy_assets[i]->path, new_path);
2493                         if( got_it ) continue;
2494                         Asset *proxy_asset = edl->assets->get_asset(new_path);
2495                         if( !proxy_asset ) continue;
2496 // add pointer to existing EDL asset if it exists
2497 // EDL won't delete it unless it's the same pointer.
2498                         proxy_assets.append(proxy_asset);
2499                         proxy_asset->add_user();
2500                         orig_idxbls.append(orig_asset);
2501                         orig_asset->add_user();
2502                 }
2503                 for( int i=0,n=edl->nested_edls.size(); i<n; ++i ) {
2504                         EDL *orig_nested = edl->nested_edls[i];
2505                         char new_path[BCTEXTLEN];
2506                         proxy_render.to_proxy_path(new_path, orig_nested, proxy_scale);
2507 // test if proxy asset was already added to proxy_assets
2508                         int got_it = 0;
2509                         for( int i = 0; !got_it && i<proxy_assets.size(); ++i )
2510                                 got_it = !strcmp(proxy_assets[i]->path, new_path);
2511                         if( got_it ) continue;
2512                         Asset *proxy_nested = edl->assets->get_asset(new_path);
2513                         if( !proxy_nested ) continue;
2514 // add pointer to existing EDL asset if it exists
2515 // EDL won't delete it unless it's the same pointer.
2516                         proxy_assets.append(proxy_nested);
2517                         proxy_nested->add_user();
2518                         orig_idxbls.append(orig_nested);
2519                         orig_nested->add_user();
2520                 }
2521
2522 // convert from the proxy assets to the original assets
2523                 edl->set_proxy(1, 0, &proxy_assets, &orig_idxbls);
2524
2525 // remove the references
2526                 for( int i=0; i<proxy_assets.size(); ++i ) {
2527                         Asset *proxy = (Asset *) proxy_assets[i];
2528                         proxy->width = proxy->actual_width;
2529                         proxy->height = proxy->actual_height;
2530                         proxy->remove_user();
2531                         edl->assets->remove_pointer(proxy);
2532                         proxy->remove_user();
2533                 }
2534                 proxy_assets.remove_all();
2535                 for( int i = 0; i < orig_idxbls.size(); i++ )
2536                         orig_idxbls[i]->remove_user();
2537                 orig_idxbls.remove_all();
2538         }
2539
2540         ArrayList<char *> confirm_paths;    // test for new files
2541         confirm_paths.set_array_delete();
2542
2543 // convert to new size if not original size
2544         if( new_scale != 1 ) {
2545                 FileSystem fs;
2546                 Asset *orig = edl->assets->first;
2547                 for( ; orig; orig=orig->next ) {
2548                         Asset *proxy = proxy_render.add_original(orig, new_scale);
2549                         if( !proxy ) continue;
2550                         int exists = fs.get_size(proxy->path) > 0 ? 1 : 0;
2551                         int got_it = exists && // if proxy exists, and is newer than orig
2552                             fs.get_date(proxy->path) > fs.get_date(orig->path) ? 1 : 0;
2553                         if( !got_it ) {
2554                                 if( exists ) // prompt user to overwrite
2555                                         confirm_paths.append(cstrdup(proxy->path));
2556                                 proxy_render.add_needed(orig, proxy);
2557                         }
2558                 }
2559                 for( int i=0,n=edl->nested_edls.size(); i<n; ++i ) {
2560                         EDL *orig_nested = edl->nested_edls[i];
2561                         Asset *proxy = proxy_render.add_original(orig_nested, new_scale);
2562                         if( !proxy ) continue;
2563                         int exists = fs.get_size(proxy->path) > 0 ? 1 : 0;
2564                         int got_it = exists && // if proxy exists, and is newer than orig_nested
2565                             fs.get_date(proxy->path) > fs.get_date(orig_nested->path) ? 1 : 0;
2566                         if( !got_it ) {
2567                                 if( exists ) // prompt user to overwrite
2568                                         confirm_paths.append(cstrdup(proxy->path));
2569                                 proxy_render.add_needed(orig_nested, proxy);
2570                         }
2571                 }
2572         }
2573
2574         int result = 0;
2575 // test for existing files
2576         if( confirm_paths.size() ) {
2577                 result = ConfirmSave::test_files(this, &confirm_paths);
2578                 confirm_paths.remove_all_objects();
2579         }
2580
2581         if( !result )
2582                 result = proxy_render.create_needed_proxies(new_scale);
2583
2584         if( !result ) // resize project
2585                 edl->set_proxy(new_scale, new_use_scaler,
2586                         &proxy_render.orig_idxbls, &proxy_render.orig_proxies);
2587
2588         undo_after(_("proxy"), LOAD_ALL);
2589         edl->Garbage::remove_user();
2590         restart_brender();
2591
2592         return !result ? proxy_render.needed_proxies.size() : -1;
2593 }
2594
2595 void MWindow::test_plugins(EDL *new_edl, const char *path)
2596 {
2597         char string[BCTEXTLEN];
2598
2599 // Do a check whether plugins exist
2600         for( Track *track=new_edl->tracks->first; track; track=track->next ) {
2601                 for( int k=0; k<track->plugin_set.total; ++k ) {
2602                         PluginSet *plugin_set = track->plugin_set[k];
2603                         for( Plugin *plugin = (Plugin*)plugin_set->first;
2604                                         plugin; plugin = (Plugin*)plugin->next ) {
2605                                 if( plugin->plugin_type != PLUGIN_STANDALONE ) continue;
2606 // ok we need to find it in plugindb
2607                                 PluginServer *server =
2608                                         scan_plugindb(plugin->title, track->data_type);
2609                                 if( !server || server->transition ) {
2610                                         sprintf(string,
2611         _("The %s '%s' in file '%s' is not part of your installation of Cinelerra.\n"
2612           "The project won't be rendered as it was meant and Cinelerra might crash.\n"),
2613                                                 "effect", _(plugin->title), path);
2614                                         MainError::show_error(string);
2615                                 }
2616                         }
2617                 }
2618
2619                 for( Edit *edit=track->edits->first; edit; edit=edit->next ) {
2620                         if( !edit->transition ) continue;
2621 // ok we need to find transition in plugindb
2622                         PluginServer *server =
2623                                 scan_plugindb(edit->transition->title, track->data_type);
2624                         if( !server || !server->transition ) {
2625                                 sprintf(string,
2626         _("The %s '%s' in file '%s' is not part of your installation of Cinelerra.\n"
2627           "The project won't be rendered as it was meant and Cinelerra might crash.\n"),
2628                                         "transition", _(edit->transition->title), path);
2629                                 MainError::show_error(string);
2630                         }
2631                 }
2632         }
2633 }
2634
2635
2636 void MWindow::init_shm(const char *pfn, int64_t min)
2637 {
2638         int64_t result = 0;
2639 // Fix shared memory
2640         FILE *fd = fopen(pfn, "r");
2641         if( fd ) {
2642                 fscanf(fd, "%jd", &result);
2643                 fclose(fd);
2644                 if( result >= min ) return;
2645         }
2646
2647         fd = fopen(pfn, "w");
2648         if( !fd ) return;
2649         fprintf(fd, "0x%jx", min);
2650         fclose(fd);
2651
2652         fd = fopen(pfn, "r");
2653         if( !fd ) {
2654                 eprintf(_("MWindow::init_shm: couldn't open %s for reading.\n"), pfn);
2655                 return;
2656         }
2657
2658         fscanf(fd, "%jd", &result);
2659         fclose(fd);
2660         if( result < min ) {
2661                 eprintf(_("MWindow::init_shm: %s is %p.\n"
2662                         "you probably need to be root, or:\n"
2663                         "as root, run: echo 0x%jx > %s\n"
2664                         "before trying to start cinelerra.\n"
2665                         "It should be at least 0x%jx for Cinelerra.\n"),
2666                         pfn, (void *)result, min, pfn, min);
2667         }
2668 }
2669
2670 void MWindow::create_objects(int want_gui,
2671         int want_new,
2672         char *config_path)
2673 {
2674         const int debug = 0;
2675         if(debug) PRINT_TRACE
2676
2677 // For some reason, init_signals must come after show_splash or the signals won't
2678 // get trapped.
2679         init_signals();
2680         if(debug) PRINT_TRACE
2681         init_3d();
2682
2683         if(debug) PRINT_TRACE
2684
2685         if(debug) PRINT_TRACE
2686         default_standard = default_std();
2687         init_defaults(defaults, config_path);
2688         check_language();
2689         show_splash();
2690         init_preferences();
2691         if(splash_window)
2692                 splash_window->update_status(_("Initializing Plugins"));
2693         init_plugins(this, preferences);
2694         if(debug) PRINT_TRACE
2695         init_ladspa_plugins(this, preferences);
2696         if(debug) PRINT_TRACE
2697         init_plugin_tips(*plugindb, cin_lang);
2698         if(splash_window)
2699                 splash_window->update_status(_("Initializing GUI"));
2700         if(debug) PRINT_TRACE
2701         init_theme();
2702
2703         if(debug) PRINT_TRACE
2704         init_error();
2705
2706         if(splash_window)
2707                 splash_window->update_status(_("Initializing Fonts"));
2708         char string[BCTEXTLEN];
2709         strcpy(string, preferences->plugin_dir);
2710         strcat(string, "/" FONT_SEARCHPATH);
2711         BC_Resources::init_fontconfig(string);
2712         if(debug) PRINT_TRACE
2713 // use if plugged
2714         init_x10tv();
2715         if( !x10tv )
2716                 init_wintv();
2717
2718 // Default project created here
2719         init_edl();
2720         if(debug) PRINT_TRACE
2721
2722         init_cache();
2723         if(debug) PRINT_TRACE
2724
2725         Timer timer;
2726
2727         init_awindow();
2728         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2729
2730         init_compositor();
2731         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2732
2733 //printf("MWindow::create_objects %d session->show_vwindow=%d\n", __LINE__, session->show_vwindow);
2734         if(session->show_vwindow)
2735                 get_viewer(1, DEFAULT_VWINDOW);
2736         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2737
2738         init_gui();
2739         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2740
2741         init_levelwindow();
2742         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2743
2744         init_indexes();
2745         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2746
2747         init_channeldb();
2748         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2749
2750         init_gwindow();
2751         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2752
2753         init_render();
2754         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2755
2756         init_shuttle();
2757         init_brender();
2758         init_exportedl();
2759         init_commercials();
2760         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2761         mainprogress = new MainProgress(this, gui);
2762         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2763         undo = new MainUndo(this);
2764
2765         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2766
2767         plugin_guis = new PluginGUIs(this);
2768         dead_plugins = new ArrayList<PluginServer*>;
2769         keyframe_threads = new ArrayList<KeyFrameThread*>;
2770
2771         if(debug) printf("MWindow::create_objects %d vwindows=%d show_vwindow=%d\n",
2772                 __LINE__,
2773                 vwindows.size(),
2774                 session->show_vwindow);
2775
2776 // Show all vwindows
2777 //      if(session->show_vwindow) {
2778 //              for(int j = 0; j < vwindows.size(); j++) {
2779 //                      VWindow *vwindow = vwindows[j];
2780 //                      if( !vwindow->is_running() ) continue;
2781 //                      if(debug) printf("MWindow::create_objects %d vwindow=%p\n",
2782 //                              __LINE__,
2783 //                              vwindow);
2784 //                      if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2785 //                      vwindow->gui->lock_window("MWindow::create_objects 1");
2786 //                      if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2787 //                      vwindow->gui->show_window();
2788 //                      if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2789 //                      vwindow->gui->unlock_window();
2790 //              }
2791 //      }
2792
2793
2794         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2795
2796         if(session->show_cwindow)
2797         {
2798                 cwindow->gui->lock_window("MWindow::create_objects 1");
2799                 cwindow->gui->show_window();
2800                 cwindow->gui->unlock_window();
2801         }
2802
2803         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2804         if(session->show_awindow)
2805         {
2806                 awindow->gui->lock_window("MWindow::create_objects 1");
2807                 awindow->gui->show_window();
2808                 awindow->gui->unlock_window();
2809         }
2810
2811         if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2812         if(session->show_lwindow)
2813         {
2814                 lwindow->gui->lock_window("MWindow::create_objects 1");
2815                 lwindow->gui->show_window();
2816                 lwindow->gui->unlock_window();
2817         }
2818
2819         if(debug) printf("MWindow::create_objects %d total_time=%d gwindow=%p\n",
2820                 __LINE__,
2821                 (int)timer.get_difference(),
2822                 gwindow->gui);
2823         if(session->show_gwindow)
2824         {
2825                 gwindow->gui->lock_window("MWindow::create_objects 1");
2826                 gwindow->gui->show_window();
2827                 gwindow->gui->unlock_window();
2828         }
2829
2830         if(debug) PRINT_TRACE
2831
2832         gui->lock_window("MWindow::create_objects 1");
2833         gui->mainmenu->load_defaults(defaults);
2834         gui->mainmenu->update_toggles(0);
2835         gui->update_patchbay();
2836         gui->draw_canvas(0, 0);
2837         gui->draw_cursor(1);
2838         gui->show_window();
2839         gui->raise_window();
2840         gui->unlock_window();
2841         cwindow->gui->lock_window("MWindow::create_objects 1");
2842         cwindow->gui->tool_panel->raise_tool();
2843         cwindow->gui->unlock_window();
2844         if(debug) PRINT_TRACE
2845
2846         if(preferences->use_tipwindow)
2847                 init_tipwindow();
2848         if(debug) PRINT_TRACE
2849
2850         gui->add_keyboard_listener(
2851                 (int (BC_WindowBase::*)(BC_WindowBase *))
2852                 &MWindowGUI::keyboard_listener);
2853
2854         hide_splash();
2855         init_shm("/proc/sys/kernel/shmmax", 0x7fffffff);
2856         init_shm("/proc/sys/kernel/shmmni", 0x4000);
2857         if(debug) PRINT_TRACE
2858
2859         BC_WindowBase::get_resources()->vframe_shm = 1;
2860 }
2861
2862 int MWindow::uses_opengl()
2863 {
2864         if( !playback_3d || !playback_3d->running() ) return 0;
2865         PlaybackConfig *playback_config = edl->session->playback_config;
2866         return playback_config->vconfig->driver == PLAYBACK_X11_GL ? 1 : 0;
2867 }
2868
2869 void MWindow::show_splash()
2870 {
2871 #include "data/heroine_logo9_png.h"
2872         VFrame *frame = new VFramePng(heroine_logo9_png);
2873         BC_DisplayInfo dpyi;
2874         int rw = dpyi.get_root_w(), rh = dpyi.get_root_h();
2875         int rr = (rw < rh ? rw : rh) / 4;
2876         splash_window = new SplashGUI(frame, rr, rr);
2877         splash_window->create_objects();
2878 }
2879
2880 void MWindow::hide_splash()
2881 {
2882         if(splash_window)
2883                 delete splash_window;
2884         splash_window = 0;
2885 }
2886
2887
2888 void MWindow::start()
2889 {
2890 ENABLE_BUFFER
2891 //PRINT_TRACE
2892 //      vwindows[DEFAULT_VWINDOW]->start();
2893         awindow->start();
2894 //PRINT_TRACE
2895         cwindow->start();
2896 //PRINT_TRACE
2897         lwindow->start();
2898 //PRINT_TRACE
2899         gwindow->start();
2900 //PRINT_TRACE
2901 //      Thread::start();
2902 //PRINT_TRACE
2903         playback_3d->start();
2904 //PRINT_TRACE
2905 }
2906
2907 void MWindow::run()
2908 {
2909         run_lock->lock("MWindow::run");
2910         gui->run_window();
2911         stop_playback(1);
2912
2913         brender_lock->lock("MWindow::run 1");
2914         delete brender;         brender = 0;
2915         brender_lock->unlock();
2916
2917         interrupt_indexes();
2918         clean_indexes();
2919         save_defaults();
2920         run_lock->unlock();
2921 }
2922
2923 void MWindow::show_vwindow(int raise)
2924 {
2925         int total_running = 0;
2926         session->show_vwindow = 1;
2927
2928 //printf("MWindow::show_vwindow %d %d\n", __LINE__, vwindows.size());
2929 // Raise all windows which are visible
2930         for(int j = 0; j < vwindows.size(); j++) {
2931                 VWindow *vwindow = vwindows[j];
2932                 if( !vwindow->is_running() ) continue;
2933                 total_running++;
2934                 if( !raise && !vwindow->gui->is_hidden() ) continue;
2935                 vwindow->gui->lock_window("MWindow::show_vwindow");
2936                 vwindow->gui->show_window(0);
2937                 vwindow->gui->raise_window();
2938                 vwindow->gui->flush();
2939                 vwindow->gui->unlock_window();
2940         }
2941 // If no windows visible
2942         if( !total_running )
2943                 get_viewer(1, DEFAULT_VWINDOW);
2944
2945         gui->mainmenu->show_vwindow->set_checked(1);
2946 }
2947
2948 void MWindow::show_awindow()
2949 {
2950         session->show_awindow = 1;
2951         awindow->gui->lock_window("MWindow::show_awindow");
2952         awindow->gui->show_window();
2953         awindow->gui->raise_window();
2954         awindow->gui->flush();
2955         awindow->gui->unlock_window();
2956         gui->mainmenu->show_awindow->set_checked(1);
2957 }
2958
2959 char *MWindow::get_cwindow_display()
2960 {
2961         char *x11_host = screens < 2 || session->window_config == 0 ?
2962                 session->a_x11_host : session->b_x11_host;
2963         return *x11_host ? x11_host : 0;
2964 }
2965
2966 void MWindow::show_cwindow()
2967 {
2968         session->show_cwindow = 1;
2969         cwindow->show_window();
2970         cwindow->gui->tool_panel->raise_tool();
2971         gui->mainmenu->show_cwindow->set_checked(1);
2972 }
2973
2974 void MWindow::show_gwindow()
2975 {
2976         session->show_gwindow = 1;
2977
2978         gwindow->gui->lock_window("MWindow::show_gwindow");
2979         gwindow->gui->show_window();
2980         gwindow->gui->raise_window();
2981         gwindow->gui->flush();
2982         gwindow->gui->unlock_window();
2983
2984         gui->mainmenu->show_gwindow->set_checked(1);
2985 }
2986 void MWindow::hide_gwindow()
2987 {
2988         session->show_gwindow = 0;
2989
2990         gwindow->gui->lock_window("MWindow::show_gwindow");
2991         gwindow->gui->hide_window();
2992         gwindow->gui->unlock_window();
2993 }
2994
2995 void MWindow::show_lwindow()
2996 {
2997         session->show_lwindow = 1;
2998         lwindow->gui->lock_window("MWindow::show_lwindow");
2999         lwindow->gui->show_window();
3000         lwindow->gui->raise_window();
3001         lwindow->gui->flush();
3002         lwindow->gui->unlock_window();
3003         gui->mainmenu->show_lwindow->set_checked(1);
3004 }
3005
3006 void MWindow::restore_windows()
3007 {
3008         gui->unlock_window();
3009         if( !session->show_vwindow ) {
3010                 for( int i=0, n=vwindows.size(); i<n; ++i ) {
3011                         VWindow *vwindow = vwindows[i];
3012                         if( !vwindow || !vwindow->is_running() ) continue;
3013                         vwindow->gui->lock_window("MWindow::restore_windows");
3014                         vwindow->gui->close(1);
3015                         vwindow->gui->unlock_window();
3016                 }
3017         }
3018         else 
3019                 show_vwindow(0);
3020
3021         if( !session->show_awindow && !awindow->gui->is_hidden() ) {
3022                 awindow->gui->lock_window("MWindow::restore_windows");
3023                 awindow->gui->close_event();
3024                 awindow->gui->unlock_window();
3025         }
3026         else if( session->show_awindow && awindow->gui->is_hidden() )
3027                 show_awindow();
3028
3029         if( !session->show_cwindow && !cwindow->gui->is_hidden() ) {
3030                 cwindow->gui->lock_window("MWindow::restore_windows");
3031                 cwindow->hide_window();
3032                 cwindow->gui->unlock_window();
3033         }
3034         else if( session->show_cwindow && cwindow->gui->is_hidden() )
3035                 cwindow->show_window();
3036
3037         if( !session->show_gwindow && !gwindow->gui->is_hidden() ) {
3038                 gwindow->gui->lock_window("MWindow::restore_windows");
3039                 gwindow->gui->close_event();
3040                 gwindow->gui->unlock_window();
3041         }
3042         else if( session->show_gwindow && gwindow->gui->is_hidden() )
3043                 show_gwindow();
3044
3045         if( !session->show_lwindow && !lwindow->gui->is_hidden() ) {
3046                 lwindow->gui->lock_window("MWindow::restore_windows");
3047                 lwindow->gui->close_event();
3048                 lwindow->gui->unlock_window();
3049         }
3050         else if( session->show_lwindow && lwindow->gui->is_hidden() )
3051                 show_lwindow();
3052
3053         gui->lock_window("MWindow::restore_windows");
3054         gui->focus();
3055 }
3056
3057 void MWindow::load_layout(const char *layout)
3058 {
3059         char path[BCTEXTLEN];
3060         snprintf(path, sizeof(path), "%s/%s", File::get_config_path(), layout);
3061         session->load_file(path);
3062         restore_windows();
3063         gui->default_positions();
3064         save_defaults();
3065 }
3066
3067 void MWindow::save_layout(const char *layout)
3068 {
3069         char path[BCTEXTLEN];
3070         snprintf(path, sizeof(path), "%s/%s", File::get_config_path(), layout);
3071         session->save_file(path);
3072 }
3073
3074 void MWindow::delete_layout(const char *layout)
3075 {
3076         char path[BCTEXTLEN];
3077         snprintf(path, sizeof(path), "%s/%s", File::get_config_path(), layout);
3078         unlink(path);
3079 }
3080
3081 int MWindow::tile_windows(int window_config)
3082 {
3083         int need_reload = 0;
3084         int play_config = window_config==0 ? 0 : 1;
3085         edl->session->playback_config->load_defaults(defaults, play_config);
3086         session->default_window_positions(window_config);
3087         if( screens == 1 ) {
3088                 gui->default_positions();
3089                 sync_parameters(CHANGE_ALL);
3090         }
3091         else
3092                 need_reload = 1;
3093         return need_reload;
3094 }
3095
3096 void MWindow::toggle_loop_playback()
3097 {
3098         edl->local_session->loop_playback = !edl->local_session->loop_playback;
3099         set_loop_boundaries();
3100         save_backup();
3101
3102         gui->draw_overlays(1);
3103         sync_parameters(CHANGE_PARAMS);
3104 }
3105
3106 void MWindow::set_screens(int value)
3107 {
3108         screens = value;
3109 }
3110
3111 void MWindow::set_auto_keyframes(int value)
3112 {
3113         edl->session->auto_keyframes = value;
3114         gui->mbuttons->edit_panel->keyframe->update(value);
3115         gui->flush();
3116         cwindow->gui->lock_window("MWindow::set_auto_keyframes");
3117         cwindow->gui->flush();
3118         cwindow->gui->unlock_window();
3119 }
3120
3121 void MWindow::set_span_keyframes(int value)
3122 {
3123         edl->session->span_keyframes = value;
3124         gui->mbuttons->edit_panel->span_keyframe->update(value);
3125         gui->flush();
3126         cwindow->gui->lock_window("MWindow::set_span_keyframes");
3127         cwindow->gui->flush();
3128         cwindow->gui->unlock_window();
3129 }
3130
3131 void MWindow::set_auto_visibility(Autos *autos, int value)
3132 {
3133         if( autos->type == Autos::AUTOMATION_TYPE_PLUGIN )
3134                 edl->session->auto_conf->plugins = value;
3135         else if( autos->autoidx >= 0 )
3136                 edl->session->auto_conf->autos[autos->autoidx] = value;
3137         else
3138                 return;
3139
3140         gui->update(0, NORMAL_DRAW, 0, 0, 0, 0, 0);
3141         gui->mainmenu->update_toggles(1);
3142         gui->unlock_window();
3143         gwindow->gui->update_toggles(1);
3144         gui->lock_window("MWindow::set_auto_visibility");
3145 }
3146
3147 void MWindow::set_keyframe_type(int mode)
3148 {
3149         gui->lock_window("MWindow::set_keyframe_type");
3150         edl->local_session->floatauto_type = mode;
3151         gui->mainmenu->update_toggles(0);
3152         gui->unlock_window();
3153 }
3154
3155 int MWindow::set_editing_mode(int new_editing_mode)
3156 {
3157         edl->session->editing_mode = new_editing_mode;
3158         gui->mbuttons->edit_panel->editing_mode = edl->session->editing_mode;
3159         gui->mbuttons->edit_panel->update();
3160         gui->set_editing_mode(1);
3161
3162         cwindow->gui->lock_window("MWindow::set_editing_mode");
3163         cwindow->gui->edit_panel->update();
3164         cwindow->gui->edit_panel->editing_mode = edl->session->editing_mode;
3165         cwindow->gui->unlock_window();
3166         return 0;
3167 }
3168
3169 void MWindow::toggle_editing_mode()
3170 {
3171         int mode = edl->session->editing_mode;
3172         if( mode == EDITING_ARROW )
3173                 set_editing_mode(EDITING_IBEAM);
3174         else
3175                 set_editing_mode(EDITING_ARROW);
3176 }
3177
3178 void MWindow::toggle_camera_xyz()
3179 {
3180         gwindow->gui->lock_window("MWindow::toggle_camera_xyz");
3181         gwindow->gui->toggle_camera_xyz();
3182         gwindow->gui->unlock_window();
3183 }
3184
3185 void MWindow::toggle_projector_xyz()
3186 {
3187         gwindow->gui->lock_window("MWindow::toggle_projector_xyz");
3188         gwindow->gui->toggle_projector_xyz();
3189         gwindow->gui->unlock_window();
3190 }
3191
3192 void MWindow::set_labels_follow_edits(int value)
3193 {
3194         edl->session->labels_follow_edits = value;
3195         gui->mbuttons->edit_panel->locklabels->update(value);
3196         gui->mainmenu->labels_follow_edits->set_checked(value);
3197         gui->flush();
3198 }
3199
3200 void MWindow::sync_parameters(int change_type)
3201 {
3202         if( in_destructor ) return;
3203
3204 // Sync engines which are playing back
3205         if( cwindow->playback_engine->is_playing_back ) {
3206                 if( change_type == CHANGE_PARAMS ) {
3207 // TODO: block keyframes until synchronization is done
3208                         cwindow->playback_engine->sync_parameters(edl);
3209                 }
3210                 else {
3211 // Stop and restart
3212                         int command = cwindow->playback_engine->command->command;
3213 // Waiting for tracking to finish would make the restart position more
3214 // accurate but it can't lock the window to stop tracking for some reason.
3215 // Not waiting for tracking gives a faster response but restart position is
3216 // only as accurate as the last tracking update.
3217                         cwindow->playback_engine->transport_stop(0);
3218                         cwindow->playback_engine->next_command->realtime = 1;
3219                         cwindow->playback_engine->transport_command(command, change_type, edl, 0);
3220                 }
3221         }
3222         else {
3223                 cwindow->refresh_frame(change_type);
3224         }
3225 }
3226
3227 void MWindow::age_caches()
3228 {
3229 // printf("MWindow::age_caches %d %lld %lld %lld %lld\n",
3230 // __LINE__,
3231 // preferences->cache_size,
3232 // audio_cache->get_memory_usage(1),
3233 // video_cache->get_memory_usage(1),
3234 // frame_cache->get_memory_usage(),
3235 // wave_cache->get_memory_usage(),
3236 // memory_usage);
3237         frame_cache->age_cache(512);
3238         wave_cache->age_cache(8192);
3239
3240         int64_t memory_usage;
3241         int64_t prev_memory_usage = 0;
3242         int result = 0;
3243         int64_t video_size = (int64_t)(preferences->cache_size * 0.80);
3244         while( !result && prev_memory_usage !=
3245                 (memory_usage=video_cache->get_memory_usage(1)) &&
3246                 memory_usage > video_size ) {
3247                 video_cache->delete_oldest();
3248                 prev_memory_usage = memory_usage;
3249         }
3250
3251         prev_memory_usage = 0;
3252         result = 0;
3253         int64_t audio_size = (int64_t)(preferences->cache_size * 0.20);
3254         while( !result && prev_memory_usage !=
3255                 (memory_usage=audio_cache->get_memory_usage(1)) &&
3256                 memory_usage > audio_size ) {
3257                 audio_cache->delete_oldest();
3258                 prev_memory_usage = memory_usage;
3259         }
3260 }
3261
3262 void MWindow::reset_android_remote()
3263 {
3264         gui->use_android_remote(preferences->android_remote);
3265 }
3266
3267
3268 void MWindow::show_keyframe_gui(Plugin *plugin)
3269 {
3270         keyframe_gui_lock->lock("MWindow::show_keyframe_gui");
3271 // Find existing thread
3272         for( int i=0; i<keyframe_threads->size(); ++i ) {
3273                 int plugin_id = keyframe_threads->get(i)->plugin_id;
3274                 if( plugin_id == plugin->orig_id ) {
3275                         keyframe_threads->get(i)->start_window(plugin, 0);
3276                         keyframe_gui_lock->unlock();
3277                         return;
3278                 }
3279         }
3280
3281 // Find unused thread
3282         for( int i=0; i<keyframe_threads->size(); ++i ) {
3283                 if( keyframe_threads->get(i)->plugin_id < 0 ) {
3284                         keyframe_threads->get(i)->start_window(plugin, 0);
3285                         keyframe_gui_lock->unlock();
3286                         return;
3287                 }
3288         }
3289
3290 // Create new thread
3291         KeyFrameThread *thread = new KeyFrameThread(this);
3292         keyframe_threads->append(thread);
3293         thread->start_window(plugin, 0);
3294         keyframe_gui_lock->unlock();
3295 }
3296
3297
3298 void MWindow::show_plugin(Plugin *plugin)
3299 {
3300         int done = 0;
3301
3302 SET_TRACE
3303 // Remove previously deleted plugin GUIs
3304         dead_plugin_lock->lock("MWindow::show_plugin");
3305         dead_plugins->remove_all_objects();
3306         dead_plugin_lock->unlock();
3307
3308 //printf("MWindow::show_plugin %d\n", __LINE__);
3309 SET_TRACE
3310
3311         plugin_gui_lock->lock("MWindow::show_plugin");
3312         for( int i=0; i<plugin_guis->total; ++i ) {
3313 // Pointer/id comparison
3314                 PluginServer *plugin_gui = plugin_guis->get(i);
3315                 if( plugin_gui->plugin_id == plugin->orig_id ) {
3316                         plugin_gui->raise_window();
3317                         done = 1;
3318                         break;
3319                 }
3320         }
3321 SET_TRACE
3322
3323 //printf("MWindow::show_plugin 1\n");
3324         if( !done && !plugin->track ) {
3325                 printf("MWindow::show_plugin track not defined.\n");
3326                 done = 1;
3327         }
3328         if( !done ) {
3329                 PluginServer *server = scan_plugindb(plugin->title,
3330                         plugin->track->data_type);
3331
3332 //printf("MWindow::show_plugin %p %d\n", server, server->uses_gui);
3333                 if(server && server->uses_gui)
3334                 {
3335                         PluginServer *gui = new PluginServer(*server);
3336                         plugin_guis->append(gui);
3337 // Needs mwindow to do GUI
3338                         gui->set_mwindow(this);
3339                         gui->open_plugin(0, preferences, edl, plugin);
3340                         plugin->show = 1;
3341                         gui->show_gui();
3342                 }
3343         }
3344         plugin_gui_lock->unlock();
3345 // update show/gui_id
3346         sync_parameters(CHANGE_PARAMS);
3347 //printf("MWindow::show_plugin %d\n", __LINE__);
3348 SET_TRACE
3349 //sleep(1);
3350 //printf("MWindow::show_plugin 2\n");
3351 }
3352
3353 void MWindow::hide_plugin(Plugin *plugin, int lock)
3354 {
3355         plugin->show = 0;
3356         return hide_plugin(plugin->orig_id, lock);
3357 }
3358
3359 void MWindow::hide_plugin(int plugin_id, int lock)
3360 {
3361 // Update the toggle
3362         gui->lock_window("MWindow::hide_plugin");
3363         gui->update(0, NORMAL_DRAW, 0, 0, 0, 0, 0);
3364         gui->unlock_window();
3365
3366         if(lock) plugin_gui_lock->lock("MWindow::hide_plugin");
3367         for( int i=0; i<plugin_guis->total; ++i ) {
3368                 PluginServer *plugin_gui = plugin_guis->get(i);
3369                 if( plugin_gui->plugin_id == plugin_id ) {
3370                         plugin_guis->remove(plugin_gui);
3371                         if(lock) plugin_gui_lock->unlock();
3372 // Last command executed in client side close
3373 // Schedule for deletion
3374                         plugin_gui->hide_gui();
3375                         delete_plugin(plugin_gui);
3376 //sleep(1);
3377                         return;
3378                 }
3379         }
3380         if(lock) plugin_gui_lock->unlock();
3381 // update show/gui_id
3382         sync_parameters(CHANGE_PARAMS);
3383 }
3384
3385 void MWindow::delete_plugin(PluginServer *plugin)
3386 {
3387         dead_plugin_lock->lock("MWindow::delete_plugin");
3388         dead_plugins->append(plugin);
3389         dead_plugin_lock->unlock();
3390 }
3391
3392 void MWindow::hide_plugins()
3393 {
3394         plugin_gui_lock->lock("MWindow::hide_plugins 1");
3395         while(plugin_guis->size())
3396         {
3397                 PluginServer *ptr = plugin_guis->get(0);
3398                 plugin_guis->remove(ptr);
3399                 plugin_gui_lock->unlock();
3400 // Last command executed in client side close
3401 // Schedule for deletion
3402                 ptr->hide_gui();
3403                 delete_plugin(ptr);
3404                 plugin_gui_lock->lock("MWindow::hide_plugins 2");
3405         }
3406         plugin_gui_lock->unlock();
3407
3408         hide_keyframe_guis();
3409 }
3410
3411 void MWindow::hide_keyframe_guis()
3412 {
3413         keyframe_gui_lock->lock("MWindow::hide_keyframe_guis");
3414         for(int i = 0; i < keyframe_threads->size(); i++)
3415         {
3416                 keyframe_threads->get(i)->close_window();
3417         }
3418         keyframe_gui_lock->unlock();
3419 }
3420
3421 void MWindow::hide_keyframe_gui(Plugin *plugin)
3422 {
3423         keyframe_gui_lock->lock("MWindow::hide_keyframe_gui");
3424         for( int i = 0; i < keyframe_threads->size(); i++) {
3425                 KeyFrameThread *keyframe_gui = keyframe_threads->get(i);
3426                 if( keyframe_gui->plugin_id == plugin->orig_id ) {
3427                         keyframe_gui->close_window();
3428                         break;
3429                 }
3430         }
3431         keyframe_gui_lock->unlock();
3432 }
3433
3434 int MWindow::get_hash_color(Edit *edit)
3435 {
3436         Indexable *idxbl = edit->asset ?
3437                 (Indexable*)edit->asset : (Indexable*)edit->nested_edl;
3438         if( !idxbl ) return 0;
3439         char path[BCTEXTLEN];
3440         if( !edit->asset || edit->track->data_type != TRACK_VIDEO ||
3441             edl->session->proxy_scale == 1 ||
3442             ProxyRender::from_proxy_path(path, (Asset*)idxbl, edl->session->proxy_scale) )
3443                 strcpy(path, idxbl->path);
3444         char *cp = strrchr(path, '/');
3445         cp = !cp ? path : cp+1;
3446         uint8_t *bp = (uint8_t*)cp;
3447         int v = 0;
3448         while( *bp ) v += *bp++;
3449         return get_hash_color(v);
3450 }
3451
3452 int MWindow::get_hash_color(int v)
3453 {
3454         int hash = 0x303030;
3455         if( v & 0x01 ) hash ^= 0x000040;
3456         if( v & 0x02 ) hash ^= 0x004000;
3457         if( v & 0x04 ) hash ^= 0x400000;
3458         if( v & 0x08 ) hash ^= 0x080000;
3459         if( v & 0x10 ) hash ^= 0x000800;
3460         if( v & 0x20 ) hash ^= 0x000008;
3461         if( v & 0x40 ) hash ^= 0x404040;
3462         if( v & 0x80 ) hash ^= 0x080808;
3463         return hash;
3464 }
3465
3466 int MWindow::get_group_color(int v)
3467 {
3468         int color = 0x606060;
3469         if( v & 0x01 ) color ^= 0x000080;
3470         if( v & 0x02 ) color ^= 0x008000;
3471         if( v & 0x04 ) color ^= 0x800000;
3472         if( v & 0x08 ) color ^= 0x100000;
3473         if( v & 0x10 ) color ^= 0x001000;
3474         if( v & 0x20 ) color ^= 0x000010;
3475         if( v & 0x40 ) color ^= 0x080808;
3476         if( v & 0x80 ) color ^= 0x909090;
3477         return color;
3478 }
3479
3480 int MWindow::get_title_color(Edit *edit)
3481 {
3482         unsigned color = edit->color & 0xffffff;
3483         unsigned alpha = (~edit->color>>24) & 0xff;
3484         if( !color ) {
3485                 if( edit->group_id )
3486                         color = get_group_color(edit->group_id);
3487                 else if( preferences->autocolor_assets )
3488                         color = get_hash_color(edit);
3489                 else
3490                         return 0;
3491         }
3492         if( alpha == 0xff )
3493                 alpha = session->title_bar_alpha*255;
3494         return color | (~alpha<<24);
3495 }
3496
3497 void MWindow::update_keyframe_guis()
3498 {
3499 // Send new configuration to keyframe GUI's
3500         keyframe_gui_lock->lock("MWindow::update_keyframe_guis");
3501         for( int i=0; i<keyframe_threads->size(); ++i ) {
3502                 KeyFrameThread *keyframe_gui = keyframe_threads->get(i);
3503                 Plugin *plugin = edl->tracks->plugin_exists(keyframe_gui->plugin_id);
3504                 if( plugin )
3505                         keyframe_gui->update_gui(1);
3506                 else
3507                         keyframe_gui->close_window();
3508         }
3509         keyframe_gui_lock->unlock();
3510 }
3511
3512 void MWindow::update_plugin_guis(int do_keyframe_guis)
3513 {
3514 // Send new configuration to plugin GUI's
3515         plugin_gui_lock->lock("MWindow::update_plugin_guis");
3516
3517         for( int i=0; i<plugin_guis->size(); ++i ) {
3518                 PluginServer *plugin_gui = plugin_guis->get(i);
3519                 Plugin *plugin = edl->tracks->plugin_exists(plugin_gui->plugin_id);
3520                 if( plugin && plugin->show )
3521                         plugin_gui->update_gui();
3522                 else {
3523 // Schedule for deletion if no plugin or not shown
3524                         plugin_guis->remove_number(i--);
3525                         plugin_gui->hide_gui();
3526                         delete_plugin(plugin_gui);
3527                 }
3528         }
3529
3530
3531 // Change plugin variable if not visible
3532         Track *track = edl->tracks->first;
3533         for( ; track; track=track->next ) {
3534                 for( int i=0; i < track->plugin_set.size(); ++i ) {
3535                         Plugin *plugin = (Plugin*)track->plugin_set[i]->first;
3536                         for( ; plugin; plugin = (Plugin*)plugin->next ) {
3537                                 int got_it = 0;
3538                                 for( int i=0; i<plugin_guis->size(); ++i ) {
3539                                         PluginServer *server = plugin_guis->get(i);
3540                                         if( server->plugin_id == plugin->orig_id ) {
3541                                                 got_it = 1;
3542                                                 break;
3543                                         }
3544                                 }
3545                                 if( !got_it ) plugin->show = 0;
3546                         }
3547                 }
3548         }
3549
3550         plugin_gui_lock->unlock();
3551         if( do_keyframe_guis )
3552                 update_keyframe_guis();
3553 }
3554
3555 void MWindow::stop_plugin_guis()
3556 {
3557 // Send new configuration to plugin GUI's
3558         plugin_gui_lock->lock("MWindow::stop_plugin_guis");
3559
3560         for( int i=0; i<plugin_guis->size(); ++i ) {
3561                 PluginServer *plugin_gui = plugin_guis->get(i);
3562                 plugin_gui->render_stop();
3563         }
3564         plugin_gui_lock->unlock(); 
3565 }
3566
3567 int MWindow::plugin_gui_open(Plugin *plugin)
3568 {
3569         int gui_id = plugin->gui_id;
3570         if( gui_id < 0 ) return 0;
3571         plugin_gui_lock->lock("MWindow::plugin_gui_open");
3572         PluginServer *plugin_server = plugin_guis->gui_server(gui_id);
3573         int result = plugin_server ? 1 : 0;
3574         plugin_gui_lock->unlock();
3575         return result;
3576 }
3577
3578
3579 void MWindow::render_plugin_gui(void *data, Plugin *plugin)
3580 {
3581         int gui_id = plugin->gui_id;
3582         if( gui_id < 0 ) return;
3583         plugin_gui_lock->lock("MWindow::render_plugin_gui 0");
3584         PluginServer *plugin_server = plugin_guis->gui_server(gui_id);
3585         if( plugin_server )
3586                 plugin_server->render_gui(data);
3587         plugin_gui_lock->unlock();
3588 }
3589
3590 void MWindow::render_plugin_gui(void *data, int size, Plugin *plugin)
3591 {
3592         int gui_id = plugin->gui_id;
3593         if( gui_id < 0 ) return;
3594         plugin_gui_lock->lock("MWindow::render_plugin_gui 1");
3595         PluginServer *plugin_server = plugin_guis->gui_server(gui_id);
3596         if( plugin_server )
3597                 plugin_server->render_gui(data, size);
3598         plugin_gui_lock->unlock();
3599 }
3600
3601 void MWindow::reset_plugin_gui_frames(Plugin *plugin)
3602 {
3603         int gui_id = plugin->gui_id;
3604         if( gui_id < 0 ) return;
3605         plugin_gui_lock->lock("MWindow::reset_plugin_gui_frames");
3606         PluginServer *plugin_server = plugin_guis->gui_server(gui_id);
3607         if( plugin_server )
3608                 plugin_server->reset_plugin_gui_frames();
3609         plugin_gui_lock->unlock();
3610 }
3611
3612 void MWindow::render_plugin_gui_frames(PluginClientFrames *frames, Plugin *plugin)
3613 {
3614         int gui_id = plugin->gui_id;
3615         if( gui_id < 0 ) return;
3616         plugin_gui_lock->lock("MWindow::render_plugin_gui_frames");
3617         PluginServer *plugin_server = plugin_guis->gui_server(gui_id);
3618         if( plugin_server )
3619                 plugin_server->render_plugin_gui_frames(frames);
3620         plugin_gui_lock->unlock();
3621 }
3622
3623 double MWindow::get_tracking_position()
3624 {
3625         return edl->local_session->get_selectionstart(1);
3626 }
3627
3628 int MWindow::get_tracking_direction()
3629 {
3630         return cwindow->playback_engine->get_direction();
3631 }
3632
3633 void MWindow::update_plugin_states()
3634 {
3635         plugin_gui_lock->lock("MWindow::update_plugin_states");
3636         for( int i=0; i<plugin_guis->total; ++i ) {
3637 // Get a plugin GUI
3638                 PluginServer *src_plugingui = plugin_guis->get(i);
3639                 int plugin_id = src_plugingui->plugin_id;
3640                 Plugin *src_plugin = edl->tracks->plugin_exists(plugin_id);
3641 // Doesn't exist anymore
3642                 if( !src_plugin ) {
3643                         hide_plugin(plugin_id, 0);
3644                         --i;
3645                 }
3646         }
3647         plugin_gui_lock->unlock();
3648 }
3649
3650
3651 void MWindow::update_plugin_titles()
3652 {
3653         for( int i=0; i<plugin_guis->total; ++i )
3654                 plugin_guis->get(i)->update_title();
3655 }
3656
3657 int MWindow::asset_to_edl(EDL *new_edl,
3658         Asset *new_asset,
3659         RecordLabels *labels)
3660 {
3661 const int debug = 0;
3662 if(debug) printf("MWindow::asset_to_edl %d new_asset->layers=%d\n",
3663 __LINE__,
3664 new_asset->layers);
3665 // Keep frame rate, sample rate, and output size unchanged.
3666 // These parameters would revert the project if VWindow displayed an asset
3667 // of different size than the project.
3668         if(new_asset->video_data)
3669         {
3670                 new_edl->session->video_tracks = new_asset->layers;
3671         }
3672         else
3673                 new_edl->session->video_tracks = 0;
3674
3675 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3676
3677
3678
3679
3680
3681         if(new_asset->audio_data)
3682         {
3683                 new_edl->session->audio_tracks = new_asset->channels;
3684         }
3685         else
3686                 new_edl->session->audio_tracks = 0;
3687 //printf("MWindow::asset_to_edl 2 %d %d\n", new_edl->session->video_tracks, new_edl->session->audio_tracks);
3688
3689 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3690         new_edl->create_default_tracks();
3691 //printf("MWindow::asset_to_edl 2 %d %d\n", new_edl->session->video_tracks, new_edl->session->audio_tracks);
3692 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3693
3694
3695
3696 //printf("MWindow::asset_to_edl 3\n");
3697         new_edl->insert_asset(new_asset,
3698                 0,
3699                 0,
3700                 0,
3701                 labels);
3702 //printf("MWindow::asset_to_edl 3\n");
3703 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3704
3705 // Align cursor on frames:: clip the new_edl to the minimum of the last joint frame.
3706         if(edl->session->cursor_on_frames)
3707         {
3708                 double length = new_edl->tracks->total_length();
3709                 double edl_length = new_edl->tracks->total_length_framealigned(edl->session->frame_rate);
3710                 new_edl->tracks->clear(length, edl_length, 1, 1);
3711         }
3712
3713
3714
3715
3716         char string[BCTEXTLEN];
3717         FileSystem fs;
3718         fs.extract_name(string, new_asset->path);
3719 //printf("MWindow::asset_to_edl 3\n");
3720
3721         strcpy(new_edl->local_session->clip_title, string);
3722 //printf("MWindow::asset_to_edl 4 %s\n", string);
3723 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3724
3725         new_edl->local_session->asset2edl = 1;
3726         return 0;
3727 }
3728
3729
3730 // Reset everything after a load.
3731 void MWindow::update_project(int load_mode)
3732 {
3733         const int debug = 0;
3734
3735         if(debug) PRINT_TRACE
3736         edl->tracks->update_y_pixels(theme);
3737         session->update_clip_number();
3738
3739         if(debug) PRINT_TRACE
3740
3741         if( load_mode == LOADMODE_REPLACE ||
3742             load_mode == LOADMODE_REPLACE_CONCATENATE ) {
3743                 edl->session->timecode_offset = 0;
3744                 gui->close_keyvalue_popup();
3745                 gui->load_panes();
3746         }
3747
3748         gui->update(1, NORMAL_DRAW, 1, 1, 1, 1, 1);
3749         if(debug) PRINT_TRACE
3750         gui->unlock_window();
3751         init_brender();
3752
3753         cwindow->update(0, 0, 1, 1, 1);
3754
3755         if(debug) PRINT_TRACE
3756
3757 // Close all the vwindows
3758         if( load_mode == LOADMODE_REPLACE ||
3759             load_mode == LOADMODE_REPLACE_CONCATENATE ) {
3760                 if(debug) PRINT_TRACE
3761                 int first_vwindow = 0;
3762                 if(session->show_vwindow) first_vwindow = 1;
3763 // Change visible windows to no source
3764                 for(int i = 0; i < first_vwindow && i < vwindows.size(); i++) {
3765                         VWindow *vwindow = vwindows[i];
3766                         if( !vwindow->is_running() ) continue;
3767                         vwindow->change_source(-1);
3768                 }
3769
3770 // Close remaining windows
3771                 for(int i = first_vwindow; i < vwindows.size(); i++) {
3772                         VWindow *vwindow = vwindows[i];
3773                         if( !vwindow->is_running() ) continue;
3774                         vwindow->close_window();
3775                 }
3776                 for( int i=0; i<edl->vwindow_edls.size(); ++i ) {
3777                         VWindow *vwindow = get_viewer(1, -1);
3778                         vwindow->change_source(i);
3779                 }
3780                 if(debug) PRINT_TRACE
3781                 select_zwindow(0);
3782                 close_mixers(0);
3783
3784                 for( int i=0; i<edl->mixers.size(); ++i ) {
3785                         Mixer *mixer = edl->mixers[i];
3786                         if( !mixer->show ) continue;
3787                         ZWindow *zwindow = get_mixer(mixer);
3788                         zwindow->set_title(mixer->title);
3789                         zwindow->start();
3790                 }
3791                 cwindow->gui->canvas->set_zoom(edl, 0);
3792         }
3793         update_vwindow();
3794
3795         if(debug) PRINT_TRACE
3796         cwindow->gui->lock_window("MWindow::update_project 2");
3797         cwindow->gui->timebar->update(0);
3798         Track *track = cwindow->calculate_affected_track();
3799         cwindow->mask_track_id = track ? track->get_id() : -1;
3800         cwindow->gui->tool_panel->raise_tool();
3801         cwindow->gui->update_canvas(0);
3802         cwindow->gui->unlock_window();
3803
3804         if(debug) PRINT_TRACE
3805         cwindow->refresh_frame(CHANGE_ALL);
3806
3807         awindow->gui->async_update_assets();
3808         if(debug) PRINT_TRACE
3809
3810         gui->lock_window("MWindow::update_project");
3811         gui->update_mixers(0, 0);
3812         gui->flush();
3813         if(debug) PRINT_TRACE
3814 }
3815
3816 void MWindow::stack_push(EDL *new_edl, Indexable *idxbl)
3817 {
3818         int got_indexes = 0;
3819         for( int i=0; i<new_edl->nested_edls.size(); ++i ) {
3820                 EDL *nested_edl = new_edl->nested_edls[i];
3821                 mainindexes->add_indexable(nested_edl);
3822                 edl->nested_edls.update_index(nested_edl);
3823                 got_indexes = 1;
3824         }
3825         for( Asset *asset=new_edl->assets->first; asset; asset=asset->next ) {
3826                 mainindexes->add_indexable(asset);
3827                 edl->assets->update(asset);
3828                 got_indexes = 1;
3829         }
3830 // Start examining next batch of index files
3831         if( got_indexes )
3832                 mainindexes->start_build();
3833
3834 // needs gui lock
3835         gui->lock_window("MWindow::stack_push");
3836         if( stack.size() < 9 ) {
3837                 save_backup();
3838                 hide_plugins();
3839                 undo_before();
3840                 StackItem &item = stack.append();
3841                 item.edl = edl;
3842                 item.new_edl = new_edl;
3843                 item.duration = new_edl->tracks->total_length();
3844                 item.undo = undo;
3845                 item.idxbl = idxbl;
3846                 item.mtime = 0;
3847                 if( idxbl && idxbl->is_asset ) {
3848                         struct stat st;
3849                         Asset *asset = (Asset *)idxbl;
3850                         if( asset->format == FILE_REF &&
3851                             !stat(asset->path, &st) )
3852                                 item.mtime = st.st_mtime;
3853                 }
3854                 edl = new_edl;
3855                 edl->add_user();
3856                 strcpy(session->filename, edl->path);
3857                 undo = new MainUndo(this);
3858                 gui->stack_button->update();
3859                 update_project(LOADMODE_REPLACE);
3860         }
3861         gui->unlock_window();
3862         show_plugins();
3863 }
3864
3865 void MWindow::stack_pop()
3866 {
3867         if( !stack.size() ) return;
3868 // writes on config_path/backup%d.xml
3869         save_backup();
3870         hide_plugins();
3871 // already have gui lock
3872         StackItem &item = stack.last();
3873 // session edl replaced, overwrite and save clip data
3874         if( item.new_edl != edl )
3875                 item.new_edl->overwrite_clip(edl);
3876         Indexable *idxbl = item.idxbl;
3877         if( idxbl && idxbl->is_asset && item.mtime ) {
3878                 Asset *asset = (Asset *)idxbl;
3879                 if( asset->format == FILE_REF ) {
3880                         char *path = asset->path;
3881                         struct stat st;
3882                         if( stat(path, &st) || item.mtime == st.st_mtime ) {
3883                                 int cw = xS(250), ch = yS(150), px, py;
3884                                 gui->get_pop_cursor(px, py);
3885                                 px -= cw/2;  py -= ch/2;
3886                                 ConfirmRefWindow confirm(this, path, px, py, cw, ch);
3887                                 confirm.create_objects();
3888                                 int result = confirm.run_window();
3889                                 if( !result ) {
3890                                         FileXML file;
3891                                         item.new_edl->save_xml(&file, path);
3892                                         file.terminate_string();
3893                                         if(file.write_to_file(path))
3894                                                 eprintf(_("Cant write FileREF: %s"), path);
3895                                 }
3896                         }
3897                 }
3898         }
3899         edl->remove_user();
3900         edl = item.edl;
3901         delete undo;
3902         undo = item.undo;
3903         stack.remove();
3904         if( idxbl ) {
3905 // resize the indexable edits if the new_edl duration changed
3906                 double duration = item.new_edl->tracks->total_length();
3907                 double dt = duration - item.duration;
3908                 if( fabs(dt) > 1e-4 )
3909                         edl->tracks->update_idxbl_length(idxbl->id, dt);
3910                 gui->unlock_window();
3911                 gui->resource_thread->close_indexable(idxbl);
3912                 remove_from_caches(idxbl);
3913                 IndexFile::delete_index_files(preferences, idxbl);
3914                 mainindexes->add_indexable(idxbl);
3915                 mainindexes->start_build();
3916                 awindow->gui->async_update_assets();
3917                 gui->lock_window("MWindow::stack_pop");
3918         }
3919         strcpy(session->filename, edl->path);
3920         update_project(LOADMODE_REPLACE);
3921         undo_after(_("open edl"), LOAD_ALL);
3922         show_plugins();
3923         gui->stack_button->update();
3924 }
3925
3926 int MWindow::save(EDL *edl, char *filename, int stat)
3927 {
3928         FileXML file;
3929         edl->save_xml(&file, filename);
3930         file.terminate_string();
3931         if( file.write_to_file(filename) ) {
3932                 eprintf(_("Couldn't open %s"), filename);
3933                 return 1;
3934         }
3935         if( stat ) {
3936                 char string[BCTEXTLEN];
3937                 char *filename = stack.size() ?
3938                         stack[0].edl->path : session->filename;
3939                 sprintf(string, _("\"%s\" %jdC written"),
3940                          filename, file.length());
3941                 gui->lock_window("SaveAs::run");
3942                 gui->show_message(string);
3943                 gui->unlock_window();
3944         }
3945         return 0;
3946 }
3947
3948 int MWindow::save(int save_as)
3949 {
3950         char new_path[BCTEXTLEN];  new_path[0] = 0;
3951         char *path = stack.size() ? stack[0].edl->path : session->filename;
3952         if( save_as || !path[0] ) {
3953                 if( ConfirmSave::get_save_path(this, new_path) )
3954                         return 1;
3955                 if( stack.size() ) {
3956                         strcpy(path, new_path);
3957                         set_titlebar(new_path);
3958                 }
3959                 else
3960                         set_filename(new_path);
3961                 gui->mainmenu->add_load(new_path);
3962                 path = new_path;
3963         }
3964         for( int i=stack.size(); --i>=0;  ) {
3965                 StackItem &item = stack[i];
3966                 Indexable *idxbl = item.idxbl;
3967                 if( !idxbl ) continue;
3968                 if( idxbl->is_asset ) {
3969                         Asset *asset = (Asset *)idxbl;
3970                         if( asset->format == FILE_REF ) {
3971                                 if( save(item.new_edl, asset->path, 0) )
3972                                         return 1;
3973                         }
3974                 }
3975                 else if( item.new_edl != idxbl )
3976                         item.new_edl->overwrite_clip((EDL*)idxbl);
3977         }
3978         EDL *new_edl = stack.size() ? stack[0].edl : edl;
3979         save(new_edl, path, 1);
3980         return 0;
3981 }
3982
3983 void MWindow::show_plugins()
3984 {
3985         for( Track *track=edl->tracks->first; track; track=track->next ) {
3986                 for( int i=0; i<track->plugin_set.size(); ++i ) {
3987                         PluginSet *plugins = track->plugin_set[i];
3988                         Plugin *plugin = plugins->get_first_plugin();
3989                         for( ; plugin; plugin=(Plugin*)plugin->next ) {
3990                                 if( plugin->plugin_type == PLUGIN_STANDALONE &&
3991                                     plugin->show )
3992                                         show_plugin(plugin);
3993                         }
3994                 }
3995         }
3996 }
3997
3998 void MWindow::clip_to_media()
3999 {
4000         if( edl->session->proxy_scale != 1 ) {
4001                 eprintf("Nesting not allowed when proxy scale != 1");
4002                 return;
4003         }
4004         undo_before();
4005         awindow->gui->stop_vicon_drawing();
4006         int clips_total = session->drag_clips->total;
4007         for( int i=0; i<clips_total; ++i ) {
4008                 EDL *clip = session->drag_clips->values[i];
4009                 time_t dt;      time(&dt);
4010                 struct tm dtm;  localtime_r(&dt, &dtm);
4011                 char path[BCTEXTLEN], *cp = path, *ep = cp+sizeof(path)-1;
4012 // path_basename = "Nested_<date>-<time>_<basename>"
4013                 cp += snprintf(cp, ep-cp, _("Nested_%02d%02d%02d-%02d%02d%02d_"),
4014                         dtm.tm_year+1900, dtm.tm_mon+1, dtm.tm_mday,
4015                         dtm.tm_hour, dtm.tm_min, dtm.tm_sec);
4016                 char *bp = strrchr(clip->local_session->clip_title, '/');
4017                 bp = bp ? bp+1 : clip->local_session->clip_title;
4018                 cp += snprintf(cp, ep-cp, "%s", bp);
4019                 EDL *nested = edl->new_nested_clip(clip, path);
4020                 edl->clips.remove(clip);
4021                 clip->remove_user();
4022                 mainindexes->add_indexable(nested);
4023         }
4024         undo_after(_("clip2media"), LOAD_ALL);
4025         mainindexes->start_build();
4026         awindow->gui->async_update_assets();
4027 }
4028
4029 void MWindow::media_to_clip()
4030 {
4031         undo_before();
4032         int assets_total = session->drag_assets->total;
4033         for( int i=0; i<assets_total; ++i ) {
4034                 Indexable *idxbl = session->drag_assets->values[i];
4035                 if( idxbl->is_asset ) {
4036                         eprintf(_("media is not EDL:\n%s"), idxbl->path);
4037                         continue;
4038                 }
4039                 char clip_title[BCSTRLEN];
4040                 int name_ok = 0;
4041                 while( !name_ok ) {
4042                         name_ok = 1;
4043                         sprintf(clip_title, _("Clip %d"), session->clip_number++);
4044                         for( int i=0; name_ok && i<edl->clips.size(); ++i ) {
4045                                 char *title = edl->clips[i]->local_session->clip_title;
4046                                 if( !strcasecmp(clip_title, title) ) name_ok = 0;
4047                         }
4048                 }
4049                 EDL *nested = (EDL *)idxbl;
4050                 EDL *clip = edl->add_clip(nested);
4051                 strcpy(clip->local_session->clip_title, clip_title);
4052                 snprintf(clip->local_session->clip_notes,
4053                         sizeof(clip->local_session->clip_notes),
4054                         _("From: %s"), nested->path);
4055         }
4056         undo_after(_("media2clip"), LOAD_ALL);
4057         awindow->gui->async_update_assets();
4058 }
4059
4060 int MWindow::create_ref(Asset *asset, EDL *ref)
4061 {
4062         asset->format = FILE_REF;
4063         double secs = ref->tracks->total_length();
4064         int audio_channels = ref->session->audio_channels;
4065         asset->audio_data = audio_channels > 0 ? 1 : 0;
4066         asset->channels = audio_channels;
4067         asset->sample_rate = ref->session->sample_rate;
4068         asset->audio_length = audio_channels > 0 && secs > 0 ?
4069                  secs * asset->sample_rate : 0;
4070         strcpy(asset->acodec, _("reference"));
4071
4072         int video_layers = ref->session->video_channels;
4073         asset->video_data = video_layers > 0 ? 1 : 0;
4074         asset->layers = video_layers > 0 ? 1 : 0;
4075         asset->actual_width = ref->session->output_w;
4076         asset->actual_height = ref->session->output_h;
4077         asset->width = asset->actual_width;
4078         asset->height = asset->actual_height;
4079         asset->frame_rate = ref->session->frame_rate;
4080         asset->video_length = video_layers > 0 && secs > 0 ?
4081                 secs * asset->frame_rate : 0;
4082         strcpy(asset->vcodec, _("reference"));
4083         return 0;
4084 }
4085
4086 void MWindow::update_preferences(Preferences *prefs)
4087 {
4088         if( prefs != preferences )
4089                 preferences->copy_from(prefs);
4090         if( cwindow->playback_engine )
4091                 cwindow->playback_engine->update_preferences(prefs);
4092         for(int i = 0; i < vwindows.size(); i++) {
4093                 VWindow *vwindow = vwindows[i];
4094                 if( !vwindow->is_running() ) continue;
4095                 if( vwindow->playback_engine )
4096                         vwindow->playback_engine->update_preferences(prefs);
4097         }
4098         for(int i = 0; i < zwindows.size(); i++) {
4099                 ZWindow *zwindow = zwindows[i];
4100                 if( !zwindow->is_running() ) continue;
4101                 if( zwindow->zgui->playback_engine )
4102                         zwindow->zgui->playback_engine->update_preferences(prefs);
4103         }
4104 }
4105
4106 void MWindow::update_vwindow()
4107 {
4108         for( int i=0; i<vwindows.size(); ++i ) {
4109                 VWindow *vwindow = vwindows[i];
4110                 if( vwindow->is_running() ) {
4111                         vwindow->gui->lock_window("MWindow::update_vwindow");
4112                         vwindow->update(1);
4113                         vwindow->gui->unlock_window();
4114                 }
4115         }
4116 }
4117
4118 void MWindow::remove_indexfile(Indexable *indexable)
4119 {
4120         if( !indexable->is_asset ) return;
4121 // Erase file
4122         IndexFile::delete_index_files(preferences, indexable);
4123 }
4124
4125 void MWindow::rebuild_indices()
4126 {
4127         for(int i = 0; i < session->drag_assets->total; i++)
4128         {
4129                 Indexable *indexable = session->drag_assets->get(i);
4130 //printf("MWindow::rebuild_indices 1 %s\n", indexable->path);
4131                 remove_indexfile(indexable);
4132 // Schedule index build
4133                 indexable->index_state->remove_user();
4134                 indexable->index_state = new IndexState;
4135                 IndexFile::delete_index_files(preferences, indexable);
4136                 if( indexable->is_asset ) {
4137                         Asset *asset = (Asset *)indexable;
4138                         if( asset->format != FILE_PCM ) {
4139                                 asset->format = FILE_UNKNOWN;
4140                                 asset->reset_audio();
4141                         }
4142                         asset->reset_video();
4143                         remove_from_caches(asset);
4144 //                      File file; // re-probe the asset
4145 //                      file.open_file(preferences, asset, 1, 0);
4146                 }
4147                 mainindexes->add_indexable(indexable);
4148         }
4149 // still in render engine
4150         sync_parameters(CHANGE_ALL);
4151         awindow->gui->async_update_assets();
4152         mainindexes->start_build();
4153 }
4154
4155
4156 void MWindow::get_backup_path(char *path, int len)
4157 {
4158         char *cp = path, *ep = cp + len-1;
4159         cp += snprintf(cp, ep-cp, "%s/", File::get_config_path());
4160         int idx = stack.size();
4161         cp += snprintf(cp, ep-cp, idx ? BACKUPn_FILE : BACKUP_FILE, idx);
4162 }
4163
4164 void MWindow::save_backup()
4165 {
4166         FileXML file;
4167         edl->optimize();
4168         edl->set_path(session->filename);
4169
4170         char backup_path[BCTEXTLEN], backup_path1[BCTEXTLEN];
4171         snprintf(backup_path1, sizeof(backup_path1), "%s/%s",
4172                 File::get_config_path(), BACKUP_FILE1);
4173         get_backup_path(backup_path, sizeof(backup_path));
4174         rename(backup_path, backup_path1);
4175         edl->save_xml(&file, backup_path);
4176         file.terminate_string();
4177         FileSystem fs;
4178         fs.complete_path(backup_path);
4179
4180         if(file.write_to_file(backup_path)) {
4181                 char string2[256];
4182                 sprintf(string2, _("Couldn't open %s for writing."), backup_path);
4183                 gui->show_message(string2);
4184         }
4185         save_undo_data();
4186 }
4187
4188 void MWindow::load_backup()
4189 {
4190         ArrayList<char*> path_list;
4191         path_list.set_array_delete();
4192         char *out_path;
4193         char backup_path[BCTEXTLEN];
4194         get_backup_path(backup_path, sizeof(backup_path));
4195         FileSystem fs;
4196         fs.complete_path(backup_path);
4197
4198         path_list.append(out_path = new char[strlen(backup_path) + 1]);
4199         strcpy(out_path, backup_path);
4200
4201         load_filenames(&path_list, LOADMODE_REPLACE, LOADMODE_EDL_CLIP, 0);
4202         edl->local_session->clip_title[0] = 0;
4203 // This is unique to backups since the path of the backup is different than the
4204 // path of the project.
4205         set_filename(edl->path);
4206         path_list.remove_all_objects();
4207         save_backup();
4208 }
4209
4210
4211 void MWindow::save_undo_data()
4212 {
4213         if( stack.size() > 0 ) return;
4214         if( !preferences->perpetual_session ) return;
4215         char perpetual_path[BCTEXTLEN];
4216         snprintf(perpetual_path, sizeof(perpetual_path), "%s/%s",
4217                 File::get_config_path(), PERPETUAL_FILE);
4218         FILE *fp = fopen(perpetual_path,"w");
4219         if( !fp ) return;
4220         undo->save(fp);
4221         fclose(fp);
4222 }
4223
4224 void MWindow::load_undo_data()
4225 {
4226         if( stack.size() > 0 ) return;
4227         if( !preferences->perpetual_session ) return;
4228         char perpetual_path[BCTEXTLEN];
4229         snprintf(perpetual_path, sizeof(perpetual_path), "%s/%s",
4230                 File::get_config_path(), PERPETUAL_FILE);
4231         FILE *fp = fopen(perpetual_path,"r");
4232         if( !fp ) return;
4233         undo->load(fp);
4234         undo_before();
4235         undo_after(_("perpetual load"), LOAD_ALL);
4236         fclose(fp);
4237 }
4238
4239 void MWindow::remove_undo_data()
4240 {
4241         if( stack.size() > 0 ) return;
4242         char perpetual_path[BCTEXTLEN];
4243         snprintf(perpetual_path, sizeof(perpetual_path), "%s/%s",
4244                 File::get_config_path(), PERPETUAL_FILE);
4245         ::remove(perpetual_path);
4246 }
4247
4248 int MWindow::copy_target(const char *path, const char *target)
4249 {
4250         int ifd = ::open(path, O_RDONLY);
4251         if( ifd < 0 ) {
4252                 eprintf("Cannot open asset: %s", path);
4253                 return 1;
4254         }
4255         int ret = 0;
4256         int ofd = ::open(target, O_CREAT+O_TRUNC+O_WRONLY, 0777);
4257         if( ofd >= 0 ) {
4258                 struct stat st;
4259                 int64_t total_bytes = !fstat(ifd, &st) ? st.st_size : 0;
4260                 char progress_title[BCTEXTLEN];
4261                 sprintf(progress_title, _("Copying: %s\n"), target);
4262                 BC_ProgressBox progress(-1, -1, progress_title, total_bytes);
4263
4264                 int64_t count = 0, len = -1;
4265                 int bfrsz = 0x100000;
4266                 uint8_t *bfr = new uint8_t[bfrsz];
4267                 while( (len=::read(ifd, bfr, bfrsz)) > 0 ) {
4268                         if( len != ::write(ofd, bfr, len) ) {
4269                                 eprintf("Error writing: %s", target);
4270                                 break;
4271                         }
4272                         if( progress.is_cancelled() ) {
4273                                 ret = 1;
4274                                 break;
4275                         }
4276                         progress.update(count += len, 1);
4277                 }
4278                 delete [] bfr;
4279                 ::close(ofd);
4280
4281                 progress.stop_progress();
4282                 if( len < 0 ) {
4283                         eprintf("Error reading: %s", path);
4284                         ret = 1;
4285                 }
4286         }
4287         else
4288                 eprintf("Cannot create asset target: %s", target);
4289         ::close(ifd);
4290         return ret;
4291 }
4292
4293 int MWindow::link_target(const char *real_path, const char *link_path, int relative)
4294 {
4295         char target[BCTEXTLEN];
4296         if( relative ) {
4297                 const char *bp = real_path, *cp = bp;
4298                 const char *lp = link_path, *np = lp;
4299                 char *tp = target, *ep = tp+sizeof(target)-1, lch;
4300                 while( *lp && *bp && (lch=*lp++) == *bp++ ) {
4301                         if( lch == '/' ) { np = lp;  cp = bp; }
4302                 }
4303                 while( tp<ep && *np ) {
4304                         if( *np++ != '/' ) continue;
4305                         *tp++ = '.';  *tp++ = '.';  *tp++ = '/';
4306                 }
4307                 while( tp<ep && *cp ) *tp++ = *cp++;
4308                 *tp = 0;
4309         }
4310         else
4311                 strcpy(target, real_path);
4312         if( symlink(target, link_path) ) {
4313                 eprintf("Cannot create symlink: %s", link_path);
4314                 return 1;
4315         }
4316         return 0;
4317 }
4318
4319 void MWindow::save_project(const char *dir, int save_mode, int overwrite, int reload)
4320 {
4321         char dir_path[BCTEXTLEN];
4322         strcpy(dir_path, dir);
4323         FileSystem fs;
4324         fs.complete_path(dir_path);
4325
4326         struct stat st;
4327         if( !stat(dir_path, &st) ) {
4328                 if( !S_ISDIR(st.st_mode) ) {
4329                         eprintf("Path exists and is not a directory\n%s", dir_path);
4330                         return;
4331                 }
4332         }
4333         else {
4334                 if( mkdir(dir_path, S_IRWXU | S_IRWXG | S_IRWXO) ) {
4335                         eprintf("Cannot create directory\n%s", dir_path);
4336                         return;
4337                 }
4338         }
4339         char *real_dir = realpath(dir_path, 0);
4340         strcpy(dir_path, real_dir);
4341         free(real_dir);
4342
4343         EDL *save_edl = new EDL;
4344         save_edl->create_objects();
4345         save_edl->copy_all(edl);
4346
4347         char progress_title[BCTEXTLEN];
4348         sprintf(progress_title, _("Saving to %s:\n"), dir);
4349         int total_assets = save_edl->assets->total();
4350         gui->lock_window("MWindow::save_project");
4351         MainProgressBar *progress = mainprogress->start_progress(progress_title, total_assets);
4352         gui->unlock_window();
4353
4354         int ret = 0;
4355         Asset *current = save_edl->assets->first;
4356         for( int i=0; !ret && current; ++i, current=NEXT ) {
4357                 char *path = current->path;
4358                 if( ::stat(path, &st) ) {
4359                         eprintf("Asset not found: %s", path);
4360                         continue;
4361                 }
4362                 char *real_path = realpath(path, 0);
4363                 const char *cp = strrchr(path, '/'), *bp = !cp ? path : cp+1;
4364                 char link_path[BCTEXTLEN];
4365                 snprintf(link_path, sizeof(link_path), "%s/%s", dir_path, bp);
4366                 int skip = 0;
4367                 if( strcmp(real_path, link_path) ) {
4368                         if( !::lstat(link_path, &st) ) {
4369                                 if( overwrite )
4370                                         ::remove(link_path);
4371                                 else
4372                                         skip = 1;
4373                         }
4374                 }
4375                 else {
4376                         eprintf("copy/link to self, skippped: %s", path);
4377                         skip = 1;
4378                 }
4379                 if( !skip ) {
4380                         if( save_mode == SAVE_PROJECT_COPY ) {
4381                                 if( copy_target(real_path, link_path) )
4382                                         ret = 1;
4383                         }
4384                         else {
4385                                 link_target(real_path, link_path,
4386                                         save_mode == SAVE_PROJECT_RELLINK ? 1 : 0);
4387                         }
4388                 }
4389                 free(real_path);
4390                 strcpy(path, link_path);
4391
4392                 if( progress->is_cancelled() ) break;
4393                 progress->update(i);
4394         }
4395
4396         progress->stop_progress();
4397         delete progress;
4398
4399         char *cp = strrchr(dir_path,'/');
4400         char *bp = cp ? cp+1 : dir_path;
4401         char filename[BCTEXTLEN];
4402         snprintf(filename, sizeof(filename), "%s/%s.xml", dir_path, bp);
4403         save_edl->set_path(filename);
4404         FileXML file;
4405         save_edl->save_xml(&file, filename);
4406         file.terminate_string();
4407
4408         if( !file.write_to_file(filename) ) {
4409                 char string[BCTEXTLEN];
4410                 sprintf(string, _("\"%s\" %dC written"), filename, (int)strlen(file.string()));
4411                 gui->lock_window("SaveProject::run 2");
4412                 gui->show_message(string);
4413                 gui->unlock_window();
4414                 gui->mainmenu->add_load(filename);
4415         }
4416         else
4417                 eprintf(_("Couldn't open %s."), filename);
4418
4419         save_edl->remove_user();
4420
4421         if( reload ) {
4422                 gui->lock_window("MWindow::save_project");
4423                 ArrayList<char*> filenames;
4424                 filenames.append(filename);
4425                 load_filenames(&filenames);
4426                 gui->unlock_window();
4427         }
4428 }
4429
4430
4431 static inline int gcd(int m, int n)
4432 {
4433         int r;
4434         if( m < n ) { r = m;  m = n;  n = r; }
4435         while( (r = m % n) != 0 ) { m = n;  n = r; }
4436         return n;
4437 }
4438
4439 int MWindow::create_aspect_ratio(float &w, float &h, int width, int height)
4440 {
4441         w = 1;  h = 1;
4442         if(!width || !height) return 1;
4443         if( width == 720 && (height == 480 || height == 576) ) {
4444                 w = 4;  h = 3;  return 0; // for NTSC and PAL
4445         }
4446         double ar = (double)width / height;
4447 // square-ish pixels
4448         if( EQUIV(ar, 1.0000) ) return 0;
4449         if( EQUIV(ar, 1.3333) ) { w = 4;  h = 3;  return 0; }
4450         if( EQUIV(ar, 1.7777) ) { w = 16; h = 9;  return 0; }
4451         if( EQUIV(ar, 2.1111) ) { w = 19; h = 9;  return 0; }
4452         if( EQUIV(ar, 2.2222) ) { w = 20; h = 9;  return 0; }
4453         if( EQUIV(ar, 2.3333) ) { w = 21; h = 9;  return 0; }
4454         int ww = width, hh = height;
4455         // numerator, denominator must be under mx
4456         int mx = 255, n = gcd(ww, hh);
4457         if( n > 1 ) { ww /= n; hh /= n; }
4458         // search near height in case extra/missing lines
4459         if( ww >= mx || hh >= mx ) {
4460                 double err = height;  // +/- 2 percent height
4461                 for( int m=2*height/100, i=1; m>0; i=i>0 ? -i : (--m, -i+1) ) {
4462                         int iw = width, ih = height+i;
4463                         if( (n=gcd(iw, ih)) > 1 ) {
4464                                 int u = iw/n;  if( u >= mx ) continue;
4465                                 int v = ih/n;  if( v >= mx ) continue;
4466                                 double r = (double) u/v, er = fabs(ar-r);
4467                                 if( er >= err ) continue;
4468                                 err = er;  ww = u;  hh = v;
4469                         }
4470                 }
4471         }
4472
4473         w = ww;  h = hh;
4474         return 0;
4475 }
4476
4477 void MWindow::reset_caches(int locked)
4478 {
4479         if( locked ) gui->unlock_window();
4480         awindow->gui->stop_vicon_drawing(1);
4481         if( cwindow->playback_engine )
4482                 cwindow->playback_engine->create_cache();
4483         for(int i = 0; i < vwindows.size(); i++) {
4484                 VWindow *vwindow = vwindows[i];
4485                 if( !vwindow->is_running() ) continue;
4486                 if( !vwindow->playback_engine ) continue;
4487                 vwindow->playback_engine->create_cache();
4488         }
4489         gui->lock_window("MWindow::reset_caches");
4490         frame_cache->remove_all();
4491         wave_cache->remove_all();
4492         audio_cache->remove_all();
4493         video_cache->remove_all();
4494         if( !locked ) gui->unlock_window();
4495 }
4496
4497 void MWindow::remove_from_caches(Indexable *idxbl)
4498 {
4499         awindow->gui->stop_vicon_drawing(1);
4500         frame_cache->remove_item(idxbl);
4501         wave_cache->remove_item(idxbl);
4502         if( gui->render_engine &&
4503             gui->render_engine_id == idxbl->id ) {
4504                 delete gui->render_engine;
4505                 gui->render_engine = 0;
4506         }
4507         gui->resource_thread->close_indexable(idxbl);
4508         if( !idxbl->is_asset ) return;
4509         Asset *asset = (Asset *)idxbl;
4510         audio_cache->delete_entry(asset);
4511         video_cache->delete_entry(asset);
4512         if( cwindow->playback_engine && cwindow->playback_engine->audio_cache )
4513                 cwindow->playback_engine->audio_cache->delete_entry(asset);
4514         if( cwindow->playback_engine && cwindow->playback_engine->video_cache )
4515                 cwindow->playback_engine->video_cache->delete_entry(asset);
4516         for(int i = 0; i < vwindows.size(); i++) {
4517                 VWindow *vwindow = vwindows[i];
4518                 if( !vwindow->is_running() ) continue;
4519                 if( !vwindow->playback_engine ) continue;
4520                 if( vwindow->playback_engine->audio_cache )
4521                         vwindow->playback_engine->audio_cache->delete_entry(asset);
4522                 if( vwindow->playback_engine->video_cache )
4523                         vwindow->playback_engine->video_cache->delete_entry(asset);
4524         }
4525         for(int i = 0; i < zwindows.size(); i++) {
4526                 ZWindow *zwindow = zwindows[i];
4527                 if( !zwindow->is_running() ) continue;
4528                 if( zwindow->zgui->playback_engine->audio_cache )
4529                         zwindow->zgui->playback_engine->audio_cache->delete_entry(asset);
4530                 if( zwindow->zgui->playback_engine->video_cache )
4531                         zwindow->zgui->playback_engine->video_cache->delete_entry(asset);
4532         }
4533         awindow->gui->start_vicon_drawing();
4534 }
4535
4536 void MWindow::remove_assets_from_project(int push_undo, int redraw, int delete_indexes,
4537                 ArrayList<Indexable*> *drag_assets, ArrayList<EDL*> *drag_clips)
4538 {
4539         awindow->gui->stop_vicon_drawing(1);
4540
4541 // Remove from VWindow.
4542         if( drag_clips ) {
4543                 for(int i = 0; i < drag_clips->total; i++) {
4544                         for(int j = 0; j < vwindows.size(); j++) {
4545                                 VWindow *vwindow = vwindows[j];
4546                                 if( !vwindow->is_running() ) continue;
4547                                 if(drag_clips->get(i) == vwindow->get_edl()) {
4548                                         vwindow->gui->lock_window("MWindow::remove_assets_from_project 1");
4549                                         vwindow->delete_source(1, 1);
4550                                         vwindow->gui->unlock_window();
4551                                 }
4552                         }
4553                 }
4554         }
4555
4556         if( drag_assets ) {
4557                 for(int i = 0; i < drag_assets->size(); i++) {
4558                         for(int j = 0; j < vwindows.size(); j++) {
4559                                 VWindow *vwindow = vwindows[j];
4560                                 if( !vwindow->is_running() ) continue;
4561                                 if(drag_assets->get(i) == vwindow->get_source()) {
4562                                         vwindow->gui->lock_window("MWindow::remove_assets_from_project 2");
4563                                         vwindow->delete_source(1, 1);
4564                                         vwindow->gui->unlock_window();
4565                                 }
4566                         }
4567                 }
4568
4569                 for(int i = 0; i < drag_assets->total; i++) {
4570                         Indexable *indexable = drag_assets->get(i);
4571                         if(indexable->is_asset) remove_from_caches(indexable);
4572                 }
4573
4574                 if( delete_indexes ) {
4575                         for(int i = 0; i < drag_assets->size(); i++) {
4576                                 Indexable *indexable = drag_assets->get(i);
4577                                 remove_indexfile(indexable);
4578                         }
4579                 }
4580         }
4581
4582 //printf("MWindow::rebuild_indices 1 %s\n", indexable->path);
4583         if(push_undo) undo_before();
4584         if(drag_assets) edl->remove_from_project(drag_assets);
4585         if(drag_clips) edl->remove_from_project(drag_clips);
4586         if(redraw) save_backup();
4587         if(push_undo) undo_after(_("remove assets"), LOAD_ALL);
4588         if(redraw) {
4589                 restart_brender();
4590
4591                 gui->lock_window("MWindow::remove_assets_from_project 3");
4592                 gui->update(1, NORMAL_DRAW, 1, 1, 0, 1, 0);
4593                 gui->unlock_window();
4594
4595         // Removes from playback here
4596                 sync_parameters(CHANGE_ALL);
4597         }
4598
4599         awindow->gui->async_update_assets();
4600 }
4601
4602 void MWindow::remove_assets_from_disk()
4603 {
4604         remove_assets_from_project(1, 1, 1,
4605                 session->drag_assets, session->drag_clips);
4606
4607 // Remove from disk
4608         for(int i = 0; i < session->drag_assets->total; i++)
4609         {
4610                 remove(session->drag_assets->get(i)->path);
4611         }
4612 }
4613
4614 void MWindow::dump_plugins(FILE *fp)
4615 {
4616         if( !plugindb ) return;
4617         for(int i = 0; i < plugindb->total; i++)
4618         {
4619                 fprintf(fp, "type=%d audio=%d video=%d rt=%d multi=%d"
4620                         " synth=%d transition=%d theme=%d %s\n",
4621                         plugindb->get(i)->plugin_type,
4622                         plugindb->get(i)->audio,
4623                         plugindb->get(i)->video,
4624                         plugindb->get(i)->realtime,
4625                         plugindb->get(i)->multichannel,
4626                         plugindb->get(i)->get_synthesis(),
4627                         plugindb->get(i)->transition,
4628                         plugindb->get(i)->theme,
4629                         plugindb->get(i)->title);
4630         }
4631 }
4632
4633 void MWindow::dump_edl(FILE *fp)
4634 {
4635         if( !edl ) return;
4636         edl->dump(fp);
4637 }
4638
4639 void MWindow::dump_undo(FILE *fp)
4640 {
4641         if( !undo ) return;
4642         undo->dump(fp);
4643 }
4644
4645 void MWindow::dump_exe(FILE *fp)
4646 {
4647         char proc_path[BCTEXTLEN], exe_path[BCTEXTLEN];
4648         sprintf(proc_path, "/proc/%d/exe", (int)getpid());
4649
4650         int ret = -1, n = 100;
4651         for( int len; (len=readlink(proc_path, exe_path, sizeof(exe_path)))>0; --n ) {
4652                 exe_path[len] = 0;  strcpy(proc_path, exe_path);
4653                 ret = 0;
4654         }
4655         if( n < 0 || ret < 0 ) { fprintf(fp,"readlink: %m\n"); return; }
4656
4657         struct stat st;
4658         if( stat(proc_path,&st) ) { fprintf(fp,"stat: %m\n"); return; }
4659         fprintf(fp, "path: %s = %9jd bytes\n",proc_path,st.st_size);
4660         struct tm *tm = localtime(&st.st_mtime);
4661         char mtime[256];
4662         strftime(mtime, sizeof(mtime), "%F %T", tm);
4663         fprintf(fp,"mtime: %s\n", mtime);
4664 #if 0
4665 // people hit ctl-c waiting for this
4666         int fd = open(proc_path,O_RDONLY+O_NONBLOCK);
4667         if( fd < 0 ) { fprintf(fp,"open: %m\n"); return; }
4668         uint8_t *bfr = 0;
4669         int64_t bfrsz = 0;
4670         int64_t pagsz = sysconf(_SC_PAGE_SIZE);
4671         int64_t maxsz = 1024*pagsz;
4672         int64_t size = st.st_size, pos = 0;
4673         SHA1 sha1;
4674         while( (bfrsz = size-pos) > 0 ) {
4675                 if( bfrsz > maxsz ) bfrsz = maxsz;
4676                 bfr = (uint8_t *)mmap(NULL, bfrsz, PROT_READ,
4677                         MAP_PRIVATE+MAP_NORESERVE+MAP_POPULATE, fd, pos);
4678                 if( bfr == MAP_FAILED ) break;
4679                 sha1.addBytes(bfr, bfrsz);
4680                 munmap(bfr, bfrsz);
4681                 pos += bfrsz;
4682         }
4683         close(fd);
4684         ret = pos < size ? EIO : 0;
4685         fprintf(fp, "SHA1: ");
4686         uint8_t digest[20];  sha1.computeHash(digest);
4687         for( int i=0; i<20; ++i ) fprintf(fp, "%02x", digest[i]);
4688         if( ret < 0 ) fprintf(fp, " (ret %d)", ret);
4689         if( pos < st.st_size ) fprintf(fp, " (pos %jd)", pos);
4690 #endif
4691         fprintf(fp, "\n");
4692 }
4693
4694 void MWindow::dump_caches(FILE *fp)
4695 {
4696         fprintf(fp, "audio cache: ");
4697         audio_cache->dump(fp);
4698         fprintf(fp, "video cache: ");
4699         video_cache->dump(fp);
4700 }
4701
4702 void MWindow::trap_hook(FILE *fp, void *vp)
4703 {
4704         MWindow *mwindow = (MWindow *)vp;
4705 //      fprintf(fp, "\nPLUGINS:\n");
4706 //      mwindow->dump_plugins(fp);
4707         fprintf(fp, "\nEDL:\n");
4708         mwindow->dump_edl(fp);
4709         fprintf(fp, "\nUNDO:\n");
4710         mwindow->dump_undo(fp);
4711         fprintf(fp, "\nEXE: %s\n", AboutPrefs::build_timestamp);
4712         mwindow->dump_exe(fp);
4713         fprintf(fp, "\nCACHES:\n");
4714         mwindow->dump_caches(fp);
4715 }
4716
4717
4718
4719
4720
4721
4722 int MWindow::save_defaults()
4723 {
4724         gui->save_defaults(defaults);
4725         edl->save_defaults(defaults);
4726         session->save_defaults(defaults);
4727         preferences->save_defaults(defaults);
4728
4729         for(int i = 0; i < plugin_guis->total; i++)
4730         {
4731 // Pointer comparison
4732                 plugin_guis->get(i)->save_defaults();
4733         }
4734         awindow->save_defaults(defaults);
4735
4736         defaults->save();
4737         return 0;
4738 }
4739
4740 int MWindow::run_script(FileXML *script)
4741 {
4742         int result = 0, result2 = 0;
4743         while(!result && !result2)
4744         {
4745                 result = script->read_tag();
4746                 if(!result)
4747                 {
4748                         if(script->tag.title_is("new_project"))
4749                         {
4750 // Run new in immediate mode.
4751 //                              gui->mainmenu->new_project->run_script(script);
4752                         }
4753                         else
4754                         if(script->tag.title_is("record"))
4755                         {
4756 // Run record as a thread.  It is a terminal command.
4757                                 ;
4758 // Will read the complete scipt file without letting record read it if not
4759 // terminated.
4760                                 result2 = 1;
4761                         }
4762                         else
4763                         {
4764                                 printf("MWindow::run_script: Unrecognized command: %s\n",script->tag.get_title() );
4765                         }
4766                 }
4767         }
4768         return result2;
4769 }
4770
4771 // ================================= synchronization
4772
4773
4774 int MWindow::interrupt_indexes()
4775 {
4776         mainprogress->cancelled = 1;
4777         mainindexes->interrupt_build();
4778         return 0;
4779 }
4780
4781
4782
4783 void MWindow::next_time_format()
4784 {
4785         switch( edl->session->time_format ) {
4786         case TIME_HMS:          edl->session->time_format = TIME_HMSF;         break;
4787         case TIME_HMSF:         edl->session->time_format = TIME_TIMECODE;     break;
4788         case TIME_TIMECODE:     edl->session->time_format = TIME_FRAMES;       break;
4789         case TIME_FRAMES:       edl->session->time_format = TIME_SAMPLES;      break;
4790         case TIME_SAMPLES:      edl->session->time_format = TIME_SAMPLES_HEX;  break;
4791         case TIME_SAMPLES_HEX:  edl->session->time_format = TIME_SECONDS;      break;
4792         case TIME_SECONDS:      edl->session->time_format = TIME_FEET_FRAMES;  break;
4793         case TIME_FEET_FRAMES:  edl->session->time_format = TIME_HMS;          break;
4794         }
4795         time_format_common();
4796 }
4797
4798 void MWindow::prev_time_format()
4799 {
4800         switch( edl->session->time_format ) {
4801         case TIME_HMS:          edl->session->time_format = TIME_FEET_FRAMES;  break;
4802         case TIME_HMSF:         edl->session->time_format = TIME_HMS;          break;
4803         case TIME_TIMECODE:     edl->session->time_format = TIME_HMSF;         break;
4804         case TIME_FRAMES:       edl->session->time_format = TIME_TIMECODE;     break;
4805         case TIME_SAMPLES:      edl->session->time_format = TIME_FRAMES;       break;
4806         case TIME_SAMPLES_HEX:  edl->session->time_format = TIME_SAMPLES;      break;
4807         case TIME_SECONDS:      edl->session->time_format = TIME_SAMPLES_HEX;  break;
4808         case TIME_FEET_FRAMES:  edl->session->time_format = TIME_SECONDS;      break;
4809         }
4810
4811         time_format_common();
4812 }
4813
4814 void MWindow::time_format_common()
4815 {
4816         gui->lock_window("MWindow::next_time_format");
4817         gui->redraw_time_dependancies();
4818
4819
4820         char string[BCTEXTLEN], string2[BCTEXTLEN];
4821         sprintf(string, _("Using %s"), Units::print_time_format(edl->session->time_format, string2));
4822         gui->show_message(string);
4823         gui->flush();
4824         gui->unlock_window();
4825 }
4826
4827
4828 int MWindow::set_filename(const char *filename)
4829 {
4830         if( filename != session->filename )
4831                 strcpy(session->filename, filename);
4832         if( filename != edl->path )
4833                 strcpy(edl->path, filename);
4834         return set_titlebar(filename);
4835 }
4836
4837 int MWindow::set_titlebar(const char *filename)
4838 {
4839         if( !gui ) return 0;
4840         if( filename[0] ) {
4841                 FileSystem dir;
4842                 char string[BCTEXTLEN], string2[BCTEXTLEN];
4843                 dir.extract_name(string, filename);
4844                 sprintf(string2, PROGRAM_NAME ": %s", string);
4845                 gui->set_title(string2);
4846         }
4847         else
4848                 gui->set_title(PROGRAM_NAME);
4849         return 0;
4850 }
4851
4852
4853 int MWindow::set_loop_boundaries()
4854 {
4855         double start = edl->local_session->get_selectionstart();
4856         double end = edl->local_session->get_selectionend();
4857
4858         if(start !=
4859                 end)
4860         {
4861                 ;
4862         }
4863         else
4864         if(edl->tracks->total_length())
4865         {
4866                 start = 0;
4867                 end = edl->tracks->total_length();
4868         }
4869         else
4870         {
4871                 start = end = 0;
4872         }
4873
4874         if(edl->local_session->loop_playback && start != end)
4875         {
4876                 edl->local_session->loop_start = start;
4877                 edl->local_session->loop_end = end;
4878         }
4879         return 0;
4880 }
4881
4882
4883
4884
4885
4886
4887
4888 int MWindow::reset_meters()
4889 {
4890         cwindow->gui->lock_window("MWindow::reset_meters 1");
4891         cwindow->gui->meters->reset_meters();
4892         cwindow->gui->unlock_window();
4893
4894         for(int j = 0; j < vwindows.size(); j++) {
4895                 VWindow *vwindow = vwindows[j];
4896                 if( !vwindow->is_running() ) continue;
4897                 vwindow->gui->lock_window("MWindow::reset_meters 2");
4898                 vwindow->gui->meters->reset_meters();
4899                 vwindow->gui->unlock_window();
4900         }
4901
4902         lwindow->gui->lock_window("MWindow::reset_meters 3");
4903         lwindow->gui->panel->reset_meters();
4904         lwindow->gui->unlock_window();
4905
4906         gui->lock_window("MWindow::reset_meters 4");
4907         gui->reset_meters();
4908         gui->unlock_window();
4909         return 0;
4910 }
4911
4912
4913 void MWindow::resync_guis()
4914 {
4915 // Update GUIs
4916         restart_brender();
4917         gui->lock_window("MWindow::resync_guis");
4918         gui->update(1, NORMAL_DRAW, 1, 1, 1, 1, 0);
4919         gui->unlock_window();
4920
4921         cwindow->gui->lock_window("MWindow::resync_guis");
4922         cwindow->gui->resize_event(cwindow->gui->get_w(),
4923                 cwindow->gui->get_h());
4924         int channels = edl->session->audio_channels;
4925         cwindow->gui->meters->set_meters(channels, 1);
4926         cwindow->gui->flush();
4927         cwindow->gui->unlock_window();
4928
4929         for(int i = 0; i < vwindows.size(); i++) {
4930                 VWindow *vwindow = vwindows[i];
4931                 if( !vwindow->is_running() ) continue;
4932                 vwindow->gui->lock_window("MWindow::resync_guis");
4933                 vwindow->gui->resize_event(vwindow->gui->get_w(),
4934                         vwindow->gui->get_h());
4935                 vwindow->gui->meters->set_meters(channels, 1);
4936                 vwindow->gui->flush();
4937                 vwindow->gui->unlock_window();
4938         }
4939
4940         lwindow->gui->lock_window("MWindow::resync_guis");
4941         lwindow->gui->panel->set_meters(channels, 1);
4942         lwindow->gui->flush();
4943         lwindow->gui->unlock_window();
4944 #ifdef GLx4
4945 // Warn user
4946         if(((edl->session->output_w % 4) ||
4947                 (edl->session->output_h % 4)) &&
4948                 edl->session->playback_config->vconfig->driver == PLAYBACK_X11_GL)
4949         {
4950                 MainError::show_error(
4951                         _("This project's dimensions are not multiples of 4 so\n"
4952                         "it can't be rendered by OpenGL."));
4953         }
4954 #endif
4955
4956 // Flash frame
4957         sync_parameters(CHANGE_ALL);
4958 }
4959
4960 int MWindow::select_asset(Asset *asset, int vstream, int astream, int delete_tracks)
4961 {
4962         File *file = new File;
4963         EDLSession *session = edl->session;
4964         double old_framerate = session->frame_rate;
4965         double old_samplerate = session->sample_rate;
4966         int old_auto_keyframes = session->auto_keyframes;
4967         session->auto_keyframes = 0;
4968         int result = file->open_file(preferences, asset, 1, 0);
4969         if( !result && delete_tracks > 0 )
4970                 undo_before();
4971         int video_layers = asset->get_video_layers();
4972         if( !result && asset->video_data && vstream < video_layers ) {
4973                 // try to get asset up to date, may fail
4974                 file->select_video_stream(asset, vstream);
4975                 // either way use what was/is there.
4976                 double framerate = asset->get_frame_rate();
4977                 int width = asset->get_w();
4978                 int height = asset->get_h();
4979 #ifdef GLx4
4980                 // must be multiple of 4 for opengl
4981                 width = (width+3) & ~3;  height = (height+3) & ~3;
4982 #endif
4983                 int driver = session->playback_config->vconfig->driver;
4984                 int color_model = file->get_best_colormodel(asset, driver);
4985 //              color_model = BC_CModels::is_yuv(color_model) ?
4986 //                              BC_CModels::has_alpha(color_model) ? BC_YUVA8888 : BC_YUV888 :
4987 //                      BC_CModels::is_float(color_model) ?
4988 //                              BC_CModels::has_alpha(color_model) ? BC_RGBA_FLOAT : BC_RGB_FLOAT :
4989 //                              BC_CModels::has_alpha(color_model) ? BC_RGBA8888 : BC_RGB888;
4990 // have alpha for now
4991                 color_model = BC_CModels::is_yuv(color_model) ?  BC_YUVA8888 :
4992                         BC_CModels::is_float(color_model) ? BC_RGBA_FLOAT : BC_RGBA8888;
4993                 session->color_model = color_model;
4994                 session->output_w = width;
4995                 session->output_h = height;
4996                 session->frame_rate = framerate;
4997                 // not, asset->actual_width/actual_height
4998                 asset->width = session->output_w;
4999                 asset->height = session->output_h;
5000                 asset->frame_rate = session->frame_rate;
5001                 create_aspect_ratio(session->aspect_w, session->aspect_h,
5002                         session->output_w, session->output_h);
5003                 Track *track = edl->tracks->first;
5004                 for( Track *next_track=0; track; track=next_track ) {
5005                         next_track = track->next;
5006                         if( track->data_type != TRACK_VIDEO ) continue;
5007                         if( delete_tracks ) {
5008                                 Edit *edit = track->edits->first;
5009                                 for( Edit *next_edit=0; edit; edit=next_edit ) {
5010                                         next_edit = edit->next;
5011                                         if( edit->channel != vstream ||
5012                                             !edit->asset || !edit->asset->is_asset ||
5013                                             !asset->equivalent(*edit->asset,1,1,edl) )
5014                                                 delete edit;
5015                                 }
5016                         }
5017                         if( track->edits->first ) {
5018                                 track->track_w = edl->session->output_w;
5019                                 track->track_h = edl->session->output_h;
5020                         }
5021                         else if( delete_tracks )
5022                                 edl->tracks->delete_track(track, 0);
5023                 }
5024                 edl->retrack();
5025                 edl->resample(old_framerate, session->frame_rate, TRACK_VIDEO);
5026         }
5027         if( !result && asset->audio_data && asset->channels > 0 ) {
5028                 session->sample_rate = asset->get_sample_rate();
5029                 int64_t channel_mask = 0;
5030                 int astrm = !asset->video_data || vstream >= video_layers ? -1 :
5031                         file->get_audio_for_video(vstream, astream, channel_mask);
5032                 if( astrm >= 0 ) file->select_audio_stream(asset, astrm);
5033                 if( astrm < 0 || !channel_mask ) channel_mask = (1<<asset->channels)-1;
5034                 int channels = 0;
5035                 for( uint64_t mask=channel_mask; mask!=0; mask>>=1 ) channels += mask & 1;
5036                 if( channels < 1 ) channels = 1;
5037                 if( channels > 6 ) channels = 6;
5038                 session->audio_tracks = session->audio_channels = channels;
5039
5040                 int *achannel_positions = preferences->channel_positions[session->audio_channels-1];
5041                 memcpy(&session->achannel_positions, achannel_positions, sizeof(session->achannel_positions));
5042                 remap_audio(MWindow::AUDIO_1_TO_1);
5043
5044                 if( delete_tracks ) {
5045                         Track *track = edl->tracks->first;
5046                         for( Track *next_track=0; track; track=next_track ) {
5047                                 next_track = track->next;
5048                                 if( track->data_type != TRACK_AUDIO ) continue;
5049                                 Edit *edit = track->edits->first;
5050                                         for( Edit *next_edit=0; edit; edit=next_edit ) {
5051                                         next_edit = edit->next;
5052                                         if( !((1<<edit->channel) & channel_mask) ||
5053                                             !edit->asset || !edit->asset->is_asset ||
5054                                             !asset->equivalent(*edit->asset,1,1,edl) )
5055                                                 delete edit;
5056                                 }
5057                                 if( !track->edits->first )
5058                                         edl->tracks->delete_track(track, 0);
5059                         }
5060                 }
5061                 edl->rechannel();
5062                 edl->resample(old_samplerate, session->sample_rate, TRACK_AUDIO);
5063         }
5064         delete file;
5065         session->auto_keyframes = old_auto_keyframes;
5066         if( !result && delete_tracks > 0 ) {
5067                 save_backup();
5068                 undo_after(_("select asset"), LOAD_ALL);
5069         }
5070         resync_guis();
5071         return result;
5072 }
5073
5074 int MWindow::select_asset(int vtrack, int delete_tracks)
5075 {
5076         Track *track = edl->tracks->get(vtrack, TRACK_VIDEO);
5077         if( !track )
5078                 track = edl->tracks->get(vtrack, TRACK_AUDIO);
5079         if( !track ) return 1;
5080         Edit *edit = track->edits->first;
5081         if( !edit ) return 1;
5082         Asset *asset = edit->asset;
5083         if( !asset || !asset->is_asset ) return 1;
5084         return select_asset(asset, edit->channel, 0, delete_tracks);
5085 }
5086
5087 void MWindow::dump_plugindb(FILE *fp)
5088 {
5089         if( !plugindb ) return;
5090         for(int i = 0; i < plugindb->total; i++)
5091                 plugindb->get(i)->dump(fp);
5092 }
5093
5094 FloatAuto* MWindow::get_float_auto(PatchGUI *patch,int idx)
5095 {
5096         Auto *current = 0;
5097         double unit_position = edl->local_session->get_selectionstart(1);
5098         unit_position = patch->track->to_units(unit_position, 0);
5099
5100         FloatAutos *ptr = (FloatAutos*)patch->track->automation->autos[idx];
5101         return (FloatAuto*)ptr->get_prev_auto( (long)unit_position, PLAY_FORWARD, current);
5102 }
5103
5104 IntAuto* MWindow::get_int_auto(PatchGUI *patch,int idx)
5105 {
5106         Auto *current = 0;
5107         double unit_position = edl->local_session->get_selectionstart(1);
5108         unit_position = patch->track->to_units(unit_position, 0);
5109
5110         IntAutos *ptr = (IntAutos*)patch->track->automation->autos[idx];
5111         return (IntAuto*)ptr->get_prev_auto( (long)unit_position, PLAY_FORWARD, current);
5112 }
5113
5114 PanAuto* MWindow::get_pan_auto(PatchGUI *patch)
5115 {
5116         Auto *current = 0;
5117         double unit_position = edl->local_session->get_selectionstart(1);
5118         unit_position = patch->track->to_units(unit_position, 0);
5119
5120         PanAutos *ptr = (PanAutos*)patch->track->automation->autos[AUTOMATION_PAN];
5121         return (PanAuto*)ptr->get_prev_auto( (long)unit_position, PLAY_FORWARD, current);
5122 }
5123
5124 PatchGUI *MWindow::get_patchgui(Track *track)
5125 {
5126         PatchGUI *patchgui = 0;
5127         TimelinePane **panes = gui->pane;
5128         for( int i=0; i<TOTAL_PANES && !patchgui; ++i ) {
5129                 if( !panes[i] ) continue;
5130                 PatchBay *patchbay = panes[i]->patchbay;
5131                 if( !patchbay ) continue;
5132                 for( int j=0; j<patchbay->patches.total && !patchgui; ++j ) {
5133                         if( patchbay->patches.values[j]->track == track )
5134                                 patchgui = patchbay->patches.values[j];
5135                 }
5136         }
5137         return patchgui;
5138 }
5139
5140 int MWindow::get_cpus(int out_w, int out_h)
5141 {
5142         if( !out_w ) out_w = edl->session->output_w;
5143         if( !out_h ) out_h = edl->session->output_h;
5144         int cpus = out_w*out_h/0x80000 + 1;
5145         if( cpus > preferences->processors )
5146                 cpus = preferences->processors;
5147         return cpus;
5148 }
5149 int MWindow::get_cpus()
5150 {
5151         return get_cpus(edl->session->output_w, edl->session->output_h);
5152 }
5153
5154 void MWindow::draw_trackmovement()
5155 {
5156         if( !redraw_tracks )
5157                 redraw_tracks = new DrawTrackMovement(this);
5158         redraw_tracks->start();
5159 }
5160
5161 DrawTrackMovement::DrawTrackMovement(MWindow *mwindow)
5162  : Thread(1, 0, 0)
5163 {
5164         this->mwindow = mwindow;
5165 }
5166 DrawTrackMovement::~DrawTrackMovement()
5167 {
5168         join();
5169 }
5170
5171 void DrawTrackMovement::run()
5172 {
5173         mwindow->gui->lock_window("DrawTrackMovement::run");
5174         mwindow->edl->tracks->update_y_pixels(mwindow->theme);
5175         mwindow->gui->draw_trackmovement();
5176         mwindow->gui->unlock_window();
5177 }
5178
5179
5180 ConfirmRefWindow::ConfirmRefWindow(MWindow *mwindow, char *path,
5181                 int px, int py, int cw, int ch)
5182  : BC_Window(_(PROGRAM_NAME ": Confirm update"), px, py, cw, ch, cw, ch)
5183 {
5184         this->mwindow = mwindow;
5185         this->path = path;
5186 }
5187
5188 ConfirmRefWindow::~ConfirmRefWindow()
5189 {
5190 }
5191
5192 void ConfirmRefWindow::create_objects()
5193 {
5194         lock_window("ConfirmRefWindow::create_objects()");
5195         int x = xS(10), y = yS(10), pad = yS(5);
5196         BC_Title *title;
5197         add_subwindow(title = new BC_Title(x, y, _("FileREF not updated:")));
5198         y += title->get_h() + pad;
5199         BC_TextBox *text_box;
5200         add_subwindow(text_box = new BC_TextBox(x,y, get_w()-2*x, 1, path));
5201         y += text_box->get_h() + 2*pad;
5202         add_subwindow(title = new BC_Title(x, y, _("Save file ref changes?")));
5203         add_subwindow(new BC_OKButton(this));
5204         add_subwindow(new BC_CancelButton(this));
5205         show_window();
5206         unlock_window();
5207 }
5208