3 * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
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.
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.
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
21 #include "aboutprefs.h"
25 #include "audioalsa.h"
27 #include "awindowgui.h"
29 #include "batchrender.h"
30 #include "bcdisplayinfo.h"
31 #include "bcsignals.h"
38 #include "channeldb.h"
39 #include "channelinfo.h"
41 #include "bccmodels.h"
42 #include "commercials.h"
43 #include "cplayback.h"
45 #include "cwindowgui.h"
47 #include "cwindowtool.h"
49 #include "devicedvbinput.inc"
50 #include "dvdcreate.h"
51 #include "editpanel.h"
53 #include "edlsession.h"
55 #include "fileformat.h"
57 #include "filesystem.h"
59 #include "floatautos.h"
60 #include "framecache.h"
62 #include "gwindowgui.h"
63 #include "keyframegui.h"
64 #include "indexfile.h"
66 #include "interlacemodes.h"
68 #include "levelwindowgui.h"
69 #include "levelwindow.h"
70 #include "loadfile.inc"
71 #include "localsession.h"
72 #include "maincursor.h"
73 #include "mainerror.h"
74 #include "mainindexes.h"
76 #include "mainprogress.h"
77 #include "mainsession.h"
81 #include "mwindowgui.h"
83 #include "nestededls.h"
87 #include "playback3d.h"
88 #include "playbackengine.h"
90 #include "pluginserver.h"
91 #include "pluginset.h"
92 #include "preferences.h"
95 #include "recordmonitor.h"
96 #include "recordlabel.h"
97 #include "removefile.h"
99 #include "resourcethread.h"
100 #include "samplescroll.h"
102 #include "sighandler.h"
103 #include "splashgui.h"
104 #include "statusbar.h"
106 #include "threadloader.h"
108 #include "timelinepane.h"
109 #include "tipwindow.h"
110 #include "trackcanvas.h"
112 #include "tracking.h"
113 #include "trackscroll.h"
115 #include "transition.h"
116 #include "transportque.h"
119 #include "versioninfo.h"
120 #include "videodevice.inc"
121 #include "videowindow.h"
122 #include "vplayback.h"
123 #include "vwindowgui.h"
125 #include "wavecache.h"
129 #include "zwindowgui.h"
130 #include "exportedl.h"
132 #include "defaultformats.h"
133 #include "ntsczones.h"
140 #include <sys/types.h>
141 #include <sys/stat.h>
142 #include <sys/time.h>
143 #include <sys/mman.h>
154 // Hack for libdv to remove glib dependancy
157 // g_log (const char *log_domain,
159 // const char *format,
165 // g_logv (const char *log_domain,
167 // const char *format,
177 ArrayList<PluginServer*>* MWindow::plugindb = 0;
178 Commercials* MWindow::commercials = 0;
184 run_lock = new Mutex("MWindow::run_lock");
185 plugin_gui_lock = new Mutex("MWindow::plugin_gui_lock");
186 dead_plugin_lock = new Mutex("MWindow::dead_plugin_lock");
187 vwindows_lock = new Mutex("MWindow::vwindows_lock");
188 zwindows_lock = new Mutex("MWindow::zwindows_lock");
189 brender_lock = new Mutex("MWindow::brender_lock");
190 keyframe_gui_lock = new Mutex("MWindow::keyframe_gui_lock");
198 commercial_active = 0;
210 strcpy(cin_lang,"en");
211 channeldb_buz = new ChannelDB;
212 channeldb_v4l2jpeg = new ChannelDB;
216 keyframe_threads = 0;
236 // Need to delete brender temporary here.
239 run_lock->lock("MWindow::~MWindow");
241 //printf("MWindow::~MWindow %d\n", __LINE__);
242 gui->remote_control->deactivate();
245 gui->channel_info->stop();
247 delete create_bd; create_bd = 0;
248 delete create_dvd; create_dvd = 0;
249 delete batch_render; batch_render = 0;
250 delete render; render = 0;
252 if( commercials && !commercials->remove_user() ) commercials = 0;
255 // Save defaults for open plugins
256 plugin_gui_lock->lock("MWindow::~MWindow");
257 for(int i = 0; i < plugin_guis->size(); i++) {
258 plugin_guis->get(i)->hide_gui();
259 delete_plugin(plugin_guis->get(i));
261 plugin_gui_lock->unlock();
262 hide_keyframe_guis();
265 // Give up and go to a movie
266 // cant run valgrind if this is used
268 gui->del_keyboard_listener(
269 (int (BC_WindowBase::*)(BC_WindowBase *))
270 &MWindowGUI::keyboard_listener);
272 // release the hounds
273 if( awindow && awindow->gui ) awindow->gui->close(0);
274 if( cwindow && cwindow->gui ) cwindow->gui->close(0);
275 if( lwindow && lwindow->gui ) lwindow->gui->close(0);
276 if( gwindow && gwindow->gui ) gwindow->gui->close(0);
277 if( twindow && twindow->is_running() ) twindow->close_window();
278 if( wwindow && wwindow->is_running() ) wwindow->close_window();
279 vwindows.remove_all_objects();
280 zwindows.remove_all_objects();
282 if( awindow ) awindow->join();
283 if( cwindow ) cwindow->join();
284 if( lwindow ) lwindow->join();
285 if( twindow ) twindow->join();
286 if( wwindow ) wwindow->join();
287 if( gwindow ) gwindow->join();
290 // one at a time, or nouveau chokes
291 #define close_gui(win) if( win ) { \
292 if( win->gui ) win->gui->close(0); \
300 vwindows.remove_all_objects();
301 zwindows.remove_all_objects();
306 dead_plugins->remove_all_objects();
307 // must delete theme before destroying plugindb
308 // theme destructor will be deleted by delete_plugins
309 delete theme; theme = 0;
312 keyframe_threads->remove_all_objects();
313 colormodels.remove_all_objects();
314 delete awindow; awindow = 0;
315 delete lwindow; lwindow = 0;
316 delete twindow; twindow = 0;
317 delete wwindow; wwindow = 0;
318 delete gwindow; gwindow = 0;
319 delete cwindow; cwindow = 0;
321 //delete file_server; file_server = 0; // reusable
322 delete mainindexes; mainindexes = 0;
323 delete mainprogress; mainprogress = 0;
324 delete audio_cache; audio_cache = 0; // delete the cache after the assets
325 delete video_cache; video_cache = 0; // delete the cache after the assets
326 delete frame_cache; frame_cache = 0;
327 delete wave_cache; wave_cache = 0;
328 delete plugin_guis; plugin_guis = 0;
329 delete dead_plugins; dead_plugins = 0;
330 delete keyframe_threads; keyframe_threads = 0;
331 delete undo; undo = 0;
332 delete preferences; preferences = 0;
333 delete exportedl; exportedl = 0;
334 delete session; session = 0;
335 delete defaults; defaults = 0;
336 delete assets; assets = 0;
337 delete splash_window; splash_window = 0;
338 if( !edl->Garbage::remove_user() ) edl = 0;
339 delete channeldb_buz;
340 delete channeldb_v4l2jpeg;
341 // This must be last thread to exit
342 delete playback_3d; playback_3d = 0;
343 delete dead_plugin_lock;
344 delete plugin_gui_lock;
345 delete vwindows_lock;
346 delete zwindows_lock;
348 delete keyframe_gui_lock;
349 colormodels.remove_all_objects();
350 interlace_project_modes.remove_all_objects();
351 interlace_asset_modes.remove_all_objects();
352 interlace_asset_fixmethods.remove_all_objects();
353 sighandler->terminate();
364 void MWindow::init_error()
366 MainError::init_error(this);
369 void MWindow::finit_error()
371 MainError::finit_error();
374 void MWindow::create_defaults_path(char *string, const char *config_file)
376 // set the .bcast path
379 sprintf(string, "%s/", File::get_config_path());
380 fs.complete_path(string);
381 if(!fs.is_dir(string))
382 fs.create_dir(string);
385 strcat(string, config_file);
387 const char *MWindow::default_std()
389 char buf[BCTEXTLEN], *p = 0;
391 int fd = open(TIMEZONE_NAME, O_RDONLY);
393 int l = read(fd, buf, sizeof(buf)-1);
396 if( buf[l-1] == '\n' ) --l;
402 int l = readlink(LOCALTIME_LINK, buf, sizeof(buf)-1);
405 if( !(p=strstr(buf, ZONEINFO_STR)) != 0 ) return "PAL";
406 p += strlen(ZONEINFO_STR);
411 for( int i=0; ntsc_zones[i]; ++i ) {
412 if( !strcmp(ntsc_zones[i], p) )
419 for( int i=0; ntsc_zones[i]; ++i ) {
420 if( !strcmp(ntsc_zones[i], p) )
425 //__timezone: Seconds west of UTC. 240sec/deg
426 double tz_deg = -__timezone / 240.;
427 // from Honolulu = -10, to New York = -5, 15deg/hr lat -150..-75
428 return tz_deg >= -10*15 && tz_deg <= -5*15 ? "NTSC" : "PAL";
431 void MWindow::fill_preset_defaults(const char *preset, EDLSession *session)
433 struct formatpresets *fpr;
435 for(fpr = &format_presets[0]; fpr->name; fpr++)
437 if(strcmp(_(fpr->name), preset) == 0)
439 session->audio_channels = fpr->audio_channels;
440 session->audio_tracks = fpr->audio_tracks;
441 session->sample_rate = fpr->sample_rate;
442 session->video_channels = fpr->video_channels;
443 session->video_tracks = fpr->video_tracks;
444 session->frame_rate = fpr->frame_rate;
445 session->output_w = fpr->output_w;
446 session->output_h = fpr->output_h;
447 session->aspect_w = fpr->aspect_w;
448 session->aspect_h = fpr->aspect_h;
449 session->interlace_mode = fpr->interlace_mode;
450 session->color_model = fpr->color_model;
456 const char *MWindow::get_preset_name(int index)
458 if(index < 0 || index >= (int)MAX_NUM_PRESETS)
460 return _(format_presets[index].name);
464 void MWindow::init_defaults(BC_Hash* &defaults, char *config_path)
466 char path[BCTEXTLEN];
467 // Use user supplied path
469 strcpy(path, config_path);
471 create_defaults_path(path, CONFIG_FILE);
473 defaults = new BC_Hash(path);
478 void MWindow::check_language()
480 char curr_lang[BCTEXTLEN]; curr_lang[0] = 0;
481 const char *env_lang = getenv("LANGUAGE");
482 if( !env_lang ) env_lang = getenv("LC_ALL");
483 if( !env_lang ) env_lang = getenv("LANG");
485 snprintf(curr_lang, sizeof(curr_lang), "%s_%s-%s",
486 BC_Resources::language, BC_Resources::region, BC_Resources::encoding);
487 env_lang = curr_lang;
489 char last_lang[BCTEXTLEN]; last_lang[0] = 0;
490 defaults->get("LAST_LANG",last_lang);
491 if( strcmp(env_lang,last_lang)) {
492 printf("lang changed from '%s' to '%s'\n", last_lang, env_lang);
493 defaults->update("LAST_LANG",env_lang);
494 char plugin_path[BCTEXTLEN];
495 create_defaults_path(plugin_path, PLUGIN_FILE);
496 ::remove(plugin_path);
497 char ladspa_path[BCTEXTLEN];
498 create_defaults_path(ladspa_path, LADSPA_FILE);
499 ::remove(ladspa_path);
502 if( strlen(env_lang) > 1 &&
503 ( env_lang[2] == 0 || env_lang[2] == '_' || env_lang[2] == '.' ) ) {
504 cin_lang[0] = env_lang[0]; cin_lang[1] = env_lang[1]; cin_lang[2] = 0;
507 strcpy(cin_lang, "en");
510 void MWindow::get_plugin_path(char *path, const char *plug_dir, const char *fs_path)
512 char *base_path = FileSystem::basepath(fs_path), *bp = base_path;
514 const char *dp = plug_dir;
515 while( *bp && *dp && *bp == *dp ) { ++bp; ++dp; }
516 bp = !*dp && *bp == '/' ? bp+1 : base_path;
522 int MWindow::load_plugin_index(MWindow *mwindow, const char *index_path, const char *plugin_dir)
525 FILE *fp = fopen(index_path, "r");
529 char index_line[BCTEXTLEN];
530 int index_version = -1, len = strlen(plugin_dir);
531 if( !fgets(index_line, BCTEXTLEN, fp) ||
532 sscanf(index_line, "%d", &index_version) != 1 ||
533 index_version != PLUGIN_FILE_VERSION ||
534 !fgets(index_line, BCTEXTLEN, fp) ||
535 (int)strlen(index_line)-1 != len || index_line[len] != '\n' ||
536 strncmp(index_line, plugin_dir, len) != 0 ) ret = 1;
538 ArrayList<PluginServer*> plugins;
539 while( !ret && !feof(fp) && fgets(index_line, BCTEXTLEN, fp) ) {
540 if( index_line[0] == ';' ) continue;
541 if( index_line[0] == '#' ) continue;
542 int type = PLUGIN_TYPE_UNKNOWN;
543 char path[BCTEXTLEN], title[BCTEXTLEN];
545 if( PluginServer::scan_table(index_line, type, path, title, mtime) ) {
548 PluginServer *server = 0;
550 case PLUGIN_TYPE_BUILTIN:
551 case PLUGIN_TYPE_EXECUTABLE:
552 case PLUGIN_TYPE_LADSPA: {
553 char plugin_path[BCTEXTLEN]; struct stat st;
554 sprintf(plugin_path, "%s/%s", plugin_dir, path);
555 if( stat(plugin_path, &st) || st.st_mtime != mtime ) {
558 server = new PluginServer(mwindow, plugin_path, type);
560 case PLUGIN_TYPE_FFMPEG: {
561 server = new_ffmpeg_server(mwindow, path);
564 if( !server ) continue;
565 plugins.append(server);
566 // Create plugin server from index entry
567 server->set_title(title);
568 if( server->read_table(index_line) ) {
575 ret = check_plugin_index(plugins, plugin_dir, ".");
578 add_plugins(plugins);
580 plugins.remove_all_objects();
585 int MWindow::check_plugin_index(ArrayList<PluginServer*> &plugins,
586 const char *plug_dir, const char *plug_path)
588 char plugin_path[BCTEXTLEN];
589 sprintf(plugin_path, "%s/%s", plug_dir, plug_path);
591 fs.set_filter( "[*.plugin][*.so]" );
592 if( fs.update(plugin_path) )
595 for( int i=0; i<fs.dir_list.total; ++i ) {
596 char fs_path[BCTEXTLEN];
597 get_plugin_path(fs_path, 0, fs.dir_list[i]->path);
598 if( fs.is_dir(fs_path) ) {
599 get_plugin_path(plugin_path, plug_dir, fs_path);
600 if( check_plugin_index(plugins, plug_dir, plugin_path) )
603 else if( !plugin_exists(fs_path, plugins) )
610 int MWindow::init_plugins(MWindow *mwindow, Preferences *preferences)
613 plugindb = new ArrayList<PluginServer*>;
615 char index_path[BCTEXTLEN], plugin_path[BCTEXTLEN];
616 create_defaults_path(index_path, PLUGIN_FILE);
617 char *plugin_dir = FileSystem::basepath(preferences->plugin_dir);
618 strcpy(plugin_path, plugin_dir); delete [] plugin_dir;
619 if( !load_plugin_index(mwindow, index_path, plugin_path) ) return 1;
620 printf("init plugin index: %s\n", plugin_path);
621 FILE *fp = fopen(index_path,"w");
623 fprintf(stderr,_("MWindow::init_plugins: "
624 "can't create plugin index: %s\n"), index_path);
627 fprintf(fp, "%d\n", PLUGIN_FILE_VERSION);
628 fprintf(fp, "%s\n", plugin_path);
629 init_plugin_index(mwindow, preferences, fp, plugin_path);
630 init_ffmpeg_index(mwindow, preferences, fp);
632 return load_plugin_index(mwindow, index_path, plugin_path);
635 int MWindow::init_ladspa_plugins(MWindow *mwindow, Preferences *preferences)
637 char *path = getenv("LADSPA_PATH");
638 char ladspa_path[BCTEXTLEN];
640 strncpy(ladspa_path, File::get_ladspa_path(), sizeof(ladspa_path));
643 for( int len=0; *path; path+=len ) {
644 char *cp = strchr(path,':');
645 len = !cp ? strlen(path) : cp-path;
646 char index_path[BCTEXTLEN], plugin_path[BCTEXTLEN];
647 memcpy(plugin_path, path, len); plugin_path[len] = 0;
649 char *plugin_dir = FileSystem::basepath(plugin_path);
650 strcpy(plugin_path, plugin_dir); delete [] plugin_dir;
651 create_defaults_path(index_path, LADSPA_FILE);
652 cp = index_path + strlen(index_path);
653 for( char *bp=plugin_path; *bp!=0; ++bp )
654 *cp++ = *bp=='/' ? '_' : *bp;
656 if( !load_plugin_index(mwindow, index_path, plugin_path) ) continue;
657 if( init_ladspa_index(mwindow, preferences, index_path, plugin_path) ) continue;
658 load_plugin_index(mwindow, index_path, plugin_path);
663 void MWindow::init_plugin_index(MWindow *mwindow, Preferences *preferences,
664 FILE *fp, const char *plugin_dir)
666 int idx = PLUGIN_IDS;
668 for( int i=0; i<plugindb->size(); ++i ) {
669 PluginServer *server = plugindb->get(i);
670 if( server->dir_idx >= idx )
671 idx = server->dir_idx+1;
674 scan_plugin_index(mwindow, preferences, fp, plugin_dir, ".", idx);
677 int MWindow::init_ladspa_index(MWindow *mwindow, Preferences *preferences,
678 const char *index_path, const char *plugin_dir)
680 char plugin_path[BCTEXTLEN], *path = FileSystem::basepath(plugin_dir);
681 strcpy(plugin_path, path); delete [] path;
682 printf("init ladspa index: %s\n", plugin_dir);
683 FILE *fp = fopen(index_path,"w");
685 fprintf(stderr,_("MWindow::init_ladspa_index: "
686 "can't create plugin index: %s\n"), index_path);
689 fprintf(fp, "%d\n", PLUGIN_FILE_VERSION);
690 fprintf(fp, "%s\n", plugin_dir);
691 init_plugin_index(mwindow, preferences, fp, plugin_path);
696 void MWindow::scan_plugin_index(MWindow *mwindow, Preferences *preferences, FILE *fp,
697 const char *plug_dir, const char *plug_path, int &idx)
699 char plugin_path[BCTEXTLEN];
700 sprintf(plugin_path, "%s/%s", plug_dir, plug_path);
702 fs.set_filter( "[*.plugin][*.so]" );
703 int result = fs.update(plugin_path);
704 if( result || !fs.dir_list.total ) return;
707 for( int i=0; i<fs.dir_list.total; ++i ) {
708 char fs_path[BCTEXTLEN], path[BCTEXTLEN];
709 get_plugin_path(fs_path, 0, fs.dir_list[i]->path);
710 get_plugin_path(path, plug_dir, fs_path);
711 if( fs.is_dir(fs_path) ) {
712 scan_plugin_index(mwindow, preferences, fp, plug_dir, path, idx);
715 if( plugin_exists(path) ) continue;
717 if( stat(fs_path, &st) ) continue;
718 int64_t mtime = st.st_mtime;
719 PluginServer server(mwindow, fs_path, PLUGIN_TYPE_UNKNOWN);
720 result = server.open_plugin(1, preferences, 0, 0);
722 server.write_table(fp, path, vis_id, mtime);
723 server.close_plugin();
725 else if( result == PLUGINSERVER_IS_LAD ) {
728 PluginServer ladspa(mwindow, fs_path, PLUGIN_TYPE_LADSPA);
729 ladspa.set_lad_index(lad_index++);
730 result = ladspa.open_plugin(1, preferences, 0, 0);
732 ladspa.write_table(fp, path, PLUGIN_LADSPA_ID, mtime);
733 ladspa.close_plugin();
739 void MWindow::add_plugins(ArrayList<PluginServer*> &plugins)
741 for( int i=0; i<plugins.size(); ++i )
742 plugindb->append(plugins[i]);
743 plugins.remove_all();
746 void MWindow::init_plugin_tips(ArrayList<PluginServer*> &plugins, const char *lang)
748 const char *cfg_path = File::get_cindat_path();
749 char msg_path[BCTEXTLEN]; int txt = 0;
751 if( BC_Resources::language[0] ) {
752 snprintf(msg_path, sizeof(msg_path), "%s/info/plugins.%s",
754 fp = fopen(msg_path, "r");
758 snprintf(msg_path, sizeof(msg_path), "%s/info/plugins.txt",
760 fp = fopen(msg_path, "r");
763 char text[BCTEXTLEN];
764 char *tp = text, *ep = tp + sizeof(text)-1;
765 char title[BCTEXTLEN];
770 char line[BCTEXTLEN], *cp = line;
771 if( fgets(line,sizeof(line)-1,fp) ) {
772 if( *cp == '#' ) continue;
773 done = *cp == ' ' || *cp == '\t' ? 0 : -1;
776 if( tp > text && *--tp == '\n' ) *tp = 0;
778 tp = !txt ? title : _(title);
779 int idx = plugins.size();
780 while( --idx>=0 && strcmp(plugins[idx]->title, tp) );
782 delete [] plugins[idx]->tip;
783 plugins[idx]->tip = cstrdup(text);
787 if( done > 0 ) break;
789 char *dp = strchr(cp, ':');
791 printf("plugin tips: error on line %d\n", no);
795 while( cp < dp ) *bp++ = *cp++;
800 while( *cp == ' ' || *cp == '\t' ) ++cp;
801 for( ; tp<ep && (*tp=*cp)!=0; ++tp,++cp );
806 void MWindow::delete_plugins()
808 plugindb->remove_all_objects();
813 void MWindow::search_plugindb(int do_audio,
818 ArrayList<PluginServer*> &results)
821 for(int i = 0; i < MWindow::plugindb->total; i++)
823 PluginServer *current = MWindow::plugindb->get(i);
825 if(current->audio == do_audio &&
826 current->video == do_video &&
827 (current->realtime == is_realtime || is_realtime < 0) &&
828 current->transition == is_transition &&
829 current->theme == is_theme)
830 results.append(current);
833 // Alphabetize list by title
839 for(int i = 0; i < results.total - 1; i++)
841 PluginServer *value1 = results[i];
842 PluginServer *value2 = results[i + 1];
843 if(strcmp(_(value1->title), _(value2->title)) > 0)
847 results[i + 1] = value1;
853 PluginServer* MWindow::scan_plugindb(char *title,
858 // printf("MWindow::scan_plugindb data_type < 0\n");
862 for(int i = 0; i < plugindb->total; i++)
864 PluginServer *server = plugindb->get(i);
866 !strcasecmp(server->title, title) &&
868 (data_type == TRACK_AUDIO && server->audio) ||
869 (data_type == TRACK_VIDEO && server->video)))
870 return plugindb->get(i);
875 int MWindow::plugin_exists(const char *plugin_path, ArrayList<PluginServer*> &plugins)
877 for( int i=0; i<plugins.size(); ++i )
878 if( !strcmp(plugin_path, plugins[i]->get_path()) ) return 1;
882 int MWindow::plugin_exists(char *plugin_path)
884 return !plugindb ? 0 : plugin_exists(plugin_path, *plugindb);
887 void MWindow::init_preferences()
889 preferences = new Preferences;
890 preferences->load_defaults(defaults);
891 session = new MainSession(this);
892 session->load_defaults(defaults);
893 // set x11_host, screens, window_config
894 screens = session->set_default_x11_host();
895 BC_Signals::set_trap_hook(trap_hook, this);
896 BC_Signals::set_catch_segv(preferences->trap_sigsegv);
897 BC_Signals::set_catch_intr(preferences->trap_sigintr);
898 if( preferences->trap_sigsegv || preferences->trap_sigintr ) {
899 BC_Trace::enable_locks();
902 BC_Trace::disable_locks();
904 BC_WindowBase::get_resources()->popupmenu_btnup = preferences->popupmenu_btnup;
905 BC_WindowBase::get_resources()->textbox_focus_policy = preferences->textbox_focus_policy;
906 BC_WindowBase::get_resources()->grab_input_focus = preferences->grab_input_focus;
909 void MWindow::clean_indexes()
914 int oldest_item = -1;
916 char string[BCTEXTLEN];
917 char string2[BCTEXTLEN];
919 // Delete extra indexes
920 fs.set_filter("*.idx");
921 fs.complete_path(preferences->index_directory);
922 fs.update(preferences->index_directory);
923 //printf("MWindow::clean_indexes 1 %d\n", fs.dir_list.total);
925 // Eliminate directories
930 for(int i = 0; i < fs.dir_list.total && !result; i++)
932 fs.join_names(string, preferences->index_directory, fs.dir_list[i]->name);
933 if(fs.is_dir(string))
935 delete fs.dir_list[i];
936 fs.dir_list.remove_number(i);
941 total_excess = fs.dir_list.total - preferences->index_count;
943 //printf("MWindow::clean_indexes 2 %d\n", fs.dir_list.total);
944 while(total_excess > 0)
947 for(int i = 0; i < fs.dir_list.total; i++)
949 fs.join_names(string, preferences->index_directory, fs.dir_list[i]->name);
951 if(i == 0 || fs.get_date(string) <= oldest)
953 oldest = fs.get_date(string);
961 fs.join_names(string,
962 preferences->index_directory,
963 fs.dir_list[oldest_item]->name);
964 //printf("MWindow::clean_indexes 1 %s\n", string);
966 perror("delete_indexes");
967 delete fs.dir_list[oldest_item];
968 fs.dir_list.remove_number(oldest_item);
970 // Remove table of contents if it exists
971 strcpy(string2, string);
972 char *ptr = strrchr(string2, '.');
975 //printf("MWindow::clean_indexes 2 %s\n", string2);
976 sprintf(ptr, ".toc");
978 sprintf(ptr, ".mkr");
987 void MWindow::init_awindow()
989 awindow = new AWindow(this);
990 awindow->create_objects();
993 void MWindow::init_gwindow()
995 gwindow = new GWindow(this);
996 gwindow->create_objects();
999 void MWindow::init_tipwindow()
1001 TipWindow::load_tips(cin_lang);
1003 twindow = new TipWindow(this);
1007 void MWindow::show_warning(int *do_warning, const char *text)
1009 if( do_warning && !*do_warning ) return;
1011 wwindow = new WWindow(this);
1012 wwindow->show_warning(do_warning, text);
1015 int MWindow::wait_warning()
1017 return wwindow->wait_result();
1020 void MWindow::init_theme()
1025 PluginServer *theme_plugin = 0;
1026 for(int i = 0; i < plugindb->total && !theme_plugin; i++) {
1027 if( plugindb->get(i)->theme &&
1028 !strcasecmp(preferences->theme, plugindb->get(i)->title) )
1029 theme_plugin = plugindb->get(i);
1033 fprintf(stderr, _("MWindow::init_theme: prefered theme %s not found.\n"),
1034 preferences->theme);
1036 const char *default_theme = _(DEFAULT_THEME);
1037 if( !theme_plugin && strcasecmp(preferences->theme, default_theme) ) {
1038 fprintf(stderr, _("MWindow::init_theme: trying default theme %s\n"),
1040 for(int i = 0; i < plugindb->total && !theme_plugin; i++) {
1041 if( plugindb->get(i)->theme &&
1042 !strcasecmp(default_theme, plugindb->get(i)->title) )
1043 theme_plugin = plugindb->get(i);
1048 fprintf(stderr, _("MWindow::init_theme: theme_plugin not found.\n"));
1052 PluginServer *plugin = new PluginServer(*theme_plugin);
1053 if( plugin->open_plugin(0, preferences, 0, 0) ) {
1054 fprintf(stderr, _("MWindow::init_theme: unable to load theme %s\n"),
1055 theme_plugin->title);
1059 theme = plugin->new_theme();
1060 theme->mwindow = this;
1061 strcpy(theme->path, plugin->path);
1064 // Load default images & settings
1065 theme->Theme::initialize();
1066 // Load user images & settings
1067 theme->initialize();
1068 // Create menus with user colors
1069 theme->build_menus();
1072 theme->sort_image_sets();
1073 theme->check_used();
1074 //printf("MWindow::init_theme %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1077 void MWindow::init_3d()
1079 playback_3d = new Playback3D(this);
1080 playback_3d->create_objects();
1083 void MWindow::init_edl()
1086 edl->create_objects();
1087 fill_preset_defaults(default_standard, edl->session);
1088 edl->load_defaults(defaults);
1089 edl->session->brender_start = edl->session->brender_end = 0;
1090 edl->create_default_tracks();
1091 edl->tracks->update_y_pixels(theme);
1094 void MWindow::init_compositor()
1096 cwindow = new CWindow(this);
1097 cwindow->create_objects();
1100 void MWindow::init_levelwindow()
1102 lwindow = new LevelWindow(this);
1103 lwindow->create_objects();
1106 VWindow *MWindow::get_viewer(int start_it, int idx)
1108 vwindows_lock->lock("MWindow::get_viewer");
1109 VWindow *vwindow = idx >= 0 && idx < vwindows.size() ? vwindows[idx] : 0;
1110 if( !vwindow ) idx = vwindows.size();
1111 while( !vwindow && --idx >= 0 ) {
1112 VWindow *vwin = vwindows[idx];
1113 if( !vwin->is_running() || !vwin->get_edl() )
1117 vwindow = new VWindow(this);
1118 vwindow->load_defaults();
1119 vwindow->create_objects();
1120 vwindows.append(vwindow);
1122 vwindows_lock->unlock();
1123 if( start_it ) vwindow->start();
1127 ZWindow *MWindow::get_mixer(Mixer *&mixer)
1129 zwindows_lock->lock("MWindow::get_mixer");
1130 if( !mixer ) mixer = edl->mixers.new_mixer();
1131 ZWindow *zwindow = 0;
1132 for( int i=0; !zwindow && i<zwindows.size(); ++i )
1133 if( zwindows[i]->idx < 0 ) zwindow = zwindows[i];
1135 zwindows.append(zwindow = new ZWindow(this));
1136 zwindow->idx = mixer->idx;
1137 zwindows_lock->unlock();
1141 void MWindow::del_mixer(ZWindow *zwindow)
1143 zwindows_lock->lock("MWindow::del_mixer 0");
1144 edl->mixers.del_mixer(zwindow->idx);
1146 if( session->selected_zwindow >= 0 ) {
1147 int i = zwindows.number_of(zwindow);
1148 if( i >= 0 && i < session->selected_zwindow )
1149 --session->selected_zwindow;
1150 else if( i == session->selected_zwindow )
1151 session->selected_zwindow = -1;
1153 zwindows_lock->unlock();
1154 gui->lock_window("MWindow::del_mixer 1");
1155 gui->update_mixers(0, -1);
1156 gui->unlock_window();
1159 void MWindow::start_mixer()
1162 ZWindow *zwindow = get_mixer(mixer);
1163 const char *title = 0;
1165 for( Track *track=edl->tracks->first; track!=0; track=track->next ) {
1166 PatchGUI *patchgui = get_patchgui(track);
1167 if( !patchgui || !patchgui->mixer ) continue;
1168 mixer->mixer_ids.append(track->get_mixer_id());
1169 if( !title ) title = track->title;
1172 session->selected_zwindow = -1;
1173 gui->lock_window("MWindow::start_mixer");
1174 gui->update_mixers(0, 0);
1175 gui->unlock_window();
1177 zwindow->set_title(title);
1182 int MWindow::mixer_track_active(Track *track)
1184 int i = session->selected_zwindow;
1185 if( i < 0 || i >= zwindows.size() ) return 0;
1186 ZWindow *zwindow = zwindows[i];
1187 Mixer *mixer = edl->mixers.get_mixer(zwindow->idx);
1188 if( !mixer ) return 0;
1189 int n = mixer->mixer_ids.number_of(track->get_mixer_id());
1190 return n >= 0 ? 1 : 0;
1193 void MWindow::update_mixer_tracks()
1195 zwindows_lock->lock("MixPatch::handle_event");
1196 int i = session->selected_zwindow;
1197 if( i >= 0 && i < zwindows.size() ) {
1198 ZWindow *zwindow = zwindows[i];
1199 zwindow->update_mixer_ids();
1201 zwindows_lock->unlock();
1204 void MWindow::queue_mixers(EDL *edl, int command, int wait_tracking,
1205 int use_inout, int update_refresh, int toggle_audio)
1207 zwindows_lock->lock("MWindow::queue_mixers");
1208 for( int vidx=0; vidx<zwindows.size(); ++vidx ) {
1209 ZWindow *zwindow = zwindows[vidx];
1210 if( zwindow->idx < 0 ) continue;
1211 Mixer *mixer = edl->mixers.get_mixer(zwindow->idx);
1212 if( !mixer || !mixer->mixer_ids.size() ) continue;
1214 for( Track *track = edl->tracks->first; k<0 && track!=0; track=track->next ) {
1215 if( track->data_type != TRACK_VIDEO ) continue;
1216 int mixer_id = track->get_mixer_id();
1217 k = mixer->mixer_ids.size();
1218 while( --k >= 0 && mixer_id != mixer->mixer_ids[k] );
1220 if( k < 0 ) continue;
1221 EDL *mixer_edl = new EDL(this->edl);
1222 mixer_edl->create_objects();
1223 mixer_edl->copy_all(edl);
1224 mixer_edl->remove_vwindow_edls();
1225 for( Track *track = mixer_edl->tracks->first; track!=0; track=track->next ) {
1226 k = mixer->mixer_ids.size();
1227 while( --k >= 0 && track->get_mixer_id() != mixer->mixer_ids[k] );
1230 track->play = track->data_type == TRACK_VIDEO ? 1 : 0;
1233 track->record = track->play = 0;
1235 zwindow->change_source(mixer_edl);
1236 zwindow->issue_command(command,
1237 wait_tracking, use_inout, update_refresh, toggle_audio);
1239 zwindows_lock->unlock();
1242 void MWindow::refresh_mixers()
1244 queue_mixers(edl,CURRENT_FRAME,0,0,1,0);
1247 void MWindow::stop_mixers()
1249 for( int vidx=0; vidx<zwindows.size(); ++vidx ) {
1250 ZWindow *zwindow = zwindows[vidx];
1251 if( zwindow->idx < 0 ) continue;
1252 zwindow->issue_command(STOP, 0, 0, 0, 0);
1256 void MWindow::close_mixers()
1258 zwindows_lock->lock("MWindow::close_mixers");
1259 for( int i=0; i<zwindows.size(); ++i ) {
1260 ZWindow *zwindow = zwindows[i];
1261 if( zwindow->idx < 0 ) continue;
1262 ZWindowGUI *zgui = zwindow->zgui;
1263 zgui->lock_window("MWindow::select_zwindow 0");
1265 zgui->unlock_window();
1267 zwindows_lock->unlock();
1268 for( int i=0; i<zwindows.size(); ++i ) {
1269 ZWindow *zwindow = zwindows[i];
1270 if( zwindow->idx < 0 ) continue;
1271 zwindow->close_window();
1275 int MWindow::select_zwindow(ZWindow *zwindow)
1277 int ret = 0, n = zwindows.number_of(zwindow);
1278 if( session->selected_zwindow != n ) {
1279 session->selected_zwindow = n;
1280 for( int i=0; i<zwindows.size(); ++i ) {
1281 ZWindow *zwindow = zwindows[i];
1282 if( zwindow->idx < 0 ) continue;
1283 ZWindowGUI *zgui = zwindow->zgui;
1284 zgui->lock_window("MWindow::select_zwindow 0");
1285 zwindow->highlighted = i == n ? 1 : 0;
1286 if( zgui->draw_overlays() )
1287 zgui->canvas->get_canvas()->flash(1);
1288 zgui->unlock_window();
1291 gui->lock_window("MWindow::select_window 1");
1292 gui->update_mixers(0, -1);
1293 gui->unlock_window();
1298 void MWindow::tile_mixers()
1301 for( int i=0; i<zwindows.size(); ++i ) {
1302 ZWindow *zwindow = zwindows[i];
1303 if( zwindow->idx < 0 ) continue;
1307 int zn = ceil(sqrt(nz));
1308 int x1 = 1 + gui->get_x(), x2 = cwindow->gui->get_x();
1309 int y1 = 1, y2 = gui->get_y();
1310 int rw = gui->get_root_w(0), rh = gui->get_root_h(0);
1311 if( x1 < 0 ) x1 = 0;
1312 if( y1 < 0 ) y1 = 0;
1313 if( x2 > rw ) x2 = rw;
1314 if( y2 > rh ) y2 = rh;
1315 int dx = x2 - x1, dy = y2 - y1;
1317 int lt = BC_DisplayInfo::get_left_border();
1318 int top = BC_DisplayInfo::get_top_border();
1319 int bw = lt + BC_DisplayInfo::get_right_border(); // borders
1320 int bh = top + BC_DisplayInfo::get_bottom_border();
1321 int zx = 0, zy = 0; // window origins
1322 int mw = 10+10, mh = 10+10; // canvas margins
1323 int rsz = 0, n = 0, dz = 0;
1324 int ow = edl->session->output_w, oh = edl->session->output_h;
1325 for( int i=0; i<zwindows.size(); ++i ) {
1326 ZWindow *zwindow = zwindows[i];
1327 if( zwindow->idx < 0 ) continue;
1328 int ww = zw - bw, hh = (ww - mw) * oh / ow + mh, zh = hh + bh;
1329 if( rsz < hh ) rsz = hh;
1330 int xx = zx + x1, yy = zy + y1;
1331 int mx = x2 - zw, my = y2 - zh;
1332 if( xx > mx ) xx = mx;
1333 if( yy > my ) yy = my;
1334 xx += lt + dz; yy += top + dz;
1335 zwindow->reposition(xx,yy, ww,hh);
1336 if( zwindow->running() ) {
1337 ZWindowGUI *gui = (ZWindowGUI *)zwindow->get_gui();
1338 gui->lock_window("MWindow::tile_mixers");
1339 gui->BC_WindowBase::reposition_window(xx,yy, ww,hh);
1340 gui->unlock_window();
1344 if( (zy += rsz) > (dy - rsz) ) dz += 10;
1354 void MWindow::init_cache()
1356 audio_cache = new CICache(preferences);
1357 video_cache = new CICache(preferences);
1358 frame_cache = new FrameCache;
1359 wave_cache = new WaveCache;
1362 void MWindow::init_channeldb()
1364 channeldb_buz->load("channeldb_buz");
1365 channeldb_v4l2jpeg->load("channeldb_v4l2jpeg");
1368 void MWindow::init_menus()
1370 char string[BCTEXTLEN];
1373 BC_CModels::to_text(string, BC_RGB888);
1374 colormodels.append(new ColormodelItem(string, BC_RGB888));
1375 BC_CModels::to_text(string, BC_RGBA8888);
1376 colormodels.append(new ColormodelItem(string, BC_RGBA8888));
1377 // BC_CModels::to_text(string, BC_RGB161616);
1378 // colormodels.append(new ColormodelItem(string, BC_RGB161616));
1379 // BC_CModels::to_text(string, BC_RGBA16161616);
1380 // colormodels.append(new ColormodelItem(string, BC_RGBA16161616));
1381 BC_CModels::to_text(string, BC_RGB_FLOAT);
1382 colormodels.append(new ColormodelItem(string, BC_RGB_FLOAT));
1383 BC_CModels::to_text(string, BC_RGBA_FLOAT);
1384 colormodels.append(new ColormodelItem(string, BC_RGBA_FLOAT));
1385 BC_CModels::to_text(string, BC_YUV888);
1386 colormodels.append(new ColormodelItem(string, BC_YUV888));
1387 BC_CModels::to_text(string, BC_YUVA8888);
1388 colormodels.append(new ColormodelItem(string, BC_YUVA8888));
1389 // BC_CModels::to_text(string, BC_YUV161616);
1390 // colormodels.append(new ColormodelItem(string, BC_YUV161616));
1391 // BC_CModels::to_text(string, BC_YUVA16161616);
1392 // colormodels.append(new ColormodelItem(string, BC_YUVA16161616));
1394 #define ILACEPROJECTMODELISTADD(x) ilacemode_to_text(string, x); \
1395 interlace_project_modes.append(new InterlacemodeItem(string, x));
1397 #define ILACEASSETMODELISTADD(x) ilacemode_to_text(string, x); \
1398 interlace_asset_modes.append(new InterlacemodeItem(string, x));
1400 #define ILACEFIXMETHODLISTADD(x) ilacefixmethod_to_text(string, x); \
1401 interlace_asset_fixmethods.append(new InterlacefixmethodItem(string, x));
1403 // Interlacing Modes
1404 ILACEASSETMODELISTADD(ILACE_MODE_UNDETECTED); // Not included in the list for the project options.
1406 ILACEASSETMODELISTADD(ILACE_MODE_TOP_FIRST);
1407 ILACEPROJECTMODELISTADD(ILACE_MODE_TOP_FIRST);
1409 ILACEASSETMODELISTADD(ILACE_MODE_BOTTOM_FIRST);
1410 ILACEPROJECTMODELISTADD(ILACE_MODE_BOTTOM_FIRST);
1412 ILACEASSETMODELISTADD(ILACE_MODE_NOTINTERLACED);
1413 ILACEPROJECTMODELISTADD(ILACE_MODE_NOTINTERLACED);
1415 // Interlacing Fixing Methods
1416 ILACEFIXMETHODLISTADD(ILACE_FIXMETHOD_NONE);
1417 ILACEFIXMETHODLISTADD(ILACE_FIXMETHOD_UPONE);
1418 ILACEFIXMETHODLISTADD(ILACE_FIXMETHOD_DOWNONE);
1421 void MWindow::init_indexes()
1423 mainindexes = new MainIndexes(this);
1424 mainindexes->start_loop();
1427 void MWindow::init_gui()
1429 gui = new MWindowGUI(this);
1430 gui->lock_window("MWindow::init_gui");
1431 gui->create_objects();
1432 gui->unlock_window();
1433 gui->load_defaults(defaults);
1436 void MWindow::init_signals()
1438 sighandler = new SigHandler;
1439 sighandler->initialize("/tmp/cinelerra_%d.dmp");
1443 void MWindow::init_render()
1445 render = new Render(this);
1446 create_bd = new CreateBD_Thread(this);
1447 create_dvd = new CreateDVD_Thread(this);
1448 batch_render = new BatchRenderThread(this);
1451 void MWindow::init_exportedl()
1453 exportedl = new ExportEDL(this);
1456 void MWindow::init_brender()
1458 if(preferences->use_brender && !brender)
1460 brender_lock->lock("MWindow::init_brender 1");
1461 brender = new BRender(this);
1462 brender->initialize();
1463 session->brender_end = 0;
1464 brender_lock->unlock();
1467 if(!preferences->use_brender && brender)
1469 brender_lock->lock("MWindow::init_brender 2");
1472 session->brender_end = 0;
1473 brender_lock->unlock();
1479 void MWindow::restart_brender()
1481 //printf("MWindow::restart_brender 1\n");
1482 if( !brender_active || !preferences->use_brender ) return;
1483 if( !brender ) return;
1484 int locked = gui->get_window_lock();
1485 if( locked ) gui->unlock_window();
1486 brender->restart(edl);
1487 if( locked ) gui->lock_window("MWindow::restart_brender");
1490 void MWindow::stop_brender()
1492 if( !brender ) return;
1493 int locked = gui->get_window_lock();
1494 if( locked ) gui->unlock_window();
1496 if( locked ) gui->lock_window("MWindow::stop_brender");
1499 int MWindow::brender_available(int position)
1502 brender_lock->lock("MWindow::brender_available 1");
1503 if(brender && brender_active)
1505 if(brender->map_valid)
1507 brender->map_lock->lock("MWindow::brender_available 2");
1508 if(position < brender->map_size &&
1511 //printf("MWindow::brender_available 1 %d %d\n", position, brender->map[position]);
1512 if(brender->map[position] == BRender::RENDERED)
1515 brender->map_lock->unlock();
1518 brender_lock->unlock();
1522 void MWindow::set_brender_active(int v, int update)
1524 if( !preferences->use_brender ) v = 0;
1526 gui->mainmenu->brender_active->set_checked(v);
1528 edl->session->brender_start = edl->local_session->get_selectionstart(1);
1529 edl->session->brender_end = edl->local_session->get_selectionend(1);
1531 if(EQUIV(edl->session->brender_end, edl->session->brender_start)) {
1532 edl->session->brender_end = edl->tracks->total_video_length();
1537 edl->session->brender_start = edl->session->brender_end = 0;
1541 gui->update_timebar(0);
1542 gui->draw_overlays(1);
1546 int MWindow::has_commercials()
1548 return theme->use_commercials;
1551 void MWindow::init_commercials()
1553 if( !commercials ) {
1554 commercials = new Commercials(this);
1555 commercial_active = 0;
1558 commercials->add_user();
1561 void MWindow::commit_commercial()
1563 if( !commercial_active ) return;
1564 commercial_active = 0;
1565 if( !commercials ) return;
1566 commercials->commitDb();
1569 void MWindow::undo_commercial()
1571 if( !commercial_active ) return;
1572 commercial_active = 0;
1573 if( !commercials ) return;
1574 commercials->undoDb();
1577 int MWindow::put_commercial()
1579 double start = edl->local_session->get_selectionstart();
1580 double end = edl->local_session->get_selectionend();
1581 if( start >= end ) return 0;
1583 const char *errmsg = 0;
1585 Tracks *tracks = edl->tracks;
1588 for(Track *track=tracks->first; track && !errmsg; track=track->next) {
1589 if( track->data_type != TRACK_VIDEO ) continue;
1590 if( !track->record ) continue;
1591 if( count > 0 ) { errmsg = _("multiple video tracks"); break; }
1593 int64_t units_start = track->to_units(start,0);
1594 int64_t units_end = track->to_units(end,0);
1595 Edits *edits = track->edits;
1596 Edit *edit1 = edits->editof(units_start, PLAY_FORWARD, 0);
1597 Edit *edit2 = edits->editof(units_end, PLAY_FORWARD, 0);
1598 if(!edit1 && !edit2) continue; // nothing selected
1599 if(!edit2) { // edit2 beyond end of track
1600 edit2 = edits->last;
1601 units_end = edits->length();
1603 if(edit1 != edit2) { errmsg = _("crosses edits"); break; }
1604 Indexable *indexable = edit1->get_source();
1605 if( !indexable->is_asset ) { errmsg = _("not asset"); break; }
1608 for(Track *track=tracks->first; track && !errmsg; track=track->next) {
1609 if( track->data_type != TRACK_VIDEO ) continue;
1610 if( !track->record ) continue;
1611 int64_t units_start = track->to_units(start,0);
1612 int64_t units_end = track->to_units(end,0);
1613 Edits *edits = track->edits;
1614 Edit *edit1 = edits->editof(units_start, PLAY_FORWARD, 0);
1615 Edit *edit2 = edits->editof(units_end, PLAY_FORWARD, 0);
1616 if(!edit1 && !edit2) continue; // nothing selected
1617 if(!edit2) { // edit2 beyond end of track
1618 edit2 = edits->last;
1619 units_end = edits->length();
1621 Indexable *indexable = edit1->get_source();
1622 Asset *asset = (Asset *)indexable;
1623 File *file = video_cache->check_out(asset, edl);
1624 if( !file ) { errmsg = _("no file"); break; }
1625 int64_t edit_length = units_end - units_start;
1626 int64_t edit_start = units_start - edit1->startproject + edit1->startsource;
1627 result = commercials->put_clip(file, edit1->channel,
1628 track->from_units(edit_start), track->from_units(edit_length));
1629 video_cache->check_in(asset);
1630 if( result ) { errmsg = _("db failed"); break; }
1633 char string[BCTEXTLEN];
1634 sprintf(string, _("put_commercial: %s"), errmsg);
1635 MainError::show_error(string);
1642 void MWindow::stop_playback(int wait)
1644 gui->stop_drawing();
1646 cwindow->stop_playback(wait);
1648 for(int i = 0; i < vwindows.size(); i++) {
1649 VWindow *vwindow = vwindows[i];
1650 if( !vwindow->is_running() ) continue;
1651 vwindow->stop_playback(wait);
1653 for(int i = 0; i < zwindows.size(); i++) {
1654 ZWindow *zwindow = zwindows[i];
1655 if( zwindow->idx < 0 ) continue;
1656 zwindow->stop_playback(wait);
1660 int MWindow::load_filenames(ArrayList<char*> *filenames,
1662 int update_filename)
1664 ArrayList<EDL*> new_edls;
1665 ArrayList<Asset*> new_assets;
1666 ArrayList<File*> new_files;
1667 const int debug = 0;
1668 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1671 gui->start_hourglass();
1673 // Need to stop playback since tracking depends on the EDL not getting
1675 gui->unlock_window();
1677 gui->lock_window("MWindow::load_filenames 0");
1679 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1680 undo->update_undo_before();
1683 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1685 // Define new_edls and new_assets to load
1686 int result = 0, ftype = -1;
1687 for(int i = 0; i < filenames->size(); i++)
1690 File *new_file = new File;
1691 Asset *new_asset = new Asset(filenames->get(i));
1692 EDL *new_edl = new EDL;
1693 char string[BCTEXTLEN];
1695 new_edl->create_objects();
1696 new_edl->copy_session(edl);
1697 new_file->set_program(edl->session->program_no);
1699 sprintf(string, _("Loading %s"), new_asset->path);
1700 gui->show_message(string);
1701 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1703 ftype = new_file->open_file(preferences, new_asset, 1, 0);
1704 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1709 // Convert media file to EDL
1711 // Warn about odd image dimensions
1712 if(new_asset->video_data &&
1713 ((new_asset->width % 2) ||
1714 (new_asset->height % 2)))
1716 char string[BCTEXTLEN];
1717 sprintf(string, _("%s's resolution is %dx%d.\nImages with odd dimensions may not decode properly."),
1721 MainError::show_error(string);
1724 if(new_asset->program >= 0 &&
1725 edl->session->program_no != new_asset->program)
1727 char string[BCTEXTLEN];
1728 sprintf(string, _("%s's index was built for program number %d\n"
1729 "Playback preference is %d.\n Using program %d."),
1730 new_asset->path, new_asset->program,
1731 edl->session->program_no, new_asset->program);
1732 MainError::show_error(string);
1736 if(load_mode != LOADMODE_RESOURCESONLY)
1738 RecordLabels *labels = edl->session->label_cells ?
1739 new RecordLabels(new_file) : 0;
1740 asset_to_edl(new_edl, new_asset, labels);
1741 new_edls.append(new_edl);
1742 new_asset->Garbage::remove_user();
1748 new_assets.append(new_asset);
1752 // Set filename to nothing for assets since save EDL would overwrite them.
1753 if(load_mode == LOADMODE_REPLACE ||
1754 load_mode == LOADMODE_REPLACE_CONCATENATE)
1757 // Reset timeline position
1758 for(int i = 0; i < TOTAL_PANES; i++)
1760 new_edl->local_session->view_start[i] = 0;
1761 new_edl->local_session->track_start[i] = 0;
1769 case FILE_NOT_FOUND:
1770 sprintf(string, _("Failed to open %s"), new_asset->path);
1771 gui->show_message(string, theme->message_error);
1772 gui->update_default_message();
1776 case FILE_UNRECOGNIZED_CODEC:
1779 { IndexFile indexfile(this, new_asset);
1780 if( !(result = indexfile.open_index()) )
1781 indexfile.close_index();
1784 // Test existing EDLs
1785 for(int j = 0; result && j <= new_edls.total; j++) {
1786 Asset *old_asset = j < new_edls.total ?
1787 new_edls[j]->assets->get_asset(new_asset->path) :
1788 edl->assets->get_asset(new_asset->path);
1790 new_asset->copy_from(old_asset,1);
1798 char string[BCTEXTLEN];
1800 fs.extract_name(string, new_asset->path);
1802 strcat(string, _("'s format couldn't be determined."));
1803 new_asset->audio_data = 1;
1804 new_asset->format = FILE_PCM;
1805 new_asset->channels = defaults->get("AUDIO_CHANNELS", 2);
1806 new_asset->sample_rate = defaults->get("SAMPLE_RATE", 44100);
1807 new_asset->bits = defaults->get("AUDIO_BITS", 16);
1808 new_asset->byte_order = defaults->get("BYTE_ORDER", 1);
1809 new_asset->signed_ = defaults->get("SIGNED_", 1);
1810 new_asset->header = defaults->get("HEADER", 0);
1812 FileFormat fwindow(this);
1813 fwindow.create_objects(new_asset, string);
1814 result = fwindow.run_window();
1817 defaults->update("AUDIO_CHANNELS", new_asset->channels);
1818 defaults->update("SAMPLE_RATE", new_asset->sample_rate);
1819 defaults->update("AUDIO_BITS", new_asset->bits);
1820 defaults->update("BYTE_ORDER", new_asset->byte_order);
1821 defaults->update("SIGNED_", new_asset->signed_);
1822 defaults->update("HEADER", new_asset->header);
1829 // Recalculate length
1831 new_file = new File;
1832 result = new_file->open_file(preferences, new_asset, 1, 0);
1834 if(load_mode != LOADMODE_RESOURCESONLY)
1836 RecordLabels *labels = edl->session->label_cells ?
1837 new RecordLabels(new_file) : 0;
1838 asset_to_edl(new_edl, new_asset, labels);
1839 new_edls.append(new_edl);
1840 new_asset->Garbage::remove_user();
1846 new_assets.append(new_asset);
1860 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1861 xml_file.read_from_file(filenames->get(i));
1862 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1863 const char *cin_version = 0;
1864 while( !xml_file.read_tag() ) {
1865 if( xml_file.tag.title_is("EDL") ) {
1866 cin_version = xml_file.tag.get_property("VERSION");
1871 if( !cin_version ) {
1872 eprintf(_("XML file %s\n not from cinelerra."),filenames->get(i));
1873 char string[BCTEXTLEN];
1874 sprintf(string,_("Unknown %s"), filenames->get(i));
1875 gui->show_message(string);
1879 if( strcmp(cin_version, CINELERRA_VERSION) ) {
1880 char string[BCTEXTLEN];
1881 snprintf(string, sizeof(string),
1882 _("Warning: XML from cinelerra version %s\n"
1883 "Session data may be incompatible."), cin_version);
1884 show_warning(&preferences->warn_version, string);
1886 if(load_mode == LOADMODE_NESTED)
1888 // Load temporary EDL for nesting.
1889 EDL *nested_edl = new EDL;
1890 nested_edl->create_objects();
1891 nested_edl->set_path(filenames->get(i));
1892 nested_edl->load_xml(&xml_file, LOAD_ALL);
1893 //printf("MWindow::load_filenames %p %s\n", nested_edl, nested_edl->project_path);
1894 edl_to_nested(new_edl, nested_edl);
1895 nested_edl->Garbage::remove_user();
1899 // Load EDL for pasting
1900 new_edl->load_xml(&xml_file, LOAD_ALL);
1901 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1902 test_plugins(new_edl, filenames->get(i));
1903 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1905 if(load_mode == LOADMODE_REPLACE ||
1906 load_mode == LOADMODE_REPLACE_CONCATENATE)
1908 strcpy(session->filename, filenames->get(i));
1909 strcpy(new_edl->local_session->clip_title,
1912 set_filename(new_edl->local_session->clip_title);
1915 if( load_mode == LOADMODE_RESOURCESONLY ) {
1916 strcpy(new_edl->local_session->clip_title,
1919 time_t t = !stat(filenames->get(i),&st) ?
1920 st.st_mtime : time(&t);
1921 ctime_r(&t, new_edl->local_session->clip_notes);
1925 new_edls.append(new_edl);
1931 // edls are in new_edls
1932 if( result && new_edl ) new_edl->Garbage::remove_user();
1933 // assets are copied
1934 if( new_asset ) new_asset->Garbage::remove_user();
1936 // Store for testing index
1937 new_files.append(new_file);
1940 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1944 gui->reset_default_message();
1945 gui->default_message();
1949 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1952 // Don't back up here.
1955 // For pasting, clear the active region
1956 if(load_mode == LOADMODE_PASTE ||
1957 load_mode == LOADMODE_NESTED)
1959 double start = edl->local_session->get_selectionstart();
1960 double end = edl->local_session->get_selectionend();
1961 if(!EQUIV(start, end))
1964 edl->session->labels_follow_edits,
1965 edl->session->plugins_follow_edits,
1966 edl->session->autos_follow_edits);
1969 paste_edls(&new_edls, load_mode, 0, -1,
1970 edl->session->labels_follow_edits,
1971 edl->session->plugins_follow_edits,
1972 edl->session->autos_follow_edits,
1979 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1981 // Add new assets to EDL and schedule assets for index building.
1982 int got_indexes = 0;
1983 for(int i = 0; i < new_edls.size(); i++)
1985 EDL *new_edl = new_edls[i];
1986 for(int j = 0; j < new_edl->nested_edls->size(); j++)
1988 mainindexes->add_next_asset(0,
1989 new_edl->nested_edls->get(j));
1991 edl->nested_edls->update_index(new_edl->nested_edls->get(j));
1996 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1997 for(int i = 0; i < new_assets.size(); i++)
1999 Asset *new_asset = new_assets[i];
2003 for(int j = 0; j < new_files.size(); j++)
2005 new_file = new_files[j];
2006 if(!strcmp(new_file->asset->path,
2014 mainindexes->add_next_asset(got_it ? new_file : 0, new_asset);
2016 edl->assets->update(new_asset);
2018 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2020 // Start examining next batch of index files
2021 if(got_indexes) mainindexes->start_build();
2022 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2025 Track *track = edl->tracks->first;
2028 for(int j = 0; j < track->plugin_set.size(); j++)
2030 PluginSet *plugins = track->plugin_set[j];
2031 Plugin *plugin = plugins->get_first_plugin();
2035 if(load_mode == LOADMODE_REPLACE ||
2036 load_mode == LOADMODE_REPLACE_CONCATENATE)
2038 if(plugin->plugin_type == PLUGIN_STANDALONE &&
2041 show_plugin(plugin);
2045 plugin = (Plugin*)plugin->next;
2049 track = track->next;
2052 // if just opening one new resource in replace mode
2053 if( ftype != FILE_IS_XML &&
2054 ( load_mode == LOADMODE_REPLACE ||
2055 load_mode == LOADMODE_REPLACE_CONCATENATE ) ) {
2057 edl->session->proxy_scale = 1;
2058 edl->session->proxy_use_scaler = 0;
2059 edl->session->proxy_auto_scale = 0;
2060 edl->local_session->preview_start = 0;
2061 edl->local_session->preview_end = edl->tracks->total_length();
2062 edl->local_session->loop_playback = 0;
2063 edl->local_session->set_selectionstart(0);
2064 edl->local_session->set_selectionend(0);
2065 set_brender_active(0, 0);
2070 if( ( edl->session->proxy_auto_scale && edl->session->proxy_scale != 1 ) &&
2071 ( load_mode != LOADMODE_REPLACE && load_mode != LOADMODE_REPLACE_CONCATENATE ) ) {
2072 ArrayList<Indexable *> orig_idxbls;
2073 for( int i=0; i<new_assets.size(); ++i )
2074 orig_idxbls.append(new_assets.get(i));
2075 for( int i=0; i<new_edls.size(); ++i ) {
2076 EDL *new_edl = new_edls[i];
2077 for( Track *track=new_edl->tracks->first; track; track=track->next ) {
2078 if( track->data_type != TRACK_VIDEO ) continue;
2079 for( Edit *edit=track->edits->first; edit; edit=edit->next ) {
2080 Indexable *idxbl = (Indexable *)edit->asset;
2081 if( !idxbl ) continue;
2082 if( !idxbl->have_video() ) continue;
2083 if( edit->channel != 0 ) continue; // first layer only
2084 orig_idxbls.append(edit->asset);
2088 gui->unlock_window(); // to update progress bar
2089 render_proxy(orig_idxbls);
2090 gui->lock_window("MWindow::load_filenames");
2093 // need to update undo before project, since mwindow is unlocked & a new load
2094 // can begin here. Should really prevent loading until we're done.
2095 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2096 undo->update_undo_after(_("load"), LOAD_ALL);
2098 for(int i = 0; i < new_edls.size(); i++)
2100 new_edls[i]->remove_user();
2102 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2104 new_edls.remove_all();
2106 for(int i = 0; i < new_assets.size(); i++)
2108 new_assets[i]->Garbage::remove_user();
2111 new_assets.remove_all();
2112 new_files.remove_all_objects();
2115 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2116 if(load_mode == LOADMODE_REPLACE ||
2117 load_mode == LOADMODE_REPLACE_CONCATENATE)
2119 session->changes_made = 0;
2123 session->changes_made = 1;
2126 gui->stop_hourglass();
2129 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2130 update_project(load_mode);
2132 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
2137 void MWindow::render_proxy(ArrayList<Indexable *> &new_idxbls)
2139 Asset *format_asset = new Asset;
2140 format_asset->format = FILE_FFMPEG;
2141 format_asset->load_defaults(defaults, "PROXY_", 1, 1, 0, 0, 0);
2142 ProxyRender proxy_render(this, format_asset);
2143 int new_scale = edl->session->proxy_scale;
2144 int use_scaler = edl->session->proxy_use_scaler;
2146 for( int i=0; i<new_idxbls.size(); ++i ) {
2147 Indexable *orig = new_idxbls.get(i);
2148 Asset *proxy = proxy_render.add_original(orig, new_scale);
2149 if( !proxy ) continue;
2151 int exists = fs.get_size(proxy->path) > 0 ? 1 : 0;
2152 int got_it = exists && // if proxy exists, and is newer than orig
2153 fs.get_date(proxy->path) > fs.get_date(orig->path) ? 1 : 0;
2154 if( got_it ) continue;
2155 proxy_render.add_needed(orig, proxy);
2158 // render needed proxies
2159 int result = proxy_render.create_needed_proxies(new_scale);
2161 add_proxy(use_scaler,
2162 &proxy_render.orig_idxbls, &proxy_render.orig_proxies);
2164 format_asset->remove_user();
2167 void MWindow::test_plugins(EDL *new_edl, char *path)
2169 char string[BCTEXTLEN];
2171 // Do a check weather plugins exist
2172 for(Track *track = new_edl->tracks->first; track; track = track->next)
2174 for(int k = 0; k < track->plugin_set.total; k++)
2176 PluginSet *plugin_set = track->plugin_set[k];
2177 for(Plugin *plugin = (Plugin*)plugin_set->first;
2179 plugin = (Plugin*)plugin->next)
2181 if(plugin->plugin_type == PLUGIN_STANDALONE)
2183 // ok we need to find it in plugindb
2184 int plugin_found = 0;
2186 for(int j = 0; j < plugindb->size(); j++)
2188 PluginServer *server = plugindb->get(j);
2190 !strcasecmp(server->title, plugin->title) &&
2191 ((track->data_type == TRACK_AUDIO && server->audio) ||
2192 (track->data_type == TRACK_VIDEO && server->video)) &&
2193 (!server->transition))
2200 _("The %s '%s' in file '%s' is not part of your installation of Cinelerra.\n"
2201 "The project won't be rendered as it was meant and Cinelerra might crash.\n"),
2202 "effect", plugin->title,
2204 MainError::show_error(string);
2210 for(Edit *edit = (Edit*)track->edits->first;
2212 edit = (Edit*)edit->next)
2214 if (edit->transition)
2216 // ok we need to find transition in plugindb
2218 int transition_found = 0;
2219 for(int j = 0; j < plugindb->size(); j++)
2221 PluginServer *server = plugindb->get(j);
2223 !strcasecmp(server->title, edit->transition->title) &&
2224 ((track->data_type == TRACK_AUDIO && server->audio) ||
2225 (track->data_type == TRACK_VIDEO && server->video)) &&
2226 (server->transition))
2227 transition_found = 1;
2230 if (!transition_found)
2233 _("The %s '%s' in file '%s' is not part of your installation of Cinelerra.\n"
2234 "The project won't be rendered as it was meant and Cinelerra might crash.\n"),
2235 "transition", edit->transition->title,
2237 MainError::show_error(string);
2245 void MWindow::init_shm()
2247 // Fix shared memory
2248 FILE *fd = fopen("/proc/sys/kernel/shmmax", "w");
2250 fprintf(fd, "0x7fffffff");
2255 fd = fopen("/proc/sys/kernel/shmmax", "r");
2257 MainError::show_error("MWindow::init_shm: couldn't open /proc/sys/kernel/shmmax for reading.\n");
2262 fscanf(fd, "%jd", &result);
2265 if(result < 0x7fffffff) {
2266 eprintf(_("MWindow::init_shm: /proc/sys/kernel/shmmax is %p.\n"
2267 "you probably need to be root, or:\n"
2268 "as root, run: echo 0x7fffffff > /proc/sys/kernel/shmmax\n"
2269 "before trying to start cinelerra.\n"
2270 "It should be at least 0x7fffffff for Cinelerra.\n"), (void *)result);
2274 void MWindow::create_objects(int want_gui,
2278 const int debug = 0;
2279 if(debug) PRINT_TRACE
2281 // For some reason, init_signals must come after show_splash or the signals won't
2284 if(debug) PRINT_TRACE
2287 if(debug) PRINT_TRACE
2290 if(debug) PRINT_TRACE
2291 default_standard = default_std();
2292 init_defaults(defaults, config_path);
2296 splash_window->operation->update(_("Initializing Plugins"));
2297 init_plugins(this, preferences);
2298 if(debug) PRINT_TRACE
2299 init_ladspa_plugins(this, preferences);
2300 if(debug) PRINT_TRACE
2301 init_plugin_tips(*plugindb, cin_lang);
2303 splash_window->operation->update(_("Initializing GUI"));
2304 if(debug) PRINT_TRACE
2307 if(debug) PRINT_TRACE
2311 splash_window->operation->update(_("Initializing Fonts"));
2312 char string[BCTEXTLEN];
2313 strcpy(string, preferences->plugin_dir);
2314 strcat(string, "/" FONT_SEARCHPATH);
2315 BC_Resources::init_fontconfig(string);
2316 if(debug) PRINT_TRACE
2318 // Initialize before too much else is running
2319 // Preferences & theme are required for building MPEG table of contents
2321 // Default project created here
2323 if(debug) PRINT_TRACE
2326 if(debug) PRINT_TRACE
2331 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2334 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2336 //printf("MWindow::create_objects %d session->show_vwindow=%d\n", __LINE__, session->show_vwindow);
2337 if(session->show_vwindow)
2338 get_viewer(1, DEFAULT_VWINDOW);
2339 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2342 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2345 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2348 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2351 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2354 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2357 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2362 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2363 mainprogress = new MainProgress(this, gui);
2364 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2365 undo = new MainUndo(this);
2367 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2369 plugin_guis = new ArrayList<PluginServer*>;
2370 dead_plugins = new ArrayList<PluginServer*>;
2371 keyframe_threads = new ArrayList<KeyFrameThread*>;
2373 if(debug) printf("MWindow::create_objects %d vwindows=%d show_vwindow=%d\n",
2376 session->show_vwindow);
2378 // Show all vwindows
2379 // if(session->show_vwindow) {
2380 // for(int j = 0; j < vwindows.size(); j++) {
2381 // VWindow *vwindow = vwindows[j];
2382 // if( !vwindow->is_running() ) continue;
2383 // if(debug) printf("MWindow::create_objects %d vwindow=%p\n",
2386 // if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2387 // vwindow->gui->lock_window("MWindow::create_objects 1");
2388 // if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2389 // vwindow->gui->show_window();
2390 // if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2391 // vwindow->gui->unlock_window();
2396 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2398 if(session->show_cwindow)
2400 cwindow->gui->lock_window("MWindow::create_objects 1");
2401 cwindow->gui->show_window();
2402 cwindow->gui->unlock_window();
2405 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2406 if(session->show_awindow)
2408 awindow->gui->lock_window("MWindow::create_objects 1");
2409 awindow->gui->show_window();
2410 awindow->gui->unlock_window();
2413 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2414 if(session->show_lwindow)
2416 lwindow->gui->lock_window("MWindow::create_objects 1");
2417 lwindow->gui->show_window();
2418 lwindow->gui->unlock_window();
2421 if(debug) printf("MWindow::create_objects %d total_time=%d gwindow=%p\n",
2423 (int)timer.get_difference(),
2425 if(session->show_gwindow)
2427 gwindow->gui->lock_window("MWindow::create_objects 1");
2428 gwindow->gui->show_window();
2429 gwindow->gui->unlock_window();
2432 if(debug) PRINT_TRACE
2434 gui->lock_window("MWindow::create_objects 1");
2435 gui->mainmenu->load_defaults(defaults);
2436 gui->mainmenu->update_toggles(0);
2437 gui->update_patchbay();
2438 gui->draw_canvas(0, 0);
2439 gui->draw_cursor(1);
2441 gui->raise_window();
2442 gui->unlock_window();
2444 if(debug) PRINT_TRACE
2446 if(preferences->use_tipwindow)
2448 if(debug) PRINT_TRACE
2450 gui->add_keyboard_listener(
2451 (int (BC_WindowBase::*)(BC_WindowBase *))
2452 &MWindowGUI::keyboard_listener);
2456 if(debug) PRINT_TRACE
2458 BC_WindowBase::get_resources()->vframe_shm = 1;
2462 void MWindow::show_splash()
2464 #include "data/heroine_logo9_png.h"
2465 VFrame *frame = new VFramePng(heroine_logo9_png);
2466 BC_DisplayInfo dpyi;
2467 int rw = dpyi.get_root_w(), rh = dpyi.get_root_h();
2468 int rr = (rw < rh ? rw : rh) / 4;
2469 splash_window = new SplashGUI(frame, rr, rr);
2470 splash_window->create_objects();
2473 void MWindow::hide_splash()
2476 delete splash_window;
2481 void MWindow::start()
2485 // vwindows[DEFAULT_VWINDOW]->start();
2496 playback_3d->start();
2502 run_lock->lock("MWindow::run");
2506 brender_lock->lock("MWindow::run 1");
2507 delete brender; brender = 0;
2508 brender_lock->unlock();
2510 interrupt_indexes();
2516 void MWindow::show_vwindow()
2518 int total_running = 0;
2519 session->show_vwindow = 1;
2521 //printf("MWindow::show_vwindow %d %d\n", __LINE__, vwindows.size());
2522 // Raise all windows which are visible
2523 for(int j = 0; j < vwindows.size(); j++) {
2524 VWindow *vwindow = vwindows[j];
2525 if( !vwindow->is_running() ) continue;
2526 vwindow->gui->lock_window("MWindow::show_vwindow");
2527 vwindow->gui->show_window(0);
2528 vwindow->gui->raise_window();
2529 vwindow->gui->flush();
2530 vwindow->gui->unlock_window();
2534 // If no windows visible
2537 get_viewer(1, DEFAULT_VWINDOW);
2540 gui->mainmenu->show_vwindow->set_checked(1);
2543 void MWindow::show_awindow()
2545 session->show_awindow = 1;
2546 awindow->gui->lock_window("MWindow::show_awindow");
2547 awindow->gui->show_window();
2548 awindow->gui->raise_window();
2549 awindow->gui->flush();
2550 awindow->gui->unlock_window();
2551 gui->mainmenu->show_awindow->set_checked(1);
2554 char *MWindow::get_cwindow_display()
2556 char *x11_host = screens < 2 || session->window_config == 0 ?
2557 session->a_x11_host : session->b_x11_host;
2558 return *x11_host ? x11_host : 0;
2561 void MWindow::show_cwindow()
2563 session->show_cwindow = 1;
2564 cwindow->show_window();
2565 gui->mainmenu->show_cwindow->set_checked(1);
2568 void MWindow::show_gwindow()
2570 session->show_gwindow = 1;
2572 gwindow->gui->lock_window("MWindow::show_gwindow");
2573 gwindow->gui->show_window();
2574 gwindow->gui->raise_window();
2575 gwindow->gui->flush();
2576 gwindow->gui->unlock_window();
2578 gui->mainmenu->show_gwindow->set_checked(1);
2580 void MWindow::hide_gwindow()
2582 session->show_gwindow = 0;
2584 gwindow->gui->lock_window("MWindow::show_gwindow");
2585 gwindow->gui->hide_window();
2586 gwindow->gui->unlock_window();
2589 void MWindow::show_lwindow()
2591 session->show_lwindow = 1;
2592 lwindow->gui->lock_window("MWindow::show_lwindow");
2593 lwindow->gui->show_window();
2594 lwindow->gui->raise_window();
2595 lwindow->gui->flush();
2596 lwindow->gui->unlock_window();
2597 gui->mainmenu->show_lwindow->set_checked(1);
2600 int MWindow::tile_windows(int window_config)
2602 int need_reload = 0;
2603 int play_config = window_config==0 ? 0 : 1;
2604 edl->session->playback_config->load_defaults(defaults, play_config);
2605 session->default_window_positions(window_config);
2606 if( screens == 1 ) {
2607 gui->default_positions();
2608 sync_parameters(CHANGE_ALL);
2615 void MWindow::toggle_loop_playback()
2617 edl->local_session->loop_playback = !edl->local_session->loop_playback;
2618 set_loop_boundaries();
2621 gui->draw_overlays(1);
2622 sync_parameters(CHANGE_PARAMS);
2625 //void MWindow::set_titles(int value)
2627 // edl->session->show_titles = value;
2628 // trackmovement(edl->local_session->track_start);
2631 void MWindow::set_screens(int value)
2636 void MWindow::set_auto_keyframes(int value, int lock_mwindow, int lock_cwindow)
2638 if(lock_mwindow) gui->lock_window("MWindow::set_auto_keyframes");
2639 edl->session->auto_keyframes = value;
2640 gui->mbuttons->edit_panel->keyframe->update(value);
2642 if(lock_mwindow) gui->unlock_window();
2644 if(lock_cwindow) cwindow->gui->lock_window("MWindow::set_auto_keyframes");
2645 cwindow->gui->edit_panel->keyframe->update(value);
2646 cwindow->gui->flush();
2647 if(lock_cwindow) cwindow->gui->unlock_window();
2650 void MWindow::set_auto_visibility(Autos *autos, int value)
2652 if( autos->type == Autos::AUTOMATION_TYPE_PLUGIN )
2653 edl->session->auto_conf->plugins = value;
2654 else if( autos->autoidx >= 0 )
2655 edl->session->auto_conf->autos[autos->autoidx] = value;
2659 gui->update(0, 1, 0, 0, 0, 0, 0);
2660 gui->mainmenu->update_toggles(1);
2661 gui->unlock_window();
2662 gwindow->gui->update_toggles(1);
2663 gui->lock_window("MWindow::set_auto_visibility");
2666 void MWindow::set_keyframe_type(int mode)
2668 gui->lock_window("MWindow::set_keyframe_type");
2669 edl->local_session->floatauto_type = mode;
2670 gui->mainmenu->update_toggles(0);
2671 gui->unlock_window();
2674 int MWindow::set_editing_mode(int new_editing_mode, int lock_mwindow, int lock_cwindow)
2676 if(lock_mwindow) gui->lock_window("MWindow::set_editing_mode");
2677 edl->session->editing_mode = new_editing_mode;
2678 gui->mbuttons->edit_panel->editing_mode = edl->session->editing_mode;
2679 gui->mbuttons->edit_panel->update();
2680 gui->set_editing_mode(1);
2681 if(lock_mwindow) gui->unlock_window();
2684 if(lock_cwindow) cwindow->gui->lock_window("MWindow::set_editing_mode");
2685 cwindow->gui->edit_panel->update();
2686 cwindow->gui->edit_panel->editing_mode = edl->session->editing_mode;
2687 if(lock_cwindow) cwindow->gui->unlock_window();
2691 void MWindow::toggle_editing_mode()
2693 int mode = edl->session->editing_mode;
2694 if( mode == EDITING_ARROW )
2695 set_editing_mode(EDITING_IBEAM, 0, 1);
2697 set_editing_mode(EDITING_ARROW, 0, 1);
2701 void MWindow::set_labels_follow_edits(int value)
2703 gui->lock_window("MWindow::set_labels_follow_edits");
2704 edl->session->labels_follow_edits = value;
2705 gui->mbuttons->edit_panel->locklabels->update(value);
2706 gui->mainmenu->labels_follow_edits->set_checked(value);
2708 gui->unlock_window();
2711 void MWindow::sync_parameters(int change_type)
2713 if( in_destructor ) return;
2715 // Sync engines which are playing back
2716 if(cwindow->playback_engine->is_playing_back)
2718 if(change_type == CHANGE_PARAMS)
2720 // TODO: block keyframes until synchronization is done
2721 cwindow->playback_engine->sync_parameters(edl);
2726 int command = cwindow->playback_engine->command->command;
2727 cwindow->playback_engine->que->send_command(STOP,
2731 // Waiting for tracking to finish would make the restart position more
2732 // accurate but it can't lock the window to stop tracking for some reason.
2733 // Not waiting for tracking gives a faster response but restart position is
2734 // only as accurate as the last tracking update.
2735 cwindow->playback_engine->interrupt_playback(0);
2736 cwindow->playback_engine->que->send_command(command,
2745 cwindow->refresh_frame(change_type);
2749 void MWindow::age_caches()
2751 // printf("MWindow::age_caches %d %lld %lld %lld %lld\n",
2753 // preferences->cache_size,
2754 // audio_cache->get_memory_usage(1),
2755 // video_cache->get_memory_usage(1),
2756 // frame_cache->get_memory_usage(),
2757 // wave_cache->get_memory_usage(),
2759 frame_cache->age_cache(512);
2760 wave_cache->age_cache(8192);
2762 int64_t memory_usage;
2763 int64_t prev_memory_usage = 0;
2765 int64_t video_size = (int64_t)(preferences->cache_size * 0.80);
2766 while( !result && prev_memory_usage !=
2767 (memory_usage=video_cache->get_memory_usage(1)) &&
2768 memory_usage > video_size ) {
2769 video_cache->delete_oldest();
2770 prev_memory_usage = memory_usage;
2773 prev_memory_usage = 0;
2775 int64_t audio_size = (int64_t)(preferences->cache_size * 0.20);
2776 while( !result && prev_memory_usage !=
2777 (memory_usage=audio_cache->get_memory_usage(1)) &&
2778 memory_usage > audio_size ) {
2779 audio_cache->delete_oldest();
2780 prev_memory_usage = memory_usage;
2784 void MWindow::reset_android_remote()
2786 gui->use_android_remote(preferences->android_remote);
2790 void MWindow::show_keyframe_gui(Plugin *plugin)
2792 keyframe_gui_lock->lock("MWindow::show_keyframe_gui");
2793 // Find existing thread
2794 for(int i = 0; i < keyframe_threads->size(); i++)
2796 if(keyframe_threads->get(i)->plugin == plugin)
2798 keyframe_threads->get(i)->start_window(plugin, 0);
2799 keyframe_gui_lock->unlock();
2804 // Find unused thread
2805 for(int i = 0; i < keyframe_threads->size(); i++)
2807 if(!keyframe_threads->get(i)->plugin)
2809 keyframe_threads->get(i)->start_window(plugin, 0);
2810 keyframe_gui_lock->unlock();
2815 // Create new thread
2816 KeyFrameThread *thread = new KeyFrameThread(this);
2817 keyframe_threads->append(thread);
2818 thread->start_window(plugin, 0);
2820 keyframe_gui_lock->unlock();
2827 void MWindow::show_plugin(Plugin *plugin)
2832 // Remove previously deleted plugin GUIs
2833 dead_plugin_lock->lock("MWindow::show_plugin");
2834 dead_plugins->remove_all_objects();
2835 dead_plugin_lock->unlock();
2837 //printf("MWindow::show_plugin %d\n", __LINE__);
2841 plugin_gui_lock->lock("MWindow::show_plugin");
2842 for(int i = 0; i < plugin_guis->total; i++)
2844 // Pointer comparison
2845 if(plugin_guis->get(i)->plugin == plugin)
2847 plugin_guis->get(i)->raise_window();
2854 //printf("MWindow::show_plugin 1\n");
2855 if( !done && !plugin->track ) {
2856 printf("MWindow::show_plugin track not defined.\n");
2860 PluginServer *server = scan_plugindb(plugin->title,
2861 plugin->track->data_type);
2863 //printf("MWindow::show_plugin %p %d\n", server, server->uses_gui);
2864 if(server && server->uses_gui)
2866 PluginServer *gui = new PluginServer(*server);
2867 plugin_guis->append(gui);
2868 // Needs mwindow to do GUI
2869 gui->set_mwindow(this);
2870 gui->open_plugin(0, preferences, edl, plugin);
2875 plugin_gui_lock->unlock();
2876 //printf("MWindow::show_plugin %d\n", __LINE__);
2879 //printf("MWindow::show_plugin 2\n");
2882 void MWindow::hide_plugin(Plugin *plugin, int lock)
2885 // Update the toggle
2886 gui->lock_window("MWindow::hide_plugin");
2887 gui->update(0, 1, 0, 0, 0, 0, 0);
2888 gui->unlock_window();
2890 if(lock) plugin_gui_lock->lock("MWindow::hide_plugin");
2891 for(int i = 0; i < plugin_guis->total; i++)
2893 if(plugin_guis->get(i)->plugin == plugin)
2895 PluginServer *ptr = plugin_guis->get(i);
2896 plugin_guis->remove(ptr);
2897 if(lock) plugin_gui_lock->unlock();
2898 // Last command executed in client side close
2899 // Schedule for deletion
2906 if(lock) plugin_gui_lock->unlock();
2909 void MWindow::delete_plugin(PluginServer *plugin)
2911 dead_plugin_lock->lock("MWindow::delete_plugin");
2912 dead_plugins->append(plugin);
2913 dead_plugin_lock->unlock();
2916 void MWindow::hide_plugins()
2918 plugin_gui_lock->lock("MWindow::hide_plugins 1");
2919 while(plugin_guis->size())
2921 PluginServer *ptr = plugin_guis->get(0);
2922 plugin_guis->remove(ptr);
2923 plugin_gui_lock->unlock();
2924 // Last command executed in client side close
2925 // Schedule for deletion
2928 plugin_gui_lock->lock("MWindow::hide_plugins 2");
2930 plugin_gui_lock->unlock();
2932 hide_keyframe_guis();
2935 void MWindow::hide_keyframe_guis()
2937 keyframe_gui_lock->lock("MWindow::hide_keyframe_guis");
2938 for(int i = 0; i < keyframe_threads->size(); i++)
2940 keyframe_threads->get(i)->close_window();
2942 keyframe_gui_lock->unlock();
2945 void MWindow::hide_keyframe_gui(Plugin *plugin)
2947 keyframe_gui_lock->lock("MWindow::hide_keyframe_gui");
2948 for(int i = 0; i < keyframe_threads->size(); i++)
2950 if(keyframe_threads->get(i)->plugin == plugin)
2952 keyframe_threads->get(i)->close_window();
2956 keyframe_gui_lock->unlock();
2959 void MWindow::update_keyframe_guis()
2961 // Send new configuration to keyframe GUI's
2962 keyframe_gui_lock->lock("MWindow::update_keyframe_guis");
2963 for(int i = 0; i < keyframe_threads->size(); i++)
2965 KeyFrameThread *ptr = keyframe_threads->get(i);
2966 if(edl->tracks->plugin_exists(ptr->plugin))
2970 ptr->close_window();
2973 keyframe_gui_lock->unlock();
2976 void MWindow::update_plugin_guis(int do_keyframe_guis)
2978 // Send new configuration to plugin GUI's
2979 plugin_gui_lock->lock("MWindow::update_plugin_guis");
2981 for(int i = 0; i < plugin_guis->size(); i++)
2983 PluginServer *ptr = plugin_guis->get(i);
2984 if(edl->tracks->plugin_exists(ptr->plugin))
2988 // Schedule for deletion if no plugin
2989 plugin_guis->remove_number(i);
2998 // Change plugin variable if not visible
2999 Track *track = edl->tracks->first;
3002 for(int i = 0; i < track->plugin_set.size(); i++)
3004 Plugin *plugin = (Plugin*)track->plugin_set[i]->first;
3008 for(int i = 0; i < plugin_guis->size(); i++)
3010 PluginServer *server = plugin_guis->get(i);
3011 if(server->plugin == plugin)
3018 if(!got_it) plugin->show = 0;
3020 plugin = (Plugin*)plugin->next;
3024 track = track->next;
3027 plugin_gui_lock->unlock();
3030 if(do_keyframe_guis) update_keyframe_guis();
3033 int MWindow::plugin_gui_open(Plugin *plugin)
3036 plugin_gui_lock->lock("MWindow::plugin_gui_open");
3037 for(int i = 0; i < plugin_guis->total; i++)
3039 if(plugin_guis->get(i)->plugin->identical_location(plugin))
3045 plugin_gui_lock->unlock();
3049 void MWindow::render_plugin_gui(void *data, Plugin *plugin)
3051 plugin_gui_lock->lock("MWindow::render_plugin_gui");
3052 for(int i = 0; i < plugin_guis->total; i++)
3054 if(plugin_guis->get(i)->plugin->identical_location(plugin))
3056 plugin_guis->get(i)->render_gui(data);
3060 plugin_gui_lock->unlock();
3063 void MWindow::render_plugin_gui(void *data, int size, Plugin *plugin)
3065 plugin_gui_lock->lock("MWindow::render_plugin_gui");
3066 for(int i = 0; i < plugin_guis->total; i++)
3068 if(plugin_guis->get(i)->plugin->identical_location(plugin))
3070 plugin_guis->get(i)->render_gui(data, size);
3074 plugin_gui_lock->unlock();
3078 void MWindow::update_plugin_states()
3080 plugin_gui_lock->lock("MWindow::update_plugin_states");
3081 for(int i = 0; i < plugin_guis->total; i++)
3085 Plugin *src_plugin = plugin_guis->get(i)->plugin;
3086 PluginServer *src_plugingui = plugin_guis->get(i);
3088 // Search for plugin in EDL. Only the master EDL shows plugin GUIs.
3089 for(Track *track = edl->tracks->first;
3091 track = track->next)
3094 j < track->plugin_set.total && !result;
3097 PluginSet *plugin_set = track->plugin_set[j];
3098 for(Plugin *plugin = (Plugin*)plugin_set->first;
3100 plugin = (Plugin*)plugin->next)
3102 if(plugin == src_plugin &&
3103 !strcmp(plugin->title, src_plugingui->title)) result = 1;
3109 // Doesn't exist anymore
3112 hide_plugin(src_plugin, 0);
3116 plugin_gui_lock->unlock();
3120 void MWindow::update_plugin_titles()
3122 for(int i = 0; i < plugin_guis->total; i++)
3124 plugin_guis->get(i)->update_title();
3128 int MWindow::asset_to_edl(EDL *new_edl,
3130 RecordLabels *labels)
3132 const int debug = 0;
3133 if(debug) printf("MWindow::asset_to_edl %d new_asset->layers=%d\n",
3136 // Keep frame rate, sample rate, and output size unchanged.
3137 // These parameters would revert the project if VWindow displayed an asset
3138 // of different size than the project.
3139 if(new_asset->video_data)
3141 new_edl->session->video_tracks = new_asset->layers;
3144 new_edl->session->video_tracks = 0;
3146 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3152 if(new_asset->audio_data)
3154 new_edl->session->audio_tracks = new_asset->channels;
3157 new_edl->session->audio_tracks = 0;
3158 //printf("MWindow::asset_to_edl 2 %d %d\n", new_edl->session->video_tracks, new_edl->session->audio_tracks);
3160 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3161 new_edl->create_default_tracks();
3162 //printf("MWindow::asset_to_edl 2 %d %d\n", new_edl->session->video_tracks, new_edl->session->audio_tracks);
3163 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3167 //printf("MWindow::asset_to_edl 3\n");
3168 new_edl->insert_asset(new_asset,
3173 //printf("MWindow::asset_to_edl 3\n");
3174 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3176 // Align cursor on frames:: clip the new_edl to the minimum of the last joint frame.
3177 if(edl->session->cursor_on_frames)
3179 double length = new_edl->tracks->total_length();
3180 double edl_length = new_edl->tracks->total_length_framealigned(edl->session->frame_rate);
3181 new_edl->tracks->clear(length, edl_length, 1, 1);
3187 char string[BCTEXTLEN];
3189 fs.extract_name(string, new_asset->path);
3190 //printf("MWindow::asset_to_edl 3\n");
3192 strcpy(new_edl->local_session->clip_title, string);
3193 //printf("MWindow::asset_to_edl 4 %s\n", string);
3194 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
3199 int MWindow::edl_to_nested(EDL *new_edl,
3203 // Keep frame rate, sample rate, and output size unchanged.
3204 // These parameters would revert the project if VWindow displayed an asset
3205 // of different size than the project.
3209 // Nest all video & audio outputs
3210 new_edl->session->video_tracks = 1;
3211 new_edl->session->audio_tracks = nested_edl->session->audio_channels;
3212 new_edl->create_default_tracks();
3216 new_edl->insert_asset(0,
3222 char string[BCTEXTLEN];
3224 fs.extract_name(string, nested_edl->path);
3225 //printf("MWindow::edl_to_nested %p %s\n", nested_edl, nested_edl->path);
3227 strcpy(new_edl->local_session->clip_title, string);
3232 // Reset everything after a load.
3233 void MWindow::update_project(int load_mode)
3235 const int debug = 0;
3237 if(debug) PRINT_TRACE
3239 edl->tracks->update_y_pixels(theme);
3241 if(debug) PRINT_TRACE
3243 if(load_mode == LOADMODE_REPLACE ||
3244 load_mode == LOADMODE_REPLACE_CONCATENATE)
3249 gui->update(1, 1, 1, 1, 1, 1, 1);
3250 if(debug) PRINT_TRACE
3251 gui->unlock_window();
3253 cwindow->gui->lock_window("MWindow::update_project 1");
3254 cwindow->update(0, 0, 1, 1, 1);
3255 cwindow->gui->unlock_window();
3257 if(debug) PRINT_TRACE
3259 // Close all the vwindows
3260 if( load_mode == LOADMODE_REPLACE ||
3261 load_mode == LOADMODE_REPLACE_CONCATENATE ) {
3262 if(debug) PRINT_TRACE
3263 int first_vwindow = 0;
3264 if(session->show_vwindow) first_vwindow = 1;
3265 // Change visible windows to no source
3266 for(int i = 0; i < first_vwindow && i < vwindows.size(); i++) {
3267 VWindow *vwindow = vwindows[i];
3268 if( !vwindow->is_running() ) continue;
3269 vwindow->change_source(-1);
3272 // Close remaining windows
3273 for(int i = first_vwindow; i < vwindows.size(); i++) {
3274 VWindow *vwindow = vwindows[i];
3275 if( !vwindow->is_running() ) continue;
3276 vwindow->close_window();
3278 if(debug) PRINT_TRACE
3282 for( int i=0; i<edl->mixers.size(); ++i ) {
3283 Mixer *mixer = edl->mixers[i];
3284 ZWindow *zwindow = get_mixer(mixer);
3285 zwindow->set_title(mixer->title);
3290 if(vwindows.size()) {
3291 VWindow *vwindow = vwindows[DEFAULT_VWINDOW];
3292 if( vwindow->is_running() ) {
3293 vwindow->gui->lock_window("MWindow::update_project");
3295 vwindow->gui->unlock_window();
3300 if(debug) PRINT_TRACE
3301 cwindow->gui->lock_window("MWindow::update_project 2");
3302 cwindow->gui->timebar->update(0);
3303 cwindow->gui->unlock_window();
3305 if(debug) PRINT_TRACE
3306 cwindow->refresh_frame(CHANGE_ALL);
3308 awindow->gui->async_update_assets();
3309 if(debug) PRINT_TRACE
3311 gui->lock_window("MWindow::update_project");
3312 gui->update_mixers(0, 0);
3314 if(debug) PRINT_TRACE
3317 void MWindow::remove_indexfile(Indexable *indexable)
3319 if( !indexable->is_asset ) return;
3320 Asset *asset = (Asset *)indexable;
3322 IndexFile::delete_index(preferences, asset, ".toc");
3323 IndexFile::delete_index(preferences, asset, ".idx");
3324 IndexFile::delete_index(preferences, asset, ".mkr");
3327 void MWindow::rebuild_indices()
3329 for(int i = 0; i < session->drag_assets->total; i++)
3331 Indexable *indexable = session->drag_assets->get(i);
3332 //printf("MWindow::rebuild_indices 1 %s\n", indexable->path);
3333 remove_indexfile(indexable);
3334 // Schedule index build
3335 IndexState *index_state = indexable->index_state;
3336 index_state->index_status = INDEX_NOTTESTED;
3337 if( indexable->is_asset ) {
3338 Asset *asset = (Asset *)indexable;
3339 if( asset->format != FILE_PCM ) {
3340 asset->format = FILE_UNKNOWN;
3341 asset->reset_audio();
3343 asset->reset_video();
3344 // File file; // re-probe the asset
3345 // file.open_file(preferences, asset, 1, 0);
3347 mainindexes->add_next_asset(0, indexable);
3349 mainindexes->start_build();
3353 void MWindow::save_backup()
3357 edl->set_path(session->filename);
3358 char backup_path[BCTEXTLEN];
3359 snprintf(backup_path, sizeof(backup_path), "%s/%s",
3360 File::get_config_path(), BACKUP_FILE);
3361 edl->save_xml(&file, backup_path, 0, 0);
3362 file.terminate_string();
3364 fs.complete_path(backup_path);
3366 if(file.write_to_file(backup_path))
3369 sprintf(string2, _("Couldn't open %s for writing."), backup_path);
3370 gui->show_message(string2);
3374 void MWindow::load_backup()
3376 ArrayList<char*> path_list;
3377 path_list.set_array_delete();
3379 char backup_path[BCTEXTLEN];
3380 snprintf(backup_path, sizeof(backup_path), "%s/%s",
3381 File::get_config_path(), BACKUP_FILE);
3383 fs.complete_path(backup_path);
3385 path_list.append(out_path = new char[strlen(backup_path) + 1]);
3386 strcpy(out_path, backup_path);
3388 load_filenames(&path_list, LOADMODE_REPLACE, 0);
3389 edl->local_session->clip_title[0] = 0;
3390 // This is unique to backups since the path of the backup is different than the
3391 // path of the project.
3392 set_filename(edl->path);
3393 path_list.remove_all_objects();
3397 static inline int gcd(int m, int n)
3400 if( m < n ) { r = m; m = n; n = r; }
3401 while( (r = m % n) != 0 ) { m = n; n = r; }
3405 int MWindow::create_aspect_ratio(float &w, float &h, int width, int height)
3408 if(!width || !height) return 1;
3409 if( width == 720 && (height == 480 || height == 576) ) {
3410 w = 4; h = 3; return 0; // for NTSC and PAL
3412 double ar = (double)width / height;
3413 // square-ish pixels
3414 if( EQUIV(ar, 1.0000) ) return 0;
3415 if( EQUIV(ar, 1.3333) ) { w = 4; h = 3; return 0; }
3416 if( EQUIV(ar, 1.7777) ) { w = 16; h = 9; return 0; }
3417 if( EQUIV(ar, 2.1111) ) { w = 19; h = 9; return 0; }
3418 if( EQUIV(ar, 2.2222) ) { w = 20; h = 9; return 0; }
3419 if( EQUIV(ar, 2.3333) ) { w = 21; h = 9; return 0; }
3420 int ww = width, hh = height;
3421 // numerator, denominator must be under mx
3422 int mx = 255, n = gcd(ww, hh);
3423 if( n > 1 ) { ww /= n; hh /= n; }
3424 // search near height in case extra/missing lines
3425 if( ww >= mx || hh >= mx ) {
3426 double err = height; // +/- 2 percent height
3427 for( int m=2*height/100, i=1; m>0; i=i>0 ? -i : (--m, -i+1) ) {
3428 int iw = width, ih = height+i;
3429 if( (n=gcd(iw, ih)) > 1 ) {
3430 int u = iw/n; if( u >= mx ) continue;
3431 int v = ih/n; if( v >= mx ) continue;
3432 double r = (double) u/v, er = fabs(ar-r);
3433 if( er >= err ) continue;
3434 err = er; ww = u; hh = v;
3443 void MWindow::reset_caches()
3445 frame_cache->remove_all();
3446 wave_cache->remove_all();
3447 audio_cache->remove_all();
3448 video_cache->remove_all();
3449 if( cwindow->playback_engine ) {
3450 if( cwindow->playback_engine->audio_cache )
3451 cwindow->playback_engine->audio_cache->remove_all();
3452 if( cwindow->playback_engine->video_cache )
3453 cwindow->playback_engine->video_cache->remove_all();
3455 for(int i = 0; i < vwindows.size(); i++) {
3456 VWindow *vwindow = vwindows[i];
3457 if( !vwindow->is_running() ) continue;
3458 if( !vwindow->playback_engine ) continue;
3459 if( vwindow->playback_engine->audio_cache )
3460 vwindow->playback_engine->audio_cache->remove_all();
3461 if( vwindow->playback_engine->video_cache )
3462 vwindow->playback_engine->video_cache->remove_all();
3466 void MWindow::remove_asset_from_caches(Asset *asset)
3468 frame_cache->remove_asset(asset);
3469 wave_cache->remove_asset(asset);
3470 audio_cache->delete_entry(asset);
3471 video_cache->delete_entry(asset);
3472 if( cwindow->playback_engine && cwindow->playback_engine->audio_cache )
3473 cwindow->playback_engine->audio_cache->delete_entry(asset);
3474 if( cwindow->playback_engine && cwindow->playback_engine->video_cache )
3475 cwindow->playback_engine->video_cache->delete_entry(asset);
3476 for(int i = 0; i < vwindows.size(); i++) {
3477 VWindow *vwindow = vwindows[i];
3478 if( !vwindow->is_running() ) continue;
3479 if( !vwindow->playback_engine ) continue;
3480 if( vwindow->playback_engine->audio_cache )
3481 vwindow->playback_engine->audio_cache->delete_entry(asset);
3482 if( vwindow->playback_engine->video_cache )
3483 vwindow->playback_engine->video_cache->delete_entry(asset);
3488 void MWindow::remove_assets_from_project(int push_undo, int redraw,
3489 ArrayList<Indexable*> *drag_assets, ArrayList<EDL*> *drag_clips)
3491 for(int i = 0; i < drag_assets->total; i++) {
3492 Indexable *indexable = drag_assets->get(i);
3493 if(indexable->is_asset) remove_asset_from_caches((Asset*)indexable);
3496 // Remove from VWindow.
3497 for(int i = 0; i < session->drag_clips->total; i++) {
3498 for(int j = 0; j < vwindows.size(); j++) {
3499 VWindow *vwindow = vwindows[j];
3500 if( !vwindow->is_running() ) continue;
3501 if(session->drag_clips->get(i) == vwindow->get_edl()) {
3502 vwindow->gui->lock_window("MWindow::remove_assets_from_project 1");
3503 vwindow->delete_source(1, 1);
3504 vwindow->gui->unlock_window();
3509 for(int i = 0; i < drag_assets->size(); i++) {
3510 for(int j = 0; j < vwindows.size(); j++) {
3511 VWindow *vwindow = vwindows[j];
3512 if( !vwindow->is_running() ) continue;
3513 if(drag_assets->get(i) == vwindow->get_source()) {
3514 vwindow->gui->lock_window("MWindow::remove_assets_from_project 2");
3515 vwindow->delete_source(1, 1);
3516 vwindow->gui->unlock_window();
3521 for(int i = 0; i < drag_assets->size(); i++) {
3522 Indexable *indexable = drag_assets->get(i);
3523 remove_indexfile(indexable);
3526 //printf("MWindow::rebuild_indices 1 %s\n", indexable->path);
3527 if(push_undo) undo->update_undo_before();
3528 if(drag_assets) edl->remove_from_project(drag_assets);
3529 if(drag_clips) edl->remove_from_project(drag_clips);
3530 if(redraw) save_backup();
3531 if(push_undo) undo->update_undo_after(_("remove assets"), LOAD_ALL);
3535 gui->lock_window("MWindow::remove_assets_from_project 3");
3536 gui->update(1, 1, 1, 1, 0, 1, 0);
3537 gui->unlock_window();
3539 // Removes from playback here
3540 sync_parameters(CHANGE_ALL);
3543 awindow->gui->async_update_assets();
3546 void MWindow::remove_assets_from_disk()
3549 for(int i = 0; i < session->drag_assets->total; i++)
3551 remove(session->drag_assets->get(i)->path);
3554 remove_assets_from_project(1,
3556 session->drag_assets,
3557 session->drag_clips);
3560 void MWindow::dump_plugins(FILE *fp)
3562 if( !plugindb ) return;
3563 for(int i = 0; i < plugindb->total; i++)
3565 fprintf(fp, "type=%d audio=%d video=%d rt=%d multi=%d"
3566 " synth=%d transition=%d theme=%d %s\n",
3567 plugindb->get(i)->plugin_type,
3568 plugindb->get(i)->audio,
3569 plugindb->get(i)->video,
3570 plugindb->get(i)->realtime,
3571 plugindb->get(i)->multichannel,
3572 plugindb->get(i)->get_synthesis(),
3573 plugindb->get(i)->transition,
3574 plugindb->get(i)->theme,
3575 plugindb->get(i)->title);
3579 void MWindow::dump_edl(FILE *fp)
3585 void MWindow::dump_undo(FILE *fp)
3591 void MWindow::dump_exe(FILE *fp)
3593 char proc_path[BCTEXTLEN], exe_path[BCTEXTLEN];
3594 sprintf(proc_path, "/proc/%d/exe", (int)getpid());
3596 int ret = -1, n = 100;
3597 for( int len; (len=readlink(proc_path, exe_path, sizeof(exe_path)))>0; --n ) {
3598 exe_path[len] = 0; strcpy(proc_path, exe_path);
3601 if( n < 0 || ret < 0 ) { fprintf(fp,"readlink: %m\n"); return; }
3604 if( stat(proc_path,&st) ) { fprintf(fp,"stat: %m\n"); return; }
3605 fprintf(fp, "path: %s = %9jd bytes\n",proc_path,st.st_size);
3606 struct tm *tm = localtime(&st.st_mtime);
3608 strftime(mtime, sizeof(mtime), "%F %T", tm);
3609 fprintf(fp,"mtime: %s\n", mtime);
3611 // people hit ctl-c waiting for this
3612 int fd = open(proc_path,O_RDONLY+O_NONBLOCK);
3613 if( fd < 0 ) { fprintf(fp,"open: %m\n"); return; }
3616 int64_t pagsz = sysconf(_SC_PAGE_SIZE);
3617 int64_t maxsz = 1024*pagsz;
3618 int64_t size = st.st_size, pos = 0;
3620 while( (bfrsz = size-pos) > 0 ) {
3621 if( bfrsz > maxsz ) bfrsz = maxsz;
3622 bfr = (uint8_t *)mmap(NULL, bfrsz, PROT_READ,
3623 MAP_PRIVATE+MAP_NORESERVE+MAP_POPULATE, fd, pos);
3624 if( bfr == MAP_FAILED ) break;
3625 sha1.addBytes(bfr, bfrsz);
3630 ret = pos < size ? EIO : 0;
3631 fprintf(fp, "SHA1: ");
3632 uint8_t digest[20]; sha1.computeHash(digest);
3633 for( int i=0; i<20; ++i ) fprintf(fp, "%02x", digest[i]);
3634 if( ret < 0 ) fprintf(fp, " (ret %d)", ret);
3635 if( pos < st.st_size ) fprintf(fp, " (pos %jd)", pos);
3640 void MWindow::trap_hook(FILE *fp, void *vp)
3642 MWindow *mwindow = (MWindow *)vp;
3643 // fprintf(fp, "\nPLUGINS:\n");
3644 // mwindow->dump_plugins(fp);
3645 fprintf(fp, "\nEDL:\n");
3646 mwindow->dump_edl(fp);
3647 fprintf(fp, "\nUNDO:\n");
3648 mwindow->dump_undo(fp);
3649 fprintf(fp, "\nEXE: %s\n", AboutPrefs::build_timestamp);
3650 mwindow->dump_exe(fp);
3658 int MWindow::save_defaults()
3660 gui->save_defaults(defaults);
3661 edl->save_defaults(defaults);
3662 session->save_defaults(defaults);
3663 preferences->save_defaults(defaults);
3665 for(int i = 0; i < plugin_guis->total; i++)
3667 // Pointer comparison
3668 plugin_guis->get(i)->save_defaults();
3670 awindow->save_defaults(defaults);
3676 int MWindow::run_script(FileXML *script)
3678 int result = 0, result2 = 0;
3679 while(!result && !result2)
3681 result = script->read_tag();
3684 if(script->tag.title_is("new_project"))
3686 // Run new in immediate mode.
3687 // gui->mainmenu->new_project->run_script(script);
3690 if(script->tag.title_is("record"))
3692 // Run record as a thread. It is a terminal command.
3694 // Will read the complete scipt file without letting record read it if not
3700 printf("MWindow::run_script: Unrecognized command: %s\n",script->tag.get_title() );
3707 // ================================= synchronization
3710 int MWindow::interrupt_indexes()
3712 mainprogress->cancelled = 1;
3713 mainindexes->interrupt_build();
3719 void MWindow::next_time_format()
3721 switch(edl->session->time_format)
3723 case TIME_HMS: edl->session->time_format = TIME_HMSF; break;
3724 case TIME_HMSF: edl->session->time_format = TIME_SAMPLES; break;
3725 case TIME_SAMPLES: edl->session->time_format = TIME_SAMPLES_HEX; break;
3726 case TIME_SAMPLES_HEX: edl->session->time_format = TIME_FRAMES; break;
3727 case TIME_FRAMES: edl->session->time_format = TIME_FEET_FRAMES; break;
3728 case TIME_FEET_FRAMES: edl->session->time_format = TIME_SECONDS; break;
3729 case TIME_SECONDS: edl->session->time_format = TIME_HMS; break;
3732 time_format_common();
3735 void MWindow::prev_time_format()
3737 switch(edl->session->time_format)
3739 case TIME_HMS: edl->session->time_format = TIME_SECONDS; break;
3740 case TIME_SECONDS: edl->session->time_format = TIME_FEET_FRAMES; break;
3741 case TIME_FEET_FRAMES: edl->session->time_format = TIME_FRAMES; break;
3742 case TIME_FRAMES: edl->session->time_format = TIME_SAMPLES_HEX; break;
3743 case TIME_SAMPLES_HEX: edl->session->time_format = TIME_SAMPLES; break;
3744 case TIME_SAMPLES: edl->session->time_format = TIME_HMSF; break;
3745 case TIME_HMSF: edl->session->time_format = TIME_HMS; break;
3748 time_format_common();
3751 void MWindow::time_format_common()
3753 gui->lock_window("MWindow::next_time_format");
3754 gui->redraw_time_dependancies();
3757 char string[BCTEXTLEN], string2[BCTEXTLEN];
3758 sprintf(string, _("Using %s"), Units::print_time_format(edl->session->time_format, string2));
3759 gui->show_message(string);
3761 gui->unlock_window();
3765 int MWindow::set_filename(const char *filename)
3767 if( filename != session->filename )
3768 strcpy(session->filename, filename);
3769 if( filename != edl->path )
3770 strcpy(edl->path, filename);
3774 if(filename[0] == 0)
3776 gui->set_title(PROGRAM_NAME);
3781 char string[BCTEXTLEN], string2[BCTEXTLEN];
3782 dir.extract_name(string, filename);
3783 sprintf(string2, PROGRAM_NAME ": %s", string);
3784 gui->set_title(string2);
3797 int MWindow::set_loop_boundaries()
3799 double start = edl->local_session->get_selectionstart();
3800 double end = edl->local_session->get_selectionend();
3808 if(edl->tracks->total_length())
3811 end = edl->tracks->total_length();
3818 if(edl->local_session->loop_playback && start != end)
3820 edl->local_session->loop_start = start;
3821 edl->local_session->loop_end = end;
3832 int MWindow::reset_meters()
3834 cwindow->gui->lock_window("MWindow::reset_meters 1");
3835 cwindow->gui->meters->reset_meters();
3836 cwindow->gui->unlock_window();
3838 for(int j = 0; j < vwindows.size(); j++) {
3839 VWindow *vwindow = vwindows[j];
3840 if( !vwindow->is_running() ) continue;
3841 vwindow->gui->lock_window("MWindow::reset_meters 2");
3842 vwindow->gui->meters->reset_meters();
3843 vwindow->gui->unlock_window();
3846 lwindow->gui->lock_window("MWindow::reset_meters 3");
3847 lwindow->gui->panel->reset_meters();
3848 lwindow->gui->unlock_window();
3850 gui->lock_window("MWindow::reset_meters 4");
3851 gui->reset_meters();
3852 gui->unlock_window();
3857 void MWindow::resync_guis()
3861 gui->lock_window("MWindow::resync_guis");
3862 gui->update(1, 1, 1, 1, 1, 1, 0);
3863 gui->unlock_window();
3865 cwindow->gui->lock_window("MWindow::resync_guis");
3866 cwindow->gui->resize_event(cwindow->gui->get_w(),
3867 cwindow->gui->get_h());
3868 int channels = edl->session->audio_channels;
3869 cwindow->gui->meters->set_meters(channels, 1);
3870 cwindow->gui->flush();
3871 cwindow->gui->unlock_window();
3873 for(int i = 0; i < vwindows.size(); i++) {
3874 VWindow *vwindow = vwindows[i];
3875 if( !vwindow->is_running() ) continue;
3876 vwindow->gui->lock_window("MWindow::resync_guis");
3877 vwindow->gui->resize_event(vwindow->gui->get_w(),
3878 vwindow->gui->get_h());
3879 vwindow->gui->meters->set_meters(channels, 1);
3880 vwindow->gui->flush();
3881 vwindow->gui->unlock_window();
3884 lwindow->gui->lock_window("MWindow::resync_guis");
3885 lwindow->gui->panel->set_meters(channels, 1);
3886 lwindow->gui->flush();
3887 lwindow->gui->unlock_window();
3890 if(((edl->session->output_w % 4) ||
3891 (edl->session->output_h % 4)) &&
3892 edl->session->playback_config->vconfig->driver == PLAYBACK_X11_GL)
3894 MainError::show_error(
3895 _("This project's dimensions are not multiples of 4 so\n"
3896 "it can't be rendered by OpenGL."));
3901 sync_parameters(CHANGE_ALL);
3904 int MWindow::select_asset(Asset *asset, int vstream, int astream, int delete_tracks)
3906 File *file = new File;
3907 EDLSession *session = edl->session;
3908 double old_framerate = session->frame_rate;
3909 double old_samplerate = session->sample_rate;
3910 int old_auto_keyframes = session->auto_keyframes;
3911 session->auto_keyframes = 0;
3912 int result = file->open_file(preferences, asset, 1, 0);
3913 if( !result && delete_tracks > 0 )
3914 undo->update_undo_before();
3915 int video_layers = asset->get_video_layers();
3916 if( !result && asset->video_data && vstream < video_layers ) {
3917 // try to get asset up to date, may fail
3918 file->select_video_stream(asset, vstream);
3919 // either way use what was/is there.
3920 double framerate = asset->get_frame_rate();
3921 int width = asset->get_w();
3922 int height = asset->get_h();
3923 // must be multiple of 4 for opengl
3924 width = (width+3) & ~3; height = (height+3) & ~3;
3925 int driver = session->playback_config->vconfig->driver;
3926 int color_model = file->get_best_colormodel(asset, driver);
3927 // color_model = BC_CModels::is_yuv(color_model) ?
3928 // BC_CModels::has_alpha(color_model) ? BC_YUVA8888 : BC_YUV888 :
3929 // BC_CModels::is_float(color_model) ?
3930 // BC_CModels::has_alpha(color_model) ? BC_RGBA_FLOAT : BC_RGB_FLOAT :
3931 // BC_CModels::has_alpha(color_model) ? BC_RGBA8888 : BC_RGB888;
3932 // have alpha for now
3933 color_model = BC_CModels::is_yuv(color_model) ? BC_YUVA8888 :
3934 BC_CModels::is_float(color_model) ? BC_RGBA_FLOAT : BC_RGBA8888;
3935 session->color_model = color_model;
3936 session->output_w = width;
3937 session->output_h = height;
3938 session->frame_rate = framerate;
3939 // not, asset->actual_width/actual_height
3940 asset->width = session->output_w;
3941 asset->height = session->output_h;
3942 asset->frame_rate = session->frame_rate;
3943 create_aspect_ratio(session->aspect_w, session->aspect_h,
3944 session->output_w, session->output_h);
3945 Track *track = edl->tracks->first;
3946 for( Track *next_track=0; track; track=next_track ) {
3947 next_track = track->next;
3948 if( track->data_type != TRACK_VIDEO ) continue;
3949 if( delete_tracks ) {
3950 Edit *edit = track->edits->first;
3951 for( Edit *next_edit=0; edit; edit=next_edit ) {
3952 next_edit = edit->next;
3953 if( edit->channel != vstream ||
3954 !edit->asset || !edit->asset->is_asset ||
3955 !asset->equivalent(*edit->asset,1,1,edl) )
3959 if( track->edits->first ) {
3960 track->track_w = edl->session->output_w;
3961 track->track_h = edl->session->output_h;
3963 else if( delete_tracks )
3964 edl->tracks->delete_track(track);
3967 edl->resample(old_framerate, session->frame_rate, TRACK_VIDEO);
3969 if( !result && asset->audio_data && asset->channels > 0 ) {
3970 session->sample_rate = asset->get_sample_rate();
3971 int64_t channel_mask = 0;
3972 int astrm = !asset->video_data || vstream >= video_layers ? -1 :
3973 file->get_audio_for_video(vstream, astream, channel_mask);
3974 if( astrm >= 0 ) file->select_audio_stream(asset, astrm);
3975 if( astrm < 0 || !channel_mask ) channel_mask = (1<<asset->channels)-1;
3977 for( uint64_t mask=channel_mask; mask!=0; mask>>=1 ) channels += mask & 1;
3978 if( channels < 1 ) channels = 1;
3979 if( channels > 6 ) channels = 6;
3980 session->audio_tracks = session->audio_channels = channels;
3981 switch( channels ) {
3983 session->achannel_positions[0] = 90;
3984 session->achannel_positions[1] = 150;
3985 session->achannel_positions[2] = 30;
3986 session->achannel_positions[3] = 210;
3987 session->achannel_positions[4] = 330;
3988 session->achannel_positions[5] = 270;
3991 session->achannel_positions[0] = 180;
3992 session->achannel_positions[1] = 0;
3995 session->achannel_positions[1] = 90;
3998 if( !channels ) break;
3999 double t = 0, dt = 360./channels;
4000 for( int i=channels; --i>=0; t+=dt )
4001 session->achannel_positions[i] = int(t+0.5);
4004 remap_audio(MWindow::AUDIO_1_TO_1);
4006 if( delete_tracks ) {
4007 Track *track = edl->tracks->first;
4008 for( Track *next_track=0; track; track=next_track ) {
4009 next_track = track->next;
4010 if( track->data_type != TRACK_AUDIO ) continue;
4011 Edit *edit = track->edits->first;
4012 for( Edit *next_edit=0; edit; edit=next_edit ) {
4013 next_edit = edit->next;
4014 if( !((1<<edit->channel) & channel_mask) ||
4015 !edit->asset || !edit->asset->is_asset ||
4016 !asset->equivalent(*edit->asset,1,1,edl) )
4019 if( !track->edits->first )
4020 edl->tracks->delete_track(track);
4024 edl->resample(old_samplerate, session->sample_rate, TRACK_AUDIO);
4027 session->auto_keyframes = old_auto_keyframes;
4028 if( !result && delete_tracks > 0 ) {
4030 undo->update_undo_after(_("select asset"), LOAD_ALL);
4036 int MWindow::select_asset(int vtrack, int delete_tracks)
4038 Track *track = edl->tracks->get(vtrack, TRACK_VIDEO);
4040 track = edl->tracks->get(vtrack, TRACK_AUDIO);
4041 if( !track ) return 1;
4042 Edit *edit = track->edits->first;
4043 if( !edit ) return 1;
4044 Asset *asset = edit->asset;
4045 if( !asset || !asset->is_asset ) return 1;
4046 return select_asset(asset, edit->channel, 0, delete_tracks);
4049 void MWindow::dump_plugindb(FILE *fp)
4051 if( !plugindb ) return;
4052 for(int i = 0; i < plugindb->total; i++)
4053 plugindb->get(i)->dump(fp);
4056 FloatAuto* MWindow::get_float_auto(PatchGUI *patch,int idx)
4059 double unit_position = edl->local_session->get_selectionstart(1);
4060 unit_position = patch->track->to_units(unit_position, 0);
4062 FloatAutos *ptr = (FloatAutos*)patch->track->automation->autos[idx];
4063 return (FloatAuto*)ptr->get_prev_auto( (long)unit_position, PLAY_FORWARD, current);
4066 IntAuto* MWindow::get_int_auto(PatchGUI *patch,int idx)
4069 double unit_position = edl->local_session->get_selectionstart(1);
4070 unit_position = patch->track->to_units(unit_position, 0);
4072 IntAutos *ptr = (IntAutos*)patch->track->automation->autos[idx];
4073 return (IntAuto*)ptr->get_prev_auto( (long)unit_position, PLAY_FORWARD, current);
4076 PanAuto* MWindow::get_pan_auto(PatchGUI *patch)
4079 double unit_position = edl->local_session->get_selectionstart(1);
4080 unit_position = patch->track->to_units(unit_position, 0);
4082 PanAutos *ptr = (PanAutos*)patch->track->automation->autos[AUTOMATION_PAN];
4083 return (PanAuto*)ptr->get_prev_auto( (long)unit_position, PLAY_FORWARD, current);
4086 PatchGUI *MWindow::get_patchgui(Track *track)
4088 PatchGUI *patchgui = 0;
4089 TimelinePane **panes = gui->pane;
4090 for( int i=0; i<TOTAL_PANES && !patchgui; ++i ) {
4091 if( !panes[i] ) continue;
4092 PatchBay *patchbay = panes[i]->patchbay;
4093 if( !patchbay ) continue;
4094 for( int j=0; j<patchbay->patches.total && !patchgui; ++j ) {
4095 if( patchbay->patches.values[j]->track == track )
4096 patchgui = patchbay->patches.values[j];