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
24 #include "audioalsa.h"
26 #include "awindowgui.h"
28 #include "batchrender.h"
29 #include "bcdisplayinfo.h"
30 #include "bcsignals.h"
37 #include "channeldb.h"
38 #include "channelinfo.h"
40 #include "bccmodels.h"
41 #include "commercials.h"
42 #include "cplayback.h"
44 #include "cwindowgui.h"
46 #include "cwindowtool.h"
48 #include "devicedvbinput.inc"
49 #include "dvdcreate.h"
50 #include "editpanel.h"
52 #include "edlsession.h"
54 #include "fileformat.h"
56 #include "filesystem.h"
58 #include "floatautos.h"
59 #include "framecache.h"
61 #include "gwindowgui.h"
62 #include "keyframegui.h"
63 #include "indexfile.h"
65 #include "interlacemodes.h"
67 #include "levelwindowgui.h"
68 #include "levelwindow.h"
69 #include "loadfile.inc"
70 #include "localsession.h"
71 #include "maincursor.h"
72 #include "mainerror.h"
73 #include "mainindexes.h"
75 #include "mainprogress.h"
76 #include "mainsession.h"
80 #include "mwindowgui.h"
82 #include "nestededls.h"
86 #include "playback3d.h"
87 #include "playbackengine.h"
89 #include "pluginserver.h"
90 #include "pluginset.h"
91 #include "preferences.h"
93 #include "recordmonitor.h"
94 #include "recordlabel.h"
95 #include "removefile.h"
97 #include "resourcethread.h"
98 #include "samplescroll.h"
100 #include "sighandler.h"
101 #include "splashgui.h"
102 #include "statusbar.h"
104 #include "threadloader.h"
106 #include "tipwindow.h"
107 #include "trackcanvas.h"
109 #include "tracking.h"
110 #include "trackscroll.h"
112 #include "transition.h"
113 #include "transportque.h"
116 #include "versioninfo.h"
117 #include "videodevice.inc"
118 #include "videowindow.h"
119 #include "vplayback.h"
120 #include "vwindowgui.h"
122 #include "wavecache.h"
125 #include "exportedl.h"
127 #include "defaultformats.h"
128 #include "ntsczones.h"
135 #include <sys/types.h>
136 #include <sys/stat.h>
137 #include <sys/time.h>
138 #include <sys/mman.h>
149 // Hack for libdv to remove glib dependancy
152 // g_log (const char *log_domain,
154 // const char *format,
160 // g_logv (const char *log_domain,
162 // const char *format,
172 ArrayList<PluginServer*>* MWindow::plugindb = 0;
173 Commercials* MWindow::commercials = 0;
179 run_lock = new Mutex("MWindow::run_lock");
180 plugin_gui_lock = new Mutex("MWindow::plugin_gui_lock");
181 dead_plugin_lock = new Mutex("MWindow::dead_plugin_lock");
182 vwindows_lock = new Mutex("MWindow::vwindows_lock");
183 brender_lock = new Mutex("MWindow::brender_lock");
184 keyframe_gui_lock = new Mutex("MWindow::keyframe_gui_lock");
192 commercial_active = 0;
203 channeldb_buz = new ChannelDB;
204 channeldb_v4l2jpeg = new ChannelDB;
208 keyframe_threads = 0;
228 // Need to delete brender temporary here.
231 run_lock->lock("MWindow::~MWindow");
233 //printf("MWindow::~MWindow %d\n", __LINE__);
235 gui->remote_control->deactivate();
238 gui->channel_info->stop();
240 delete create_bd; create_bd = 0;
241 delete create_dvd; create_dvd = 0;
242 delete batch_render; batch_render = 0;
243 delete render; render = 0;
245 if( commercials && !commercials->remove_user() ) commercials = 0;
247 // Save defaults for open plugins
248 plugin_gui_lock->lock("MWindow::~MWindow");
249 for(int i = 0; i < plugin_guis->size(); i++) {
250 plugin_guis->get(i)->hide_gui();
251 delete_plugin(plugin_guis->get(i));
253 plugin_gui_lock->unlock();
254 hide_keyframe_guis();
257 // Give up and go to a movie
258 // cant run valgrind if this is used
260 gui->del_keyboard_listener(
261 (int (BC_WindowBase::*)(BC_WindowBase *))
262 &MWindowGUI::keyboard_listener);
264 // release the hounds
265 if( awindow && awindow->gui ) awindow->gui->close(0);
266 if( cwindow && cwindow->gui ) cwindow->gui->close(0);
267 if( lwindow && lwindow->gui ) lwindow->gui->close(0);
268 if( gwindow && gwindow->gui ) gwindow->gui->close(0);
269 if( twindow && twindow->is_running() ) twindow->close_window();
270 if( wwindow && wwindow->is_running() ) wwindow->close_window();
271 vwindows.remove_all_objects();
273 if( awindow ) awindow->join();
274 if( cwindow ) cwindow->join();
275 if( lwindow ) lwindow->join();
276 if( twindow ) twindow->join();
277 if( wwindow ) wwindow->join();
278 if( gwindow ) gwindow->join();
281 // one at a time, or nouveau chokes
282 #define close_gui(win) if( win ) { \
283 if( win->gui ) win->gui->close(0); \
291 vwindows.remove_all_objects();
296 dead_plugins->remove_all_objects();
299 keyframe_threads->remove_all_objects();
300 colormodels.remove_all_objects();
301 delete awindow; awindow = 0;
302 delete lwindow; lwindow = 0;
303 delete twindow; twindow = 0;
304 delete wwindow; wwindow = 0;
305 delete gwindow; gwindow = 0;
306 delete cwindow; cwindow = 0;
308 //delete file_server; file_server = 0; // reusable
309 delete mainindexes; mainindexes = 0;
310 delete mainprogress; mainprogress = 0;
311 delete audio_cache; audio_cache = 0; // delete the cache after the assets
312 delete video_cache; video_cache = 0; // delete the cache after the assets
313 delete frame_cache; frame_cache = 0;
314 delete wave_cache; wave_cache = 0;
315 delete plugin_guis; plugin_guis = 0;
316 delete dead_plugins; dead_plugins = 0;
317 delete keyframe_threads; keyframe_threads = 0;
318 delete undo; undo = 0;
319 delete preferences; preferences = 0;
320 delete exportedl; exportedl = 0;
321 delete session; session = 0;
322 delete defaults; defaults = 0;
323 delete assets; assets = 0;
324 delete splash_window; splash_window = 0;
325 // delete theme; theme = 0; // deleted by delete_plugins
326 if( !edl->Garbage::remove_user() ) edl = 0;
327 delete channeldb_buz;
328 delete channeldb_v4l2jpeg;
329 // This must be last thread to exit
330 delete playback_3d; playback_3d = 0;
331 delete dead_plugin_lock;
332 delete plugin_gui_lock;
333 delete vwindows_lock;
335 delete keyframe_gui_lock;
336 colormodels.remove_all_objects();
337 interlace_project_modes.remove_all_objects();
338 interlace_asset_modes.remove_all_objects();
339 interlace_asset_fixmethods.remove_all_objects();
340 sighandler->terminate();
351 void MWindow::init_error()
353 MainError::init_error(this);
356 void MWindow::finit_error()
358 MainError::finit_error();
361 void MWindow::create_defaults_path(char *string, const char *config_file)
363 // set the .bcast path
366 sprintf(string, "%s/", File::get_config_path());
367 fs.complete_path(string);
368 if(!fs.is_dir(string))
369 fs.create_dir(string);
372 strcat(string, config_file);
374 const char *MWindow::default_std()
376 char buf[BCTEXTLEN], *p = 0;
378 int fd = open(TIMEZONE_NAME, O_RDONLY);
380 int l = read(fd, buf, sizeof(buf)-1);
383 if( buf[l-1] == '\n' ) --l;
389 int l = readlink(LOCALTIME_LINK, buf, sizeof(buf)-1);
392 if( !(p=strstr(buf, ZONEINFO_STR)) != 0 ) return "PAL";
393 p += strlen(ZONEINFO_STR);
398 for( int i=0; ntsc_zones[i]; ++i ) {
399 if( !strcmp(ntsc_zones[i], p) )
406 for( int i=0; ntsc_zones[i]; ++i ) {
407 if( !strcmp(ntsc_zones[i], p) )
412 //__timezone: Seconds west of UTC. 240sec/deg
413 double tz_deg = -__timezone / 240.;
414 // from Honolulu = -10, to New York = -5, 15deg/hr lat -150..-75
415 return tz_deg >= -10*15 && tz_deg <= -5*15 ? "NTSC" : "PAL";
418 void MWindow::fill_preset_defaults(const char *preset, EDLSession *session)
420 struct formatpresets *fpr;
422 for(fpr = &format_presets[0]; fpr->name; fpr++)
424 if(strcmp(_(fpr->name), preset) == 0)
426 session->audio_channels = fpr->audio_channels;
427 session->audio_tracks = fpr->audio_tracks;
428 session->sample_rate = fpr->sample_rate;
429 session->video_channels = fpr->video_channels;
430 session->video_tracks = fpr->video_tracks;
431 session->frame_rate = fpr->frame_rate;
432 session->output_w = fpr->output_w;
433 session->output_h = fpr->output_h;
434 session->aspect_w = fpr->aspect_w;
435 session->aspect_h = fpr->aspect_h;
436 session->interlace_mode = fpr->interlace_mode;
437 session->color_model = fpr->color_model;
443 const char *MWindow::get_preset_name(int index)
445 if(index < 0 || index >= (int)MAX_NUM_PRESETS)
447 return _(format_presets[index].name);
451 void MWindow::init_defaults(BC_Hash* &defaults, char *config_path)
453 char path[BCTEXTLEN];
454 // Use user supplied path
456 strcpy(path, config_path);
458 create_defaults_path(path, CONFIG_FILE);
460 defaults = new BC_Hash(path);
464 void MWindow::get_plugin_path(char *path, const char *plug_dir, const char *fs_path)
466 char *base_path = FileSystem::basepath(fs_path), *bp = base_path;
468 const char *dp = plug_dir;
469 while( *bp && *dp && *bp == *dp ) { ++bp; ++dp; }
470 bp = !*dp && *bp == '/' ? bp+1 : base_path;
476 int MWindow::load_plugin_index(MWindow *mwindow, const char *index_path, const char *plugin_dir)
479 FILE *fp = fopen(index_path, "r");
483 char index_line[BCTEXTLEN];
484 int index_version = -1, len = strlen(plugin_dir);
485 if( !fgets(index_line, BCTEXTLEN, fp) ||
486 sscanf(index_line, "%d", &index_version) != 1 ||
487 index_version != PLUGIN_FILE_VERSION ||
488 !fgets(index_line, BCTEXTLEN, fp) ||
489 (int)strlen(index_line)-1 != len || index_line[len] != '\n' ||
490 strncmp(index_line, plugin_dir, len) != 0 ) ret = 1;
492 ArrayList<PluginServer*> plugins;
493 while( !ret && !feof(fp) && fgets(index_line, BCTEXTLEN, fp) ) {
494 if( index_line[0] == ';' ) continue;
495 if( index_line[0] == '#' ) continue;
496 int type = PLUGIN_TYPE_UNKNOWN;
497 char path[BCTEXTLEN], title[BCTEXTLEN];
499 if( PluginServer::scan_table(index_line, type, path, title, mtime) ) {
502 PluginServer *server = 0;
504 case PLUGIN_TYPE_BUILTIN:
505 case PLUGIN_TYPE_EXECUTABLE:
506 case PLUGIN_TYPE_LADSPA: {
507 char plugin_path[BCTEXTLEN]; struct stat st;
508 sprintf(plugin_path, "%s/%s", plugin_dir, path);
509 if( stat(plugin_path, &st) || st.st_mtime != mtime ) {
512 server = new PluginServer(mwindow, plugin_path, type);
514 case PLUGIN_TYPE_FFMPEG: {
515 server = new_ffmpeg_server(mwindow, path);
518 if( !server ) continue;
519 plugins.append(server);
520 // Create plugin server from index entry
521 server->set_title(title);
522 if( server->read_table(index_line) ) {
529 ret = check_plugin_index(plugins, plugin_dir, ".");
532 add_plugins(plugins);
534 plugins.remove_all_objects();
539 int MWindow::check_plugin_index(ArrayList<PluginServer*> &plugins,
540 const char *plug_dir, const char *plug_path)
542 char plugin_path[BCTEXTLEN];
543 sprintf(plugin_path, "%s/%s", plug_dir, plug_path);
545 fs.set_filter( "[*.plugin][*.so]" );
546 if( fs.update(plugin_path) )
549 for( int i=0; i<fs.dir_list.total; ++i ) {
550 char fs_path[BCTEXTLEN];
551 get_plugin_path(fs_path, 0, fs.dir_list[i]->path);
552 if( fs.is_dir(fs_path) ) {
553 get_plugin_path(plugin_path, plug_dir, fs_path);
554 if( check_plugin_index(plugins, plug_dir, plugin_path) )
557 else if( !plugin_exists(fs_path, plugins) )
564 int MWindow::init_plugins(MWindow *mwindow, Preferences *preferences)
567 plugindb = new ArrayList<PluginServer*>;
569 char index_path[BCTEXTLEN], plugin_path[BCTEXTLEN];
570 create_defaults_path(index_path, PLUGIN_FILE);
571 char *plugin_dir = FileSystem::basepath(preferences->plugin_dir);
572 strcpy(plugin_path, plugin_dir); delete [] plugin_dir;
573 if( !load_plugin_index(mwindow, index_path, plugin_path) ) return 1;
574 printf("init plugin index: %s\n", plugin_path);
575 FILE *fp = fopen(index_path,"w");
577 fprintf(stderr,_("MWindow::init_plugins: "
578 "can't create plugin index: %s\n"), index_path);
581 fprintf(fp, "%d\n", PLUGIN_FILE_VERSION);
582 fprintf(fp, "%s\n", plugin_path);
583 init_plugin_index(mwindow, preferences, fp, plugin_path);
584 init_ffmpeg_index(mwindow, preferences, fp);
586 return load_plugin_index(mwindow, index_path, plugin_path);
589 int MWindow::init_ladspa_plugins(MWindow *mwindow, Preferences *preferences)
591 char *path = getenv("LADSPA_PATH");
592 char ladspa_path[BCTEXTLEN];
594 strncpy(ladspa_path, File::get_ladspa_path(), sizeof(ladspa_path));
597 for( int len=0; *path; path+=len ) {
598 char *cp = strchr(path,':');
599 len = !cp ? strlen(path) : cp-path;
600 char index_path[BCTEXTLEN], plugin_path[BCTEXTLEN];
601 memcpy(plugin_path, path, len); plugin_path[len] = 0;
602 char *plugin_dir = FileSystem::basepath(plugin_path);
603 strcpy(plugin_path, plugin_dir); delete [] plugin_dir;
604 create_defaults_path(index_path, LADSPA_FILE);
605 cp = index_path + strlen(index_path);
606 for( char *bp=plugin_path; *bp!=0; ++bp )
607 *cp++ = *bp=='/' ? '_' : *bp;
609 if( !load_plugin_index(mwindow, index_path, plugin_path) ) continue;
610 if( init_ladspa_index(mwindow, preferences, index_path, plugin_path) ) continue;
611 load_plugin_index(mwindow, index_path, plugin_path);
616 void MWindow::init_plugin_index(MWindow *mwindow, Preferences *preferences,
617 FILE *fp, const char *plugin_dir)
619 int idx = PLUGIN_IDS;
621 for( int i=0; i<plugindb->size(); ++i ) {
622 PluginServer *server = plugindb->get(i);
623 if( server->dir_idx >= idx )
624 idx = server->dir_idx+1;
627 scan_plugin_index(mwindow, preferences, fp, plugin_dir, ".", idx);
630 int MWindow::init_ladspa_index(MWindow *mwindow, Preferences *preferences,
631 const char *index_path, const char *plugin_dir)
633 char plugin_path[BCTEXTLEN], *path = FileSystem::basepath(plugin_dir);
634 strcpy(plugin_path, path); delete [] path;
635 printf("init ladspa index: %s\n", plugin_dir);
636 FILE *fp = fopen(index_path,"w");
638 fprintf(stderr,_("MWindow::init_ladspa_index: "
639 "can't create plugin index: %s\n"), index_path);
642 fprintf(fp, "%d\n", PLUGIN_FILE_VERSION);
643 fprintf(fp, "%s\n", plugin_dir);
644 init_plugin_index(mwindow, preferences, fp, plugin_path);
649 void MWindow::scan_plugin_index(MWindow *mwindow, Preferences *preferences, FILE *fp,
650 const char *plug_dir, const char *plug_path, int &idx)
652 char plugin_path[BCTEXTLEN];
653 sprintf(plugin_path, "%s/%s", plug_dir, plug_path);
655 fs.set_filter( "[*.plugin][*.so]" );
656 int result = fs.update(plugin_path);
657 if( result || !fs.dir_list.total ) return;
660 for( int i=0; i<fs.dir_list.total; ++i ) {
661 char fs_path[BCTEXTLEN], path[BCTEXTLEN];
662 get_plugin_path(fs_path, 0, fs.dir_list[i]->path);
663 get_plugin_path(path, plug_dir, fs_path);
664 if( fs.is_dir(fs_path) ) {
665 scan_plugin_index(mwindow, preferences, fp, plug_dir, path, idx);
668 if( plugin_exists(path) ) continue;
670 if( stat(fs_path, &st) ) continue;
671 int64_t mtime = st.st_mtime;
672 PluginServer server(mwindow, fs_path, PLUGIN_TYPE_UNKNOWN);
673 result = server.open_plugin(1, preferences, 0, 0);
675 server.write_table(fp, path, vis_id, mtime);
676 server.close_plugin();
678 else if( result == PLUGINSERVER_IS_LAD ) {
681 PluginServer ladspa(mwindow, fs_path, PLUGIN_TYPE_LADSPA);
682 ladspa.set_lad_index(lad_index++);
683 result = ladspa.open_plugin(1, preferences, 0, 0);
685 ladspa.write_table(fp, path, PLUGIN_LADSPA_ID, mtime);
686 ladspa.close_plugin();
692 void MWindow::add_plugins(ArrayList<PluginServer*> &plugins)
694 for( int i=0; i<plugins.size(); ++i )
695 plugindb->append(plugins[i]);
696 plugins.remove_all();
699 void MWindow::delete_plugins()
701 plugindb->remove_all_objects();
706 void MWindow::search_plugindb(int do_audio,
711 ArrayList<PluginServer*> &results)
714 for(int i = 0; i < MWindow::plugindb->total; i++)
716 PluginServer *current = MWindow::plugindb->get(i);
718 if(current->audio == do_audio &&
719 current->video == do_video &&
720 (current->realtime == is_realtime || is_realtime < 0) &&
721 current->transition == is_transition &&
722 current->theme == is_theme)
723 results.append(current);
726 // Alphabetize list by title
732 for(int i = 0; i < results.total - 1; i++)
734 PluginServer *value1 = results[i];
735 PluginServer *value2 = results[i + 1];
736 if(strcmp(_(value1->title), _(value2->title)) > 0)
740 results[i + 1] = value1;
746 PluginServer* MWindow::scan_plugindb(char *title,
751 // printf("MWindow::scan_plugindb data_type < 0\n");
755 for(int i = 0; i < plugindb->total; i++)
757 PluginServer *server = plugindb->get(i);
759 !strcasecmp(server->title, title) &&
761 (data_type == TRACK_AUDIO && server->audio) ||
762 (data_type == TRACK_VIDEO && server->video)))
763 return plugindb->get(i);
768 int MWindow::plugin_exists(const char *plugin_path, ArrayList<PluginServer*> &plugins)
770 for( int i=0; i<plugins.size(); ++i )
771 if( !strcmp(plugin_path, plugins[i]->get_path()) ) return 1;
775 int MWindow::plugin_exists(char *plugin_path)
777 return !plugindb ? 0 : plugin_exists(plugin_path, *plugindb);
780 void MWindow::init_preferences()
782 preferences = new Preferences;
783 preferences->load_defaults(defaults);
784 session = new MainSession(this);
785 session->load_defaults(defaults);
786 // set x11_host, screens, window_config
787 screens = session->set_default_x11_host();
788 BC_Signals::set_trap_hook(trap_hook, this);
789 BC_Signals::set_catch_segv(preferences->trap_sigsegv);
790 BC_Signals::set_catch_intr(preferences->trap_sigintr);
791 if( preferences->trap_sigsegv || preferences->trap_sigintr ) {
792 BC_Trace::enable_locks();
795 BC_Trace::disable_locks();
797 BC_WindowBase::get_resources()->popupmenu_btnup = preferences->popupmenu_btnup;
800 void MWindow::clean_indexes()
805 int oldest_item = -1;
807 char string[BCTEXTLEN];
808 char string2[BCTEXTLEN];
810 // Delete extra indexes
811 fs.set_filter("*.idx");
812 fs.complete_path(preferences->index_directory);
813 fs.update(preferences->index_directory);
814 //printf("MWindow::clean_indexes 1 %d\n", fs.dir_list.total);
816 // Eliminate directories
821 for(int i = 0; i < fs.dir_list.total && !result; i++)
823 fs.join_names(string, preferences->index_directory, fs.dir_list[i]->name);
824 if(fs.is_dir(string))
826 delete fs.dir_list[i];
827 fs.dir_list.remove_number(i);
832 total_excess = fs.dir_list.total - preferences->index_count;
834 //printf("MWindow::clean_indexes 2 %d\n", fs.dir_list.total);
835 while(total_excess > 0)
838 for(int i = 0; i < fs.dir_list.total; i++)
840 fs.join_names(string, preferences->index_directory, fs.dir_list[i]->name);
842 if(i == 0 || fs.get_date(string) <= oldest)
844 oldest = fs.get_date(string);
852 fs.join_names(string,
853 preferences->index_directory,
854 fs.dir_list[oldest_item]->name);
855 //printf("MWindow::clean_indexes 1 %s\n", string);
857 perror("delete_indexes");
858 delete fs.dir_list[oldest_item];
859 fs.dir_list.remove_number(oldest_item);
861 // Remove table of contents if it exists
862 strcpy(string2, string);
863 char *ptr = strrchr(string2, '.');
866 //printf("MWindow::clean_indexes 2 %s\n", string2);
867 sprintf(ptr, ".toc");
869 sprintf(ptr, ".mkr");
878 void MWindow::init_awindow()
880 awindow = new AWindow(this);
881 awindow->create_objects();
884 void MWindow::init_gwindow()
886 gwindow = new GWindow(this);
887 gwindow->create_objects();
890 void MWindow::init_tipwindow()
893 twindow = new TipWindow(this);
897 void MWindow::show_warning(int *do_warning, const char *text)
899 if( do_warning && !*do_warning ) return;
901 wwindow = new WWindow(this);
902 wwindow->show_warning(do_warning, text);
905 int MWindow::wait_warning()
907 return wwindow->wait_result();
910 void MWindow::init_theme()
915 PluginServer *theme_plugin = 0;
916 for(int i = 0; i < plugindb->total && !theme_plugin; i++) {
917 if( plugindb->get(i)->theme &&
918 !strcasecmp(preferences->theme, plugindb->get(i)->title) )
919 theme_plugin = plugindb->get(i);
923 fprintf(stderr, _("MWindow::init_theme: prefered theme %s not found.\n"),
926 if( !theme_plugin && strcasecmp(preferences->theme, DEFAULT_THEME) ) {
927 fprintf(stderr, _("MWindow::init_theme: trying default theme %s\n"),
929 for(int i = 0; i < plugindb->total && !theme_plugin; i++) {
930 if( plugindb->get(i)->theme &&
931 !strcasecmp(DEFAULT_THEME, plugindb->get(i)->title) )
932 theme_plugin = plugindb->get(i);
937 fprintf(stderr, _("MWindow::init_theme: theme_plugin not found.\n"));
941 PluginServer *plugin = new PluginServer(*theme_plugin);
942 if( plugin->open_plugin(0, preferences, 0, 0) ) {
943 fprintf(stderr, _("MWindow::init_theme: unable to load theme %s\n"),
944 theme_plugin->title);
948 theme = plugin->new_theme();
949 theme->mwindow = this;
950 strcpy(theme->path, plugin->path);
953 // Load default images & settings
954 theme->Theme::initialize();
955 // Load user images & settings
957 // Create menus with user colors
958 theme->build_menus();
963 //printf("MWindow::init_theme %d total_time=%d\n", __LINE__, (int)timer.get_difference());
966 void MWindow::init_3d()
968 playback_3d = new Playback3D(this);
969 playback_3d->create_objects();
972 void MWindow::init_edl()
975 edl->create_objects();
976 fill_preset_defaults(default_standard, edl->session);
977 edl->load_defaults(defaults);
978 edl->create_default_tracks();
979 edl->tracks->update_y_pixels(theme);
982 void MWindow::init_compositor()
984 cwindow = new CWindow(this);
985 cwindow->create_objects();
988 void MWindow::init_levelwindow()
990 lwindow = new LevelWindow(this);
991 lwindow->create_objects();
994 VWindow *MWindow::get_viewer(int start_it, int idx)
996 vwindows_lock->lock("MWindow::get_viewer");
997 VWindow *vwindow = idx >= 0 && idx < vwindows.size() ? vwindows[idx] : 0;
998 if( !vwindow ) idx = vwindows.size();
999 while( !vwindow && --idx >= 0 ) {
1000 VWindow *vwin = vwindows[idx];
1001 if( !vwin->is_running() || !vwin->get_edl() )
1005 vwindow = new VWindow(this);
1006 vwindow->load_defaults();
1007 vwindow->create_objects();
1008 vwindows.append(vwindow);
1010 vwindows_lock->unlock();
1011 if( start_it ) vwindow->start();
1015 void MWindow::init_cache()
1017 audio_cache = new CICache(preferences);
1018 video_cache = new CICache(preferences);
1019 frame_cache = new FrameCache;
1020 wave_cache = new WaveCache;
1023 void MWindow::init_channeldb()
1025 channeldb_buz->load("channeldb_buz");
1026 channeldb_v4l2jpeg->load("channeldb_v4l2jpeg");
1029 void MWindow::init_menus()
1031 char string[BCTEXTLEN];
1034 BC_CModels::to_text(string, BC_RGB888);
1035 colormodels.append(new ColormodelItem(string, BC_RGB888));
1036 BC_CModels::to_text(string, BC_RGBA8888);
1037 colormodels.append(new ColormodelItem(string, BC_RGBA8888));
1038 // BC_CModels::to_text(string, BC_RGB161616);
1039 // colormodels.append(new ColormodelItem(string, BC_RGB161616));
1040 // BC_CModels::to_text(string, BC_RGBA16161616);
1041 // colormodels.append(new ColormodelItem(string, BC_RGBA16161616));
1042 BC_CModels::to_text(string, BC_RGB_FLOAT);
1043 colormodels.append(new ColormodelItem(string, BC_RGB_FLOAT));
1044 BC_CModels::to_text(string, BC_RGBA_FLOAT);
1045 colormodels.append(new ColormodelItem(string, BC_RGBA_FLOAT));
1046 BC_CModels::to_text(string, BC_YUV888);
1047 colormodels.append(new ColormodelItem(string, BC_YUV888));
1048 BC_CModels::to_text(string, BC_YUVA8888);
1049 colormodels.append(new ColormodelItem(string, BC_YUVA8888));
1050 // BC_CModels::to_text(string, BC_YUV161616);
1051 // colormodels.append(new ColormodelItem(string, BC_YUV161616));
1052 // BC_CModels::to_text(string, BC_YUVA16161616);
1053 // colormodels.append(new ColormodelItem(string, BC_YUVA16161616));
1055 #define ILACEPROJECTMODELISTADD(x) ilacemode_to_text(string, x); \
1056 interlace_project_modes.append(new InterlacemodeItem(string, x));
1058 #define ILACEASSETMODELISTADD(x) ilacemode_to_text(string, x); \
1059 interlace_asset_modes.append(new InterlacemodeItem(string, x));
1061 #define ILACEFIXMETHODLISTADD(x) ilacefixmethod_to_text(string, x); \
1062 interlace_asset_fixmethods.append(new InterlacefixmethodItem(string, x));
1064 // Interlacing Modes
1065 ILACEASSETMODELISTADD(ILACE_MODE_UNDETECTED); // Not included in the list for the project options.
1067 ILACEASSETMODELISTADD(ILACE_MODE_TOP_FIRST);
1068 ILACEPROJECTMODELISTADD(ILACE_MODE_TOP_FIRST);
1070 ILACEASSETMODELISTADD(ILACE_MODE_BOTTOM_FIRST);
1071 ILACEPROJECTMODELISTADD(ILACE_MODE_BOTTOM_FIRST);
1073 ILACEASSETMODELISTADD(ILACE_MODE_NOTINTERLACED);
1074 ILACEPROJECTMODELISTADD(ILACE_MODE_NOTINTERLACED);
1076 // Interlacing Fixing Methods
1077 ILACEFIXMETHODLISTADD(ILACE_FIXMETHOD_NONE);
1078 ILACEFIXMETHODLISTADD(ILACE_FIXMETHOD_UPONE);
1079 ILACEFIXMETHODLISTADD(ILACE_FIXMETHOD_DOWNONE);
1082 void MWindow::init_indexes()
1084 mainindexes = new MainIndexes(this);
1085 mainindexes->start_loop();
1088 void MWindow::init_gui()
1090 gui = new MWindowGUI(this);
1091 gui->lock_window("MWindow::init_gui");
1092 gui->create_objects();
1093 gui->unlock_window();
1094 gui->load_defaults(defaults);
1097 void MWindow::init_signals()
1099 sighandler = new SigHandler;
1100 sighandler->initialize("/tmp/cinelerra_%d.dmp");
1104 void MWindow::init_render()
1106 render = new Render(this);
1107 create_bd = new CreateBD_Thread(this);
1108 create_dvd = new CreateDVD_Thread(this);
1109 batch_render = new BatchRenderThread(this);
1112 void MWindow::init_exportedl()
1114 exportedl = new ExportEDL(this);
1117 void MWindow::init_brender()
1119 if(preferences->use_brender && !brender)
1121 brender_lock->lock("MWindow::init_brender 1");
1122 brender = new BRender(this);
1123 brender->initialize();
1124 session->brender_end = 0;
1125 brender_lock->unlock();
1128 if(!preferences->use_brender && brender)
1130 brender_lock->lock("MWindow::init_brender 2");
1133 session->brender_end = 0;
1134 brender_lock->unlock();
1136 if(brender) brender->restart(edl);
1139 void MWindow::restart_brender()
1141 //printf("MWindow::restart_brender 1\n");
1142 if(brender) brender->restart(edl);
1145 void MWindow::stop_brender()
1147 if(brender) brender->stop();
1150 int MWindow::brender_available(int position)
1153 brender_lock->lock("MWindow::brender_available 1");
1156 if(brender->map_valid)
1158 brender->map_lock->lock("MWindow::brender_available 2");
1159 if(position < brender->map_size &&
1162 //printf("MWindow::brender_available 1 %d %d\n", position, brender->map[position]);
1163 if(brender->map[position] == BRender::RENDERED)
1166 brender->map_lock->unlock();
1169 brender_lock->unlock();
1173 void MWindow::set_brender_range()
1175 edl->session->brender_start = edl->local_session->get_selectionstart(1);
1176 edl->session->brender_end = edl->local_session->get_selectionend(1);
1178 if(EQUIV(edl->session->brender_end, edl->session->brender_start))
1180 edl->session->brender_end = edl->tracks->total_video_length();
1184 gui->draw_overlays(1);
1188 int MWindow::has_commercials()
1190 return theme->use_commercials;
1193 void MWindow::init_commercials()
1195 if( !commercials ) {
1196 commercials = new Commercials(this);
1197 commercial_active = 0;
1200 commercials->add_user();
1203 void MWindow::commit_commercial()
1205 if( !commercial_active ) return;
1206 commercial_active = 0;
1207 if( !commercials ) return;
1208 commercials->commitDb();
1211 void MWindow::undo_commercial()
1213 if( !commercial_active ) return;
1214 commercial_active = 0;
1215 if( !commercials ) return;
1216 commercials->undoDb();
1219 int MWindow::put_commercial()
1221 double start = edl->local_session->get_selectionstart();
1222 double end = edl->local_session->get_selectionend();
1223 if( start >= end ) return 0;
1225 const char *errmsg = 0;
1227 Tracks *tracks = edl->tracks;
1230 for(Track *track=tracks->first; track && !errmsg; track=track->next) {
1231 if( track->data_type != TRACK_VIDEO ) continue;
1232 if( !track->record ) continue;
1233 if( count > 0 ) { errmsg = _("multiple video tracks"); break; }
1235 int64_t units_start = track->to_units(start,0);
1236 int64_t units_end = track->to_units(end,0);
1237 Edits *edits = track->edits;
1238 Edit *edit1 = edits->editof(units_start, PLAY_FORWARD, 0);
1239 Edit *edit2 = edits->editof(units_end, PLAY_FORWARD, 0);
1240 if(!edit1 && !edit2) continue; // nothing selected
1241 if(!edit2) { // edit2 beyond end of track
1242 edit2 = edits->last;
1243 units_end = edits->length();
1245 if(edit1 != edit2) { errmsg = _("crosses edits"); break; }
1246 Indexable *indexable = edit1->get_source();
1247 if( !indexable->is_asset ) { errmsg = _("not asset"); break; }
1250 for(Track *track=tracks->first; track && !errmsg; track=track->next) {
1251 if( track->data_type != TRACK_VIDEO ) continue;
1252 if( !track->record ) continue;
1253 int64_t units_start = track->to_units(start,0);
1254 int64_t units_end = track->to_units(end,0);
1255 Edits *edits = track->edits;
1256 Edit *edit1 = edits->editof(units_start, PLAY_FORWARD, 0);
1257 Edit *edit2 = edits->editof(units_end, PLAY_FORWARD, 0);
1258 if(!edit1 && !edit2) continue; // nothing selected
1259 if(!edit2) { // edit2 beyond end of track
1260 edit2 = edits->last;
1261 units_end = edits->length();
1263 Indexable *indexable = edit1->get_source();
1264 Asset *asset = (Asset *)indexable;
1265 File *file = video_cache->check_out(asset, edl);
1266 if( !file ) { errmsg = _("no file"); break; }
1267 int64_t edit_length = units_end - units_start;
1268 int64_t edit_start = units_start - edit1->startproject + edit1->startsource;
1269 result = commercials->put_clip(file, edit1->channel,
1270 track->from_units(edit_start), track->from_units(edit_length));
1271 video_cache->check_in(asset);
1272 if( result ) { errmsg = _("db failed"); break; }
1275 char string[BCTEXTLEN];
1276 sprintf(string, _("put_commercial: %s"), errmsg);
1277 MainError::show_error(string);
1284 void MWindow::stop_playback(int wait)
1286 int locked = gui->get_window_lock();
1287 if( locked ) gui->unlock_window();
1289 cwindow->playback_engine->que->send_command(STOP,
1293 cwindow->playback_engine->interrupt_playback(wait);
1295 for(int i = 0; i < vwindows.size(); i++) {
1296 VWindow *vwindow = vwindows[i];
1297 if( !vwindow->is_running() ) continue;
1298 vwindow->playback_engine->que->send_command(STOP, CHANGE_NONE, 0, 0);
1299 vwindow->playback_engine->interrupt_playback(wait);
1301 if( locked ) gui->lock_window("MWindow::stop_playback");
1304 int MWindow::load_filenames(ArrayList<char*> *filenames,
1306 int update_filename)
1308 ArrayList<EDL*> new_edls;
1309 ArrayList<Asset*> new_assets;
1310 ArrayList<File*> new_files;
1311 const int debug = 0;
1312 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1315 gui->start_hourglass();
1317 // Need to stop playback since tracking depends on the EDL not getting
1321 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1322 undo->update_undo_before();
1325 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1327 // Define new_edls and new_assets to load
1328 int result = 0, ftype = -1;
1329 for(int i = 0; i < filenames->size(); i++)
1332 File *new_file = new File;
1333 Asset *new_asset = new Asset(filenames->get(i));
1334 EDL *new_edl = new EDL;
1335 char string[BCTEXTLEN];
1337 new_edl->create_objects();
1338 new_edl->copy_session(edl);
1339 new_file->set_program(edl->session->program_no);
1341 sprintf(string, _("Loading %s"), new_asset->path);
1342 gui->show_message(string);
1343 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1345 ftype = new_file->open_file(preferences, new_asset, 1, 0);
1346 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1351 // Convert media file to EDL
1353 // Warn about odd image dimensions
1354 if(new_asset->video_data &&
1355 ((new_asset->width % 2) ||
1356 (new_asset->height % 2)))
1358 char string[BCTEXTLEN];
1359 sprintf(string, _("%s's resolution is %dx%d.\nImages with odd dimensions may not decode properly."),
1363 MainError::show_error(string);
1366 if(new_asset->program >= 0 &&
1367 edl->session->program_no != new_asset->program)
1369 char string[BCTEXTLEN];
1370 sprintf(string, _("%s's index was built for program number %d\n"
1371 "Playback preference is %d.\n Using program %d."),
1372 new_asset->path, new_asset->program,
1373 edl->session->program_no, new_asset->program);
1374 MainError::show_error(string);
1378 if(load_mode != LOADMODE_RESOURCESONLY)
1381 RecordLabels *labels = edl->session->label_cells ?
1382 new RecordLabels(new_file) : 0;
1384 asset_to_edl(new_edl, new_asset, labels);
1386 new_edls.append(new_edl);
1388 new_asset->Garbage::remove_user();
1394 new_assets.append(new_asset);
1398 // Set filename to nothing for assets since save EDL would overwrite them.
1399 if(load_mode == LOADMODE_REPLACE ||
1400 load_mode == LOADMODE_REPLACE_CONCATENATE)
1403 // Reset timeline position
1404 for(int i = 0; i < TOTAL_PANES; i++)
1406 new_edl->local_session->view_start[i] = 0;
1407 new_edl->local_session->track_start[i] = 0;
1415 case FILE_NOT_FOUND:
1416 sprintf(string, _("Failed to open %s"), new_asset->path);
1417 gui->show_message(string, theme->message_error);
1421 case FILE_UNRECOGNIZED_CODEC:
1424 IndexFile indexfile(this, new_asset);
1425 result = indexfile.open_index();
1428 indexfile.close_index();
1431 // Test existing EDLs
1432 for(int j = 0; result && j <= new_edls.total; j++) {
1433 Asset *old_asset = j < new_edls.total ?
1434 new_edls[j]->assets->get_asset(new_asset->path) :
1435 edl->assets->get_asset(new_asset->path);
1437 *new_asset = *old_asset;
1445 char string[BCTEXTLEN];
1447 fs.extract_name(string, new_asset->path);
1449 strcat(string, _("'s format couldn't be determined."));
1450 new_asset->audio_data = 1;
1451 new_asset->format = FILE_PCM;
1452 new_asset->channels = defaults->get("AUDIO_CHANNELS", 2);
1453 new_asset->sample_rate = defaults->get("SAMPLE_RATE", 44100);
1454 new_asset->bits = defaults->get("AUDIO_BITS", 16);
1455 new_asset->byte_order = defaults->get("BYTE_ORDER", 1);
1456 new_asset->signed_ = defaults->get("SIGNED_", 1);
1457 new_asset->header = defaults->get("HEADER", 0);
1459 FileFormat fwindow(this);
1460 fwindow.create_objects(new_asset, string);
1461 result = fwindow.run_window();
1464 defaults->update("AUDIO_CHANNELS", new_asset->channels);
1465 defaults->update("SAMPLE_RATE", new_asset->sample_rate);
1466 defaults->update("AUDIO_BITS", new_asset->bits);
1467 defaults->update("BYTE_ORDER", new_asset->byte_order);
1468 defaults->update("SIGNED_", new_asset->signed_);
1469 defaults->update("HEADER", new_asset->header);
1476 // Recalculate length
1478 new_file = new File;
1479 result = new_file->open_file(preferences, new_asset, 1, 0);
1481 if(load_mode != LOADMODE_RESOURCESONLY)
1483 RecordLabels *labels = edl->session->label_cells ?
1484 new RecordLabels(new_file) : 0;
1485 asset_to_edl(new_edl, new_asset, labels);
1486 new_edls.append(new_edl);
1487 new_asset->Garbage::remove_user();
1493 new_assets.append(new_asset);
1507 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1508 xml_file.read_from_file(filenames->get(i));
1509 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1510 const char *cin_version = 0;
1511 while( !xml_file.read_tag() ) {
1512 if( xml_file.tag.title_is("EDL") ) {
1513 cin_version = xml_file.tag.get_property("VERSION");
1518 if( !cin_version ) {
1519 eprintf(_("XML file %s\n not from cinelerra."),filenames->get(i));
1520 char string[BCTEXTLEN];
1521 sprintf(string,_("Unknown %s"), filenames->get(i));
1522 gui->show_message(string);
1526 if( strcmp(cin_version, CINELERRA_VERSION) ) {
1527 char string[BCTEXTLEN];
1528 snprintf(string, sizeof(string),
1529 _("Warning: XML from cinelerra version %s\n"
1530 "Session data may be incompatible."), cin_version);
1531 show_warning(&preferences->warn_version, string);
1533 if(load_mode == LOADMODE_NESTED)
1535 // Load temporary EDL for nesting.
1536 EDL *nested_edl = new EDL;
1537 nested_edl->create_objects();
1538 nested_edl->set_path(filenames->get(i));
1539 nested_edl->load_xml(&xml_file, LOAD_ALL);
1540 //printf("MWindow::load_filenames %p %s\n", nested_edl, nested_edl->project_path);
1541 edl_to_nested(new_edl, nested_edl);
1542 nested_edl->Garbage::remove_user();
1546 // Load EDL for pasting
1547 new_edl->load_xml(&xml_file, LOAD_ALL);
1548 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1549 test_plugins(new_edl, filenames->get(i));
1550 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1552 if(load_mode == LOADMODE_REPLACE ||
1553 load_mode == LOADMODE_REPLACE_CONCATENATE)
1555 strcpy(session->filename, filenames->get(i));
1556 strcpy(new_edl->local_session->clip_title,
1559 set_filename(new_edl->local_session->clip_title);
1563 new_edls.append(new_edl);
1569 // edls are in new_edls
1570 if( result && new_edl ) new_edl->Garbage::remove_user();
1571 // assets are copied
1572 if( new_asset ) new_asset->Garbage::remove_user();
1574 // Store for testing index
1575 new_files.append(new_file);
1578 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1581 if(!result) gui->statusbar->default_message();
1589 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1592 // Don't back up here.
1595 // For pasting, clear the active region
1596 if(load_mode == LOADMODE_PASTE ||
1597 load_mode == LOADMODE_NESTED)
1599 double start = edl->local_session->get_selectionstart();
1600 double end = edl->local_session->get_selectionend();
1601 if(!EQUIV(start, end))
1604 edl->session->labels_follow_edits,
1605 edl->session->plugins_follow_edits,
1606 edl->session->autos_follow_edits);
1609 paste_edls(&new_edls,
1613 edl->session->labels_follow_edits,
1614 edl->session->plugins_follow_edits,
1615 edl->session->autos_follow_edits,
1622 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1624 // Add new assets to EDL and schedule assets for index building.
1625 int got_indexes = 0;
1626 for(int i = 0; i < new_edls.size(); i++)
1628 EDL *new_edl = new_edls[i];
1629 for(int j = 0; j < new_edl->nested_edls->size(); j++)
1631 mainindexes->add_next_asset(0,
1632 new_edl->nested_edls->get(j));
1634 edl->nested_edls->update_index(new_edl->nested_edls->get(j));
1639 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1640 if(new_assets.size())
1642 for(int i = 0; i < new_assets.size(); i++)
1644 Asset *new_asset = new_assets[i];
1648 for(int j = 0; j < new_files.size(); j++)
1650 new_file = new_files[j];
1651 if(!strcmp(new_file->asset->path,
1659 mainindexes->add_next_asset(got_it ? new_file : 0, new_asset);
1661 edl->assets->update(new_asset);
1667 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1669 // Start examining next batch of index files
1670 if(got_indexes) mainindexes->start_build();
1671 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1674 Track *track = edl->tracks->first;
1677 for(int j = 0; j < track->plugin_set.size(); j++)
1679 PluginSet *plugins = track->plugin_set[j];
1680 Plugin *plugin = plugins->get_first_plugin();
1684 if(load_mode == LOADMODE_REPLACE ||
1685 load_mode == LOADMODE_REPLACE_CONCATENATE)
1687 if(plugin->plugin_type == PLUGIN_STANDALONE &&
1690 show_plugin(plugin);
1698 plugin = (Plugin*)plugin->next;
1702 track = track->next;
1705 // if just opening one new resource in replace mode
1706 if( ftype != FILE_IS_XML &&
1707 ( load_mode == LOADMODE_REPLACE ||
1708 load_mode == LOADMODE_REPLACE_CONCATENATE ) ) {
1710 edl->local_session->preview_start = 0;
1711 edl->local_session->preview_end = edl->tracks->total_playable_length();
1712 edl->local_session->loop_playback = 0;
1713 edl->local_session->set_selectionstart(0);
1714 edl->local_session->set_selectionend(0);
1719 // need to update undo before project, since mwindow is unlocked & a new load
1720 // can begin here. Should really prevent loading until we're done.
1721 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1722 undo->update_undo_after(_("load"), LOAD_ALL);
1724 for(int i = 0; i < new_edls.size(); i++)
1726 new_edls[i]->remove_user();
1728 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1730 new_edls.remove_all();
1732 for(int i = 0; i < new_assets.size(); i++)
1734 new_assets[i]->Garbage::remove_user();
1737 new_assets.remove_all();
1738 new_files.remove_all_objects();
1741 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1742 if(load_mode == LOADMODE_REPLACE ||
1743 load_mode == LOADMODE_REPLACE_CONCATENATE)
1745 session->changes_made = 0;
1749 session->changes_made = 1;
1752 gui->stop_hourglass();
1755 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1756 update_project(load_mode);
1758 if(debug) printf("MWindow::load_filenames %d\n", __LINE__);
1766 void MWindow::test_plugins(EDL *new_edl, char *path)
1768 char string[BCTEXTLEN];
1770 // Do a check weather plugins exist
1771 for(Track *track = new_edl->tracks->first; track; track = track->next)
1773 for(int k = 0; k < track->plugin_set.total; k++)
1775 PluginSet *plugin_set = track->plugin_set[k];
1776 for(Plugin *plugin = (Plugin*)plugin_set->first;
1778 plugin = (Plugin*)plugin->next)
1780 if(plugin->plugin_type == PLUGIN_STANDALONE)
1782 // ok we need to find it in plugindb
1783 int plugin_found = 0;
1785 for(int j = 0; j < plugindb->size(); j++)
1787 PluginServer *server = plugindb->get(j);
1789 !strcasecmp(server->title, plugin->title) &&
1790 ((track->data_type == TRACK_AUDIO && server->audio) ||
1791 (track->data_type == TRACK_VIDEO && server->video)) &&
1792 (!server->transition))
1799 _("The %s '%s' in file '%s' is not part of your installation of Cinelerra.\n"
1800 "The project won't be rendered as it was meant and Cinelerra might crash.\n"),
1801 "effect", plugin->title,
1803 MainError::show_error(string);
1809 for(Edit *edit = (Edit*)track->edits->first;
1811 edit = (Edit*)edit->next)
1813 if (edit->transition)
1815 // ok we need to find transition in plugindb
1817 int transition_found = 0;
1818 for(int j = 0; j < plugindb->size(); j++)
1820 PluginServer *server = plugindb->get(j);
1822 !strcasecmp(server->title, edit->transition->title) &&
1823 ((track->data_type == TRACK_AUDIO && server->audio) ||
1824 (track->data_type == TRACK_VIDEO && server->video)) &&
1825 (server->transition))
1826 transition_found = 1;
1829 if (!transition_found)
1832 _("The %s '%s' in file '%s' is not part of your installation of Cinelerra.\n"
1833 "The project won't be rendered as it was meant and Cinelerra might crash.\n"),
1834 "transition", edit->transition->title,
1836 MainError::show_error(string);
1844 void MWindow::init_shm()
1846 // Fix shared memory
1847 FILE *fd = fopen("/proc/sys/kernel/shmmax", "w");
1849 fprintf(fd, "0x7fffffff");
1854 fd = fopen("/proc/sys/kernel/shmmax", "r");
1856 MainError::show_error("MWindow::init_shm: couldn't open /proc/sys/kernel/shmmax for reading.\n");
1861 fscanf(fd, "%jd", &result);
1864 if(result < 0x7fffffff) {
1865 eprintf(_("MWindow::init_shm: /proc/sys/kernel/shmmax is %p.\n"
1866 "you probably need to be root, or:\n"
1867 "as root, run: echo 0x7fffffff > /proc/sys/kernel/shmmax\n"
1868 "before trying to start cinelerra.\n"
1869 "It should be at least 0x7fffffff for Cinelerra.\n"), (void *)result);
1873 void MWindow::create_objects(int want_gui,
1878 const int debug = 0;
1879 if(debug) PRINT_TRACE
1881 // For some reason, init_signals must come after show_splash or the signals won't
1884 if(debug) PRINT_TRACE
1887 if(debug) PRINT_TRACE
1890 if(debug) PRINT_TRACE
1891 default_standard = default_std();
1892 init_defaults(defaults, config_path);
1895 splash_window->operation->update(_("Initializing Plugins"));
1896 init_plugins(this, preferences);
1897 if(debug) PRINT_TRACE
1898 init_ladspa_plugins(this, preferences);
1899 if(debug) PRINT_TRACE
1901 splash_window->operation->update(_("Initializing GUI"));
1902 if(debug) PRINT_TRACE
1905 if(debug) PRINT_TRACE
1909 splash_window->operation->update(_("Initializing Fonts"));
1910 char string[BCTEXTLEN];
1911 strcpy(string, preferences->plugin_dir);
1912 strcat(string, "/" FONT_SEARCHPATH);
1913 BC_Resources::init_fontconfig(string);
1914 if(debug) PRINT_TRACE
1916 // Initialize before too much else is running
1917 // Preferences & theme are required for building MPEG table of contents
1919 // Default project created here
1921 if(debug) PRINT_TRACE
1924 if(debug) PRINT_TRACE
1929 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1931 //printf("MWindow::create_objects %d session->show_vwindow=%d\n", __LINE__, session->show_vwindow);
1932 if(session->show_vwindow)
1933 get_viewer(1, DEFAULT_VWINDOW);
1934 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1937 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1940 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1943 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1945 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1948 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1952 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1954 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1956 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1960 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1961 mainprogress = new MainProgress(this, gui);
1962 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1963 undo = new MainUndo(this);
1965 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1967 plugin_guis = new ArrayList<PluginServer*>;
1968 dead_plugins = new ArrayList<PluginServer*>;
1969 keyframe_threads = new ArrayList<KeyFrameThread*>;
1971 if(debug) printf("MWindow::create_objects %d vwindows=%d show_vwindow=%d\n",
1974 session->show_vwindow);
1976 // Show all vwindows
1977 // if(session->show_vwindow) {
1978 // for(int j = 0; j < vwindows.size(); j++) {
1979 // VWindow *vwindow = vwindows[j];
1980 // if( !vwindow->is_running() ) continue;
1981 // if(debug) printf("MWindow::create_objects %d vwindow=%p\n",
1984 // if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1985 // vwindow->gui->lock_window("MWindow::create_objects 1");
1986 // if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1987 // vwindow->gui->show_window();
1988 // if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1989 // vwindow->gui->unlock_window();
1994 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
1996 if(session->show_cwindow)
1998 cwindow->gui->lock_window("MWindow::create_objects 1");
1999 cwindow->gui->show_window();
2000 cwindow->gui->unlock_window();
2003 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2004 if(session->show_awindow)
2006 awindow->gui->lock_window("MWindow::create_objects 1");
2007 awindow->gui->show_window();
2008 awindow->gui->unlock_window();
2011 if(debug) printf("MWindow::create_objects %d total_time=%d\n", __LINE__, (int)timer.get_difference());
2012 if(session->show_lwindow)
2014 lwindow->gui->lock_window("MWindow::create_objects 1");
2015 lwindow->gui->show_window();
2016 lwindow->gui->unlock_window();
2019 if(debug) printf("MWindow::create_objects %d total_time=%d gwindow=%p\n",
2021 (int)timer.get_difference(),
2023 if(session->show_gwindow)
2025 gwindow->gui->lock_window("MWindow::create_objects 1");
2026 gwindow->gui->show_window();
2027 gwindow->gui->unlock_window();
2030 if(debug) PRINT_TRACE
2032 gui->lock_window("MWindow::create_objects 1");
2033 gui->mainmenu->load_defaults(defaults);
2034 gui->mainmenu->update_toggles(0);
2035 gui->update_patchbay();
2036 gui->draw_canvas(0, 0);
2037 gui->draw_cursor(1);
2039 gui->raise_window();
2040 gui->unlock_window();
2042 if(debug) PRINT_TRACE
2044 if(preferences->use_tipwindow)
2046 if(debug) PRINT_TRACE
2048 gui->add_keyboard_listener(
2049 (int (BC_WindowBase::*)(BC_WindowBase *))
2050 &MWindowGUI::keyboard_listener);
2054 if(debug) PRINT_TRACE
2056 BC_WindowBase::get_resources()->vframe_shm = 1;
2060 void MWindow::show_splash()
2062 #include "data/heroine_logo9_png.h"
2063 VFrame *frame = new VFramePng(heroine_logo9_png);
2064 BC_DisplayInfo dpyi;
2065 int rw = dpyi.get_root_w(), rh = dpyi.get_root_h();
2066 int rr = (rw < rh ? rw : rh) / 4;
2067 splash_window = new SplashGUI(frame, rr, rr);
2068 splash_window->create_objects();
2071 void MWindow::hide_splash()
2074 delete splash_window;
2079 void MWindow::start()
2083 // vwindows[DEFAULT_VWINDOW]->start();
2094 playback_3d->start();
2100 run_lock->lock("MWindow::run");
2104 brender_lock->lock("MWindow::run 1");
2105 delete brender; brender = 0;
2106 brender_lock->unlock();
2108 interrupt_indexes();
2114 void MWindow::show_vwindow()
2116 int total_running = 0;
2117 session->show_vwindow = 1;
2119 //printf("MWindow::show_vwindow %d %d\n", __LINE__, vwindows.size());
2120 // Raise all windows which are visible
2121 for(int j = 0; j < vwindows.size(); j++) {
2122 VWindow *vwindow = vwindows[j];
2123 if( !vwindow->is_running() ) continue;
2124 vwindow->gui->lock_window("MWindow::show_vwindow");
2125 vwindow->gui->show_window(0);
2126 vwindow->gui->raise_window();
2127 vwindow->gui->flush();
2128 vwindow->gui->unlock_window();
2132 // If no windows visible
2135 get_viewer(1, DEFAULT_VWINDOW);
2138 gui->mainmenu->show_vwindow->set_checked(1);
2141 void MWindow::show_awindow()
2143 session->show_awindow = 1;
2144 awindow->gui->lock_window("MWindow::show_awindow");
2145 awindow->gui->show_window();
2146 awindow->gui->raise_window();
2147 awindow->gui->flush();
2148 awindow->gui->unlock_window();
2149 gui->mainmenu->show_awindow->set_checked(1);
2152 char *MWindow::get_cwindow_display()
2154 char *x11_host = screens < 2 || session->window_config == 0 ?
2155 session->a_x11_host : session->b_x11_host;
2156 return *x11_host ? x11_host : 0;
2159 void MWindow::show_cwindow()
2161 session->show_cwindow = 1;
2162 cwindow->show_window();
2163 gui->mainmenu->show_cwindow->set_checked(1);
2166 void MWindow::show_gwindow()
2168 session->show_gwindow = 1;
2170 gwindow->gui->lock_window("MWindow::show_gwindow");
2171 gwindow->gui->show_window();
2172 gwindow->gui->raise_window();
2173 gwindow->gui->flush();
2174 gwindow->gui->unlock_window();
2176 gui->mainmenu->show_gwindow->set_checked(1);
2178 void MWindow::hide_gwindow()
2180 session->show_gwindow = 0;
2182 gwindow->gui->lock_window("MWindow::show_gwindow");
2183 gwindow->gui->hide_window();
2184 gwindow->gui->unlock_window();
2187 void MWindow::show_lwindow()
2189 session->show_lwindow = 1;
2190 lwindow->gui->lock_window("MWindow::show_lwindow");
2191 lwindow->gui->show_window();
2192 lwindow->gui->raise_window();
2193 lwindow->gui->flush();
2194 lwindow->gui->unlock_window();
2195 gui->mainmenu->show_lwindow->set_checked(1);
2198 int MWindow::tile_windows(int window_config)
2200 int need_reload = 0;
2201 int play_config = window_config==0 ? 0 : 1;
2202 edl->session->playback_config->load_defaults(defaults, play_config);
2203 session->default_window_positions(window_config);
2204 if( screens == 1 ) {
2205 gui->default_positions();
2206 sync_parameters(CHANGE_ALL);
2213 void MWindow::toggle_loop_playback()
2215 edl->local_session->loop_playback = !edl->local_session->loop_playback;
2216 set_loop_boundaries();
2219 gui->draw_overlays(1);
2220 sync_parameters(CHANGE_PARAMS);
2223 //void MWindow::set_titles(int value)
2225 // edl->session->show_titles = value;
2226 // trackmovement(edl->local_session->track_start);
2229 void MWindow::set_screens(int value)
2234 void MWindow::set_auto_keyframes(int value, int lock_mwindow, int lock_cwindow)
2236 if(lock_mwindow) gui->lock_window("MWindow::set_auto_keyframes");
2237 edl->session->auto_keyframes = value;
2238 gui->mbuttons->edit_panel->keyframe->update(value);
2240 if(lock_mwindow) gui->unlock_window();
2242 if(lock_cwindow) cwindow->gui->lock_window("MWindow::set_auto_keyframes");
2243 cwindow->gui->edit_panel->keyframe->update(value);
2244 cwindow->gui->flush();
2245 if(lock_cwindow) cwindow->gui->unlock_window();
2248 void MWindow::set_auto_visibility(Autos *autos, int value)
2250 if( autos->type == Autos::AUTOMATION_TYPE_PLUGIN )
2251 edl->session->auto_conf->plugins = value;
2252 else if( autos->autoidx >= 0 )
2253 edl->session->auto_conf->autos[autos->autoidx] = value;
2257 gui->update(0, 1, 0, 0, 0, 0, 0);
2258 gui->mainmenu->update_toggles(1);
2259 gui->unlock_window();
2260 gwindow->gui->update_toggles(1);
2261 gui->lock_window("MWindow::set_auto_visibility");
2264 void MWindow::set_keyframe_type(int mode)
2266 gui->lock_window("MWindow::set_keyframe_type");
2267 edl->local_session->floatauto_type = mode;
2268 gui->mainmenu->update_toggles(0);
2269 gui->unlock_window();
2272 int MWindow::set_editing_mode(int new_editing_mode, int lock_mwindow, int lock_cwindow)
2274 if(lock_mwindow) gui->lock_window("MWindow::set_editing_mode");
2275 edl->session->editing_mode = new_editing_mode;
2276 gui->mbuttons->edit_panel->editing_mode = edl->session->editing_mode;
2277 gui->mbuttons->edit_panel->update();
2278 gui->set_editing_mode(1);
2279 if(lock_mwindow) gui->unlock_window();
2282 if(lock_cwindow) cwindow->gui->lock_window("MWindow::set_editing_mode");
2283 cwindow->gui->edit_panel->update();
2284 cwindow->gui->edit_panel->editing_mode = edl->session->editing_mode;
2285 if(lock_cwindow) cwindow->gui->unlock_window();
2289 void MWindow::toggle_editing_mode()
2291 int mode = edl->session->editing_mode;
2292 if( mode == EDITING_ARROW )
2293 set_editing_mode(EDITING_IBEAM, 0, 1);
2295 set_editing_mode(EDITING_ARROW, 0, 1);
2299 void MWindow::set_labels_follow_edits(int value)
2301 gui->lock_window("MWindow::set_labels_follow_edits");
2302 edl->session->labels_follow_edits = value;
2303 gui->mbuttons->edit_panel->locklabels->update(value);
2304 gui->mainmenu->labels_follow_edits->set_checked(value);
2306 gui->unlock_window();
2309 void MWindow::sync_parameters(int change_type)
2311 if( in_destructor ) return;
2313 // Sync engines which are playing back
2314 if(cwindow->playback_engine->is_playing_back)
2316 if(change_type == CHANGE_PARAMS)
2318 // TODO: block keyframes until synchronization is done
2319 cwindow->playback_engine->sync_parameters(edl);
2324 int command = cwindow->playback_engine->command->command;
2325 cwindow->playback_engine->que->send_command(STOP,
2329 // Waiting for tracking to finish would make the restart position more
2330 // accurate but it can't lock the window to stop tracking for some reason.
2331 // Not waiting for tracking gives a faster response but restart position is
2332 // only as accurate as the last tracking update.
2333 cwindow->playback_engine->interrupt_playback(0);
2334 cwindow->playback_engine->que->send_command(command,
2343 cwindow->playback_engine->que->send_command(CURRENT_FRAME,
2350 void MWindow::age_caches()
2352 // printf("MWindow::age_caches %d %lld %lld %lld %lld\n",
2354 // preferences->cache_size,
2355 // audio_cache->get_memory_usage(1),
2356 // video_cache->get_memory_usage(1),
2357 // frame_cache->get_memory_usage(),
2358 // wave_cache->get_memory_usage(),
2360 frame_cache->age_cache(512);
2361 wave_cache->age_cache(8192);
2363 int64_t memory_usage;
2364 int64_t prev_memory_usage = 0;
2366 int64_t video_size = (int64_t)(preferences->cache_size * 0.80);
2367 while( !result && prev_memory_usage !=
2368 (memory_usage=video_cache->get_memory_usage(1)) &&
2369 memory_usage > video_size ) {
2370 video_cache->delete_oldest();
2371 prev_memory_usage = memory_usage;
2374 prev_memory_usage = 0;
2376 int64_t audio_size = (int64_t)(preferences->cache_size * 0.20);
2377 while( !result && prev_memory_usage !=
2378 (memory_usage=audio_cache->get_memory_usage(1)) &&
2379 memory_usage > audio_size ) {
2380 audio_cache->delete_oldest();
2381 prev_memory_usage = memory_usage;
2385 void MWindow::reset_android_remote()
2387 gui->use_android_remote(preferences->android_remote);
2391 void MWindow::show_keyframe_gui(Plugin *plugin)
2393 keyframe_gui_lock->lock("MWindow::show_keyframe_gui");
2394 // Find existing thread
2395 for(int i = 0; i < keyframe_threads->size(); i++)
2397 if(keyframe_threads->get(i)->plugin == plugin)
2399 keyframe_threads->get(i)->start_window(plugin, 0);
2400 keyframe_gui_lock->unlock();
2405 // Find unused thread
2406 for(int i = 0; i < keyframe_threads->size(); i++)
2408 if(!keyframe_threads->get(i)->plugin)
2410 keyframe_threads->get(i)->start_window(plugin, 0);
2411 keyframe_gui_lock->unlock();
2416 // Create new thread
2417 KeyFrameThread *thread = new KeyFrameThread(this);
2418 keyframe_threads->append(thread);
2419 thread->start_window(plugin, 0);
2421 keyframe_gui_lock->unlock();
2428 void MWindow::show_plugin(Plugin *plugin)
2433 // Remove previously deleted plugin GUIs
2434 dead_plugin_lock->lock("MWindow::show_plugin");
2435 dead_plugins->remove_all_objects();
2436 dead_plugin_lock->unlock();
2438 //printf("MWindow::show_plugin %d\n", __LINE__);
2442 plugin_gui_lock->lock("MWindow::show_plugin");
2443 for(int i = 0; i < plugin_guis->total; i++)
2445 // Pointer comparison
2446 if(plugin_guis->get(i)->plugin == plugin)
2448 plugin_guis->get(i)->raise_window();
2455 //printf("MWindow::show_plugin 1\n");
2460 printf("MWindow::show_plugin track not defined.\n");
2462 PluginServer *server = scan_plugindb(plugin->title,
2463 plugin->track->data_type);
2465 //printf("MWindow::show_plugin %p %d\n", server, server->uses_gui);
2466 if(server && server->uses_gui)
2468 PluginServer *gui = new PluginServer(*server);
2469 plugin_guis->append(gui);
2470 // Needs mwindow to do GUI
2471 gui->set_mwindow(this);
2472 gui->open_plugin(0, preferences, edl, plugin);
2477 plugin_gui_lock->unlock();
2478 //printf("MWindow::show_plugin %d\n", __LINE__);
2481 //printf("MWindow::show_plugin 2\n");
2484 void MWindow::hide_plugin(Plugin *plugin, int lock)
2487 // Update the toggle
2488 gui->lock_window("MWindow::hide_plugin");
2489 gui->update(0, 1, 0, 0, 0, 0, 0);
2490 gui->unlock_window();
2492 if(lock) plugin_gui_lock->lock("MWindow::hide_plugin");
2493 for(int i = 0; i < plugin_guis->total; i++)
2495 if(plugin_guis->get(i)->plugin == plugin)
2497 PluginServer *ptr = plugin_guis->get(i);
2498 plugin_guis->remove(ptr);
2499 if(lock) plugin_gui_lock->unlock();
2500 // Last command executed in client side close
2501 // Schedule for deletion
2508 if(lock) plugin_gui_lock->unlock();
2511 void MWindow::delete_plugin(PluginServer *plugin)
2513 dead_plugin_lock->lock("MWindow::delete_plugin");
2514 dead_plugins->append(plugin);
2515 dead_plugin_lock->unlock();
2518 void MWindow::hide_plugins()
2520 plugin_gui_lock->lock("MWindow::hide_plugins 1");
2521 while(plugin_guis->size())
2523 PluginServer *ptr = plugin_guis->get(0);
2524 plugin_guis->remove(ptr);
2525 plugin_gui_lock->unlock();
2526 // Last command executed in client side close
2527 // Schedule for deletion
2530 plugin_gui_lock->lock("MWindow::hide_plugins 2");
2532 plugin_gui_lock->unlock();
2534 hide_keyframe_guis();
2537 void MWindow::hide_keyframe_guis()
2539 keyframe_gui_lock->lock("MWindow::hide_keyframe_guis");
2540 for(int i = 0; i < keyframe_threads->size(); i++)
2542 keyframe_threads->get(i)->close_window();
2544 keyframe_gui_lock->unlock();
2547 void MWindow::hide_keyframe_gui(Plugin *plugin)
2549 keyframe_gui_lock->lock("MWindow::hide_keyframe_gui");
2550 for(int i = 0; i < keyframe_threads->size(); i++)
2552 if(keyframe_threads->get(i)->plugin == plugin)
2554 keyframe_threads->get(i)->close_window();
2558 keyframe_gui_lock->unlock();
2561 void MWindow::update_keyframe_guis()
2563 // Send new configuration to keyframe GUI's
2564 keyframe_gui_lock->lock("MWindow::update_keyframe_guis");
2565 for(int i = 0; i < keyframe_threads->size(); i++)
2567 KeyFrameThread *ptr = keyframe_threads->get(i);
2568 if(edl->tracks->plugin_exists(ptr->plugin))
2572 ptr->close_window();
2575 keyframe_gui_lock->unlock();
2578 void MWindow::update_plugin_guis(int do_keyframe_guis)
2580 // Send new configuration to plugin GUI's
2581 plugin_gui_lock->lock("MWindow::update_plugin_guis");
2583 for(int i = 0; i < plugin_guis->size(); i++)
2585 PluginServer *ptr = plugin_guis->get(i);
2586 if(edl->tracks->plugin_exists(ptr->plugin))
2590 // Schedule for deletion if no plugin
2591 plugin_guis->remove_number(i);
2600 // Change plugin variable if not visible
2601 Track *track = edl->tracks->first;
2604 for(int i = 0; i < track->plugin_set.size(); i++)
2606 Plugin *plugin = (Plugin*)track->plugin_set[i]->first;
2610 for(int i = 0; i < plugin_guis->size(); i++)
2612 PluginServer *server = plugin_guis->get(i);
2613 if(server->plugin == plugin)
2620 if(!got_it) plugin->show = 0;
2622 plugin = (Plugin*)plugin->next;
2626 track = track->next;
2629 plugin_gui_lock->unlock();
2632 if(do_keyframe_guis) update_keyframe_guis();
2635 int MWindow::plugin_gui_open(Plugin *plugin)
2638 plugin_gui_lock->lock("MWindow::plugin_gui_open");
2639 for(int i = 0; i < plugin_guis->total; i++)
2641 if(plugin_guis->get(i)->plugin->identical_location(plugin))
2647 plugin_gui_lock->unlock();
2651 void MWindow::render_plugin_gui(void *data, Plugin *plugin)
2653 plugin_gui_lock->lock("MWindow::render_plugin_gui");
2654 for(int i = 0; i < plugin_guis->total; i++)
2656 if(plugin_guis->get(i)->plugin->identical_location(plugin))
2658 plugin_guis->get(i)->render_gui(data);
2662 plugin_gui_lock->unlock();
2665 void MWindow::render_plugin_gui(void *data, int size, Plugin *plugin)
2667 plugin_gui_lock->lock("MWindow::render_plugin_gui");
2668 for(int i = 0; i < plugin_guis->total; i++)
2670 if(plugin_guis->get(i)->plugin->identical_location(plugin))
2672 plugin_guis->get(i)->render_gui(data, size);
2676 plugin_gui_lock->unlock();
2680 void MWindow::update_plugin_states()
2682 plugin_gui_lock->lock("MWindow::update_plugin_states");
2683 for(int i = 0; i < plugin_guis->total; i++)
2687 Plugin *src_plugin = plugin_guis->get(i)->plugin;
2688 PluginServer *src_plugingui = plugin_guis->get(i);
2690 // Search for plugin in EDL. Only the master EDL shows plugin GUIs.
2691 for(Track *track = edl->tracks->first;
2693 track = track->next)
2696 j < track->plugin_set.total && !result;
2699 PluginSet *plugin_set = track->plugin_set[j];
2700 for(Plugin *plugin = (Plugin*)plugin_set->first;
2702 plugin = (Plugin*)plugin->next)
2704 if(plugin == src_plugin &&
2705 !strcmp(plugin->title, src_plugingui->title)) result = 1;
2711 // Doesn't exist anymore
2714 hide_plugin(src_plugin, 0);
2718 plugin_gui_lock->unlock();
2722 void MWindow::update_plugin_titles()
2724 for(int i = 0; i < plugin_guis->total; i++)
2726 plugin_guis->get(i)->update_title();
2730 int MWindow::asset_to_edl(EDL *new_edl,
2732 RecordLabels *labels)
2734 const int debug = 0;
2735 if(debug) printf("MWindow::asset_to_edl %d new_asset->layers=%d\n",
2738 // Keep frame rate, sample rate, and output size unchanged.
2739 // These parameters would revert the project if VWindow displayed an asset
2740 // of different size than the project.
2741 if(new_asset->video_data)
2743 new_edl->session->video_tracks = new_asset->layers;
2746 new_edl->session->video_tracks = 0;
2748 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
2754 if(new_asset->audio_data)
2756 new_edl->session->audio_tracks = new_asset->channels;
2759 new_edl->session->audio_tracks = 0;
2760 //printf("MWindow::asset_to_edl 2 %d %d\n", new_edl->session->video_tracks, new_edl->session->audio_tracks);
2762 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
2763 new_edl->create_default_tracks();
2764 //printf("MWindow::asset_to_edl 2 %d %d\n", new_edl->session->video_tracks, new_edl->session->audio_tracks);
2765 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
2769 //printf("MWindow::asset_to_edl 3\n");
2770 new_edl->insert_asset(new_asset,
2775 //printf("MWindow::asset_to_edl 3\n");
2776 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
2778 // Align cursor on frames:: clip the new_edl to the minimum of the last joint frame.
2779 if(edl->session->cursor_on_frames)
2781 double length = new_edl->tracks->total_length();
2782 double edl_length = new_edl->tracks->total_length_framealigned(edl->session->frame_rate);
2783 new_edl->tracks->clear(length, edl_length, 1, 1);
2789 char string[BCTEXTLEN];
2791 fs.extract_name(string, new_asset->path);
2792 //printf("MWindow::asset_to_edl 3\n");
2794 strcpy(new_edl->local_session->clip_title, string);
2795 //printf("MWindow::asset_to_edl 4 %s\n", string);
2796 if(debug) printf("MWindow::asset_to_edl %d\n", __LINE__);
2801 int MWindow::edl_to_nested(EDL *new_edl,
2805 // Keep frame rate, sample rate, and output size unchanged.
2806 // These parameters would revert the project if VWindow displayed an asset
2807 // of different size than the project.
2811 // Nest all video & audio outputs
2812 new_edl->session->video_tracks = 1;
2813 new_edl->session->audio_tracks = nested_edl->session->audio_channels;
2814 new_edl->create_default_tracks();
2818 new_edl->insert_asset(0,
2824 char string[BCTEXTLEN];
2826 fs.extract_name(string, nested_edl->path);
2827 //printf("MWindow::edl_to_nested %p %s\n", nested_edl, nested_edl->path);
2829 strcpy(new_edl->local_session->clip_title, string);
2834 // Reset everything after a load.
2835 void MWindow::update_project(int load_mode)
2837 const int debug = 0;
2839 if(debug) PRINT_TRACE
2841 edl->tracks->update_y_pixels(theme);
2843 if(debug) PRINT_TRACE
2845 if(load_mode == LOADMODE_REPLACE ||
2846 load_mode == LOADMODE_REPLACE_CONCATENATE)
2851 gui->update(1, 1, 1, 1, 1, 1, 1);
2852 if(debug) PRINT_TRACE
2853 gui->unlock_window();
2855 cwindow->gui->lock_window("MWindow::update_project 1");
2856 cwindow->update(0, 0, 1, 1, 1);
2857 cwindow->gui->unlock_window();
2859 if(debug) PRINT_TRACE
2861 // Close all the vwindows
2862 if(load_mode == LOADMODE_REPLACE ||
2863 load_mode == LOADMODE_REPLACE_CONCATENATE) {
2864 if(debug) PRINT_TRACE
2865 int first_vwindow = 0;
2866 if(session->show_vwindow) first_vwindow = 1;
2867 // Change visible windows to no source
2868 for(int i = 0; i < first_vwindow && i < vwindows.size(); i++) {
2869 VWindow *vwindow = vwindows[i];
2870 if( !vwindow->is_running() ) continue;
2871 vwindow->change_source(-1);
2874 // Close remaining windows
2875 for(int i = first_vwindow; i < vwindows.size(); i++) {
2876 VWindow *vwindow = vwindows[i];
2877 if( !vwindow->is_running() ) continue;
2878 vwindow->close_window();
2880 if(debug) PRINT_TRACE
2882 else if(vwindows.size()) {
2883 VWindow *vwindow = vwindows[DEFAULT_VWINDOW];
2884 if( vwindow->is_running() ) {
2885 vwindow->gui->lock_window("MWindow::update_project");
2887 vwindow->gui->unlock_window();
2891 if(debug) PRINT_TRACE
2892 cwindow->gui->lock_window("MWindow::update_project 2");
2893 cwindow->gui->timebar->update(0);
2894 cwindow->gui->unlock_window();
2896 if(debug) PRINT_TRACE
2897 cwindow->playback_engine->que->send_command(CURRENT_FRAME,
2902 awindow->gui->async_update_assets();
2903 if(debug) PRINT_TRACE
2905 gui->lock_window("MWindow::update_project");
2907 if(debug) PRINT_TRACE
2910 void MWindow::remove_indexfile(Indexable *indexable)
2912 if( !indexable->is_asset ) return;
2913 Asset *asset = (Asset *)indexable;
2915 IndexFile::delete_index(preferences, asset, ".toc");
2916 IndexFile::delete_index(preferences, asset, ".idx");
2917 IndexFile::delete_index(preferences, asset, ".mkr");
2920 void MWindow::rebuild_indices()
2922 for(int i = 0; i < session->drag_assets->total; i++)
2924 Indexable *indexable = session->drag_assets->get(i);
2925 //printf("MWindow::rebuild_indices 1 %s\n", indexable->path);
2926 remove_indexfile(indexable);
2927 // Schedule index build
2928 IndexState *index_state = indexable->index_state;
2929 index_state->index_status = INDEX_NOTTESTED;
2930 if( indexable->is_asset ) {
2931 Asset *asset = (Asset *)indexable;
2932 if( asset->format != FILE_PCM )
2933 asset->reset_audio();
2934 asset->reset_video();
2936 mainindexes->add_next_asset(0, indexable);
2938 mainindexes->start_build();
2942 void MWindow::save_backup()
2946 edl->set_path(session->filename);
2947 char backup_path[BCTEXTLEN];
2948 snprintf(backup_path, sizeof(backup_path), "%s/%s",
2949 File::get_config_path(), BACKUP_FILE);
2950 edl->save_xml(&file, backup_path, 0, 0);
2951 file.terminate_string();
2953 fs.complete_path(backup_path);
2955 if(file.write_to_file(backup_path))
2958 sprintf(string2, _("Couldn't open %s for writing."), backup_path);
2959 gui->show_message(string2);
2963 void MWindow::load_backup()
2965 ArrayList<char*> path_list;
2966 path_list.set_array_delete();
2968 char backup_path[BCTEXTLEN];
2969 snprintf(backup_path, sizeof(backup_path), "%s/%s",
2970 File::get_config_path(), BACKUP_FILE);
2972 fs.complete_path(backup_path);
2974 path_list.append(out_path = new char[strlen(backup_path) + 1]);
2975 strcpy(out_path, backup_path);
2977 load_filenames(&path_list, LOADMODE_REPLACE, 0);
2978 edl->local_session->clip_title[0] = 0;
2979 // This is unique to backups since the path of the backup is different than the
2980 // path of the project.
2981 set_filename(edl->path);
2982 path_list.remove_all_objects();
2986 static inline int gcd(int m, int n)
2989 if( m < n ) { r = m; m = n; n = r; }
2990 while( (r = m % n) != 0 ) { m = n; n = r; }
2994 int MWindow::create_aspect_ratio(float &w, float &h, int width, int height)
2997 if(!width || !height) return 1;
2998 if( width == 720 && (height == 480 || height == 576) ) {
2999 w = 4; h = 3; return 0; // for NTSC and PAL
3001 double ar = (double)width / height;
3002 // square-ish pixels
3003 if( EQUIV(ar, 1.0000) ) return 0;
3004 if( EQUIV(ar, 1.3333) ) { w = 4; h = 3; return 0; }
3005 if( EQUIV(ar, 1.7777) ) { w = 16; h = 9; return 0; }
3006 if( EQUIV(ar, 2.1111) ) { w = 19; h = 9; return 0; }
3007 if( EQUIV(ar, 2.2222) ) { w = 20; h = 9; return 0; }
3008 if( EQUIV(ar, 2.3333) ) { w = 21; h = 9; return 0; }
3009 int ww = width, hh = height;
3010 // numerator, denominator must be under mx
3011 int mx = 255, n = gcd(ww, hh);
3012 if( n > 1 ) { ww /= n; hh /= n; }
3013 // search near height in case extra/missing lines
3014 if( ww >= mx || hh >= mx ) {
3015 double err = height; // +/- 2 percent height
3016 for( int m=2*height/100, i=1; m>0; i=i>0 ? -i : (--m, -i+1) ) {
3017 int iw = width, ih = height+i;
3018 if( (n=gcd(iw, ih)) > 1 ) {
3019 int u = iw/n; if( u >= mx ) continue;
3020 int v = ih/n; if( v >= mx ) continue;
3021 double r = (double) u/v, er = fabs(ar-r);
3022 if( er >= err ) continue;
3023 err = er; ww = u; hh = v;
3032 void MWindow::reset_caches()
3034 frame_cache->remove_all();
3035 wave_cache->remove_all();
3036 audio_cache->remove_all();
3037 video_cache->remove_all();
3038 if( cwindow->playback_engine && cwindow->playback_engine->audio_cache )
3039 cwindow->playback_engine->audio_cache->remove_all();
3040 if( cwindow->playback_engine && cwindow->playback_engine->video_cache )
3041 cwindow->playback_engine->video_cache->remove_all();
3043 for(int i = 0; i < vwindows.size(); i++) {
3044 VWindow *vwindow = vwindows[i];
3045 if( !vwindow->is_running() ) continue;
3046 if(vwindow->playback_engine && vwindow->playback_engine->audio_cache)
3047 vwindow->playback_engine->audio_cache->remove_all();
3048 if(vwindow->playback_engine && vwindow->playback_engine->video_cache)
3049 vwindow->playback_engine->video_cache->remove_all();
3053 void MWindow::remove_asset_from_caches(Asset *asset)
3055 gui->resource_thread->get_video_source(0);
3056 gui->resource_thread->get_audio_source(0);
3057 frame_cache->remove_asset(asset);
3058 wave_cache->remove_asset(asset);
3059 audio_cache->delete_entry(asset);
3060 video_cache->delete_entry(asset);
3061 if( cwindow->playback_engine && cwindow->playback_engine->audio_cache )
3062 cwindow->playback_engine->audio_cache->delete_entry(asset);
3063 if( cwindow->playback_engine && cwindow->playback_engine->video_cache )
3064 cwindow->playback_engine->video_cache->delete_entry(asset);
3065 for(int i = 0; i < vwindows.size(); i++) {
3066 VWindow *vwindow = vwindows[i];
3067 if( !vwindow->is_running() ) continue;
3068 if(vwindow->playback_engine && vwindow->playback_engine->audio_cache)
3069 vwindow->playback_engine->audio_cache->delete_entry(asset);
3070 if(vwindow->playback_engine && vwindow->playback_engine->video_cache)
3071 vwindow->playback_engine->video_cache->delete_entry(asset);
3076 void MWindow::remove_assets_from_project(int push_undo, int redraw,
3077 ArrayList<Indexable*> *drag_assets, ArrayList<EDL*> *drag_clips)
3079 for(int i = 0; i < session->drag_assets->total; i++) {
3080 Indexable *indexable = session->drag_assets->get(i);
3081 if(indexable->is_asset) remove_asset_from_caches((Asset*)indexable);
3084 // Remove from VWindow.
3085 for(int i = 0; i < session->drag_clips->total; i++) {
3086 for(int j = 0; j < vwindows.size(); j++) {
3087 VWindow *vwindow = vwindows[j];
3088 if( !vwindow->is_running() ) continue;
3089 if(session->drag_clips->get(i) == vwindow->get_edl()) {
3090 vwindow->gui->lock_window("MWindow::remove_assets_from_project 1");
3091 vwindow->delete_source(1, 1);
3092 vwindow->gui->unlock_window();
3097 for(int i = 0; i < session->drag_assets->size(); i++) {
3098 for(int j = 0; j < vwindows.size(); j++) {
3099 VWindow *vwindow = vwindows[j];
3100 if( !vwindow->is_running() ) continue;
3101 if(session->drag_assets->get(i) == vwindow->get_source()) {
3102 vwindow->gui->lock_window("MWindow::remove_assets_from_project 2");
3103 vwindow->delete_source(1, 1);
3104 vwindow->gui->unlock_window();
3109 for(int i = 0; i < session->drag_assets->size(); i++) {
3110 Indexable *indexable = session->drag_assets->get(i);
3111 remove_indexfile(indexable);
3114 //printf("MWindow::rebuild_indices 1 %s\n", indexable->path);
3115 if(push_undo) undo->update_undo_before();
3116 if(drag_assets) edl->remove_from_project(drag_assets);
3117 if(drag_clips) edl->remove_from_project(session->drag_clips);
3118 if(redraw) save_backup();
3119 if(push_undo) undo->update_undo_after(_("remove assets"), LOAD_ALL);
3124 gui->lock_window("MWindow::remove_assets_from_project 3");
3132 gui->unlock_window();
3134 // Removes from playback here
3135 sync_parameters(CHANGE_ALL);
3138 awindow->gui->async_update_assets();
3141 void MWindow::remove_assets_from_disk()
3144 for(int i = 0; i < session->drag_assets->total; i++)
3146 remove(session->drag_assets->get(i)->path);
3149 remove_assets_from_project(1,
3151 session->drag_assets,
3152 session->drag_clips);
3155 void MWindow::dump_plugins(FILE *fp)
3157 if( !plugindb ) return;
3158 for(int i = 0; i < plugindb->total; i++)
3160 fprintf(fp, "type=%d audio=%d video=%d rt=%d multi=%d"
3161 " synth=%d transition=%d theme=%d %s\n",
3162 plugindb->get(i)->plugin_type,
3163 plugindb->get(i)->audio,
3164 plugindb->get(i)->video,
3165 plugindb->get(i)->realtime,
3166 plugindb->get(i)->multichannel,
3167 plugindb->get(i)->get_synthesis(),
3168 plugindb->get(i)->transition,
3169 plugindb->get(i)->theme,
3170 plugindb->get(i)->title);
3174 void MWindow::dump_edl(FILE *fp)
3180 void MWindow::dump_undo(FILE *fp)
3186 void MWindow::dump_exe(FILE *fp)
3188 char proc_path[BCTEXTLEN], exe_path[BCTEXTLEN];
3189 sprintf(proc_path, "/proc/%d/exe", (int)getpid());
3191 int ret = -1, n = 100;
3192 for( int len; (len=readlink(proc_path, exe_path, sizeof(exe_path)))>0; --n ) {
3193 exe_path[len] = 0; strcpy(proc_path, exe_path);
3196 if( n < 0 || ret < 0 ) { fprintf(fp,"readlink: %m\n"); return; }
3199 if( stat(proc_path,&st) ) { fprintf(fp,"stat: %m\n"); return; }
3200 fprintf(fp, "path: %s = %9jd bytes\n",proc_path,st.st_size);
3201 struct tm *tm = localtime(&st.st_mtime);
3203 strftime(mtime, sizeof(mtime), "%F %T", tm);
3204 fprintf(fp,"mtime: %s\n", mtime);
3206 int fd = open(proc_path,O_RDONLY+O_NONBLOCK);
3207 if( fd < 0 ) { fprintf(fp,"open: %m\n"); return; }
3210 int64_t pagsz = sysconf(_SC_PAGE_SIZE);
3211 int64_t maxsz = 1024*pagsz;
3212 int64_t size = st.st_size, pos = 0;
3214 while( (bfrsz = size-pos) > 0 ) {
3215 if( bfrsz > maxsz ) bfrsz = maxsz;
3216 bfr = (uint8_t *)mmap(NULL, bfrsz, PROT_READ,
3217 MAP_PRIVATE+MAP_NORESERVE+MAP_POPULATE, fd, pos);
3218 if( bfr == MAP_FAILED ) break;
3219 sha1.addBytes(bfr, bfrsz);
3224 ret = pos < size ? EIO : 0;
3225 fprintf(fp, "SHA1: ");
3226 uint8_t digest[20]; sha1.computeHash(digest);
3227 for( int i=0; i<20; ++i ) fprintf(fp, "%02x", digest[i]);
3228 if( ret < 0 ) fprintf(fp, " (ret %d)", ret);
3229 if( pos < st.st_size ) fprintf(fp, " (pos %jd)", pos);
3233 void MWindow::trap_hook(FILE *fp, void *vp)
3235 MWindow *mwindow = (MWindow *)vp;
3236 // fprintf(fp, "\nPLUGINS:\n");
3237 // mwindow->dump_plugins(fp);
3238 fprintf(fp, "\nEDL:\n");
3239 mwindow->dump_edl(fp);
3240 fprintf(fp, "\nUNDO:\n");
3241 mwindow->dump_undo(fp);
3242 fprintf(fp, "\nEXE:\n");
3243 mwindow->dump_exe(fp);
3251 int MWindow::save_defaults()
3253 gui->save_defaults(defaults);
3254 edl->save_defaults(defaults);
3255 session->save_defaults(defaults);
3256 preferences->save_defaults(defaults);
3258 for(int i = 0; i < plugin_guis->total; i++)
3260 // Pointer comparison
3261 plugin_guis->get(i)->save_defaults();
3263 awindow->save_defaults(defaults);
3269 int MWindow::run_script(FileXML *script)
3271 int result = 0, result2 = 0;
3272 while(!result && !result2)
3274 result = script->read_tag();
3277 if(script->tag.title_is("new_project"))
3279 // Run new in immediate mode.
3280 // gui->mainmenu->new_project->run_script(script);
3283 if(script->tag.title_is("record"))
3285 // Run record as a thread. It is a terminal command.
3287 // Will read the complete scipt file without letting record read it if not
3293 printf("MWindow::run_script: Unrecognized command: %s\n",script->tag.get_title() );
3300 // ================================= synchronization
3303 int MWindow::interrupt_indexes()
3305 mainprogress->cancelled = 1;
3306 mainindexes->interrupt_build();
3312 void MWindow::next_time_format()
3314 switch(edl->session->time_format)
3316 case TIME_HMS: edl->session->time_format = TIME_HMSF; break;
3317 case TIME_HMSF: edl->session->time_format = TIME_SAMPLES; break;
3318 case TIME_SAMPLES: edl->session->time_format = TIME_SAMPLES_HEX; break;
3319 case TIME_SAMPLES_HEX: edl->session->time_format = TIME_FRAMES; break;
3320 case TIME_FRAMES: edl->session->time_format = TIME_FEET_FRAMES; break;
3321 case TIME_FEET_FRAMES: edl->session->time_format = TIME_SECONDS; break;
3322 case TIME_SECONDS: edl->session->time_format = TIME_HMS; break;
3325 time_format_common();
3328 void MWindow::prev_time_format()
3330 switch(edl->session->time_format)
3332 case TIME_HMS: edl->session->time_format = TIME_SECONDS; break;
3333 case TIME_SECONDS: edl->session->time_format = TIME_FEET_FRAMES; break;
3334 case TIME_FEET_FRAMES: edl->session->time_format = TIME_FRAMES; break;
3335 case TIME_FRAMES: edl->session->time_format = TIME_SAMPLES_HEX; break;
3336 case TIME_SAMPLES_HEX: edl->session->time_format = TIME_SAMPLES; break;
3337 case TIME_SAMPLES: edl->session->time_format = TIME_HMSF; break;
3338 case TIME_HMSF: edl->session->time_format = TIME_HMS; break;
3341 time_format_common();
3344 void MWindow::time_format_common()
3346 gui->lock_window("MWindow::next_time_format");
3347 gui->redraw_time_dependancies();
3350 char string[BCTEXTLEN], string2[BCTEXTLEN];
3351 sprintf(string, _("Using %s"), Units::print_time_format(edl->session->time_format, string2));
3352 gui->show_message(string);
3354 gui->unlock_window();
3358 int MWindow::set_filename(const char *filename)
3360 if( filename != session->filename )
3361 strcpy(session->filename, filename);
3362 if( filename != edl->path )
3363 strcpy(edl->path, filename);
3367 if(filename[0] == 0)
3369 gui->set_title(PROGRAM_NAME);
3374 char string[BCTEXTLEN], string2[BCTEXTLEN];
3375 dir.extract_name(string, filename);
3376 sprintf(string2, PROGRAM_NAME ": %s", string);
3377 gui->set_title(string2);
3390 int MWindow::set_loop_boundaries()
3392 double start = edl->local_session->get_selectionstart();
3393 double end = edl->local_session->get_selectionend();
3401 if(edl->tracks->total_length())
3404 end = edl->tracks->total_length();
3411 if(edl->local_session->loop_playback && start != end)
3413 edl->local_session->loop_start = start;
3414 edl->local_session->loop_end = end;
3425 int MWindow::reset_meters()
3427 cwindow->gui->lock_window("MWindow::reset_meters 1");
3428 cwindow->gui->meters->reset_meters();
3429 cwindow->gui->unlock_window();
3431 for(int j = 0; j < vwindows.size(); j++) {
3432 VWindow *vwindow = vwindows[j];
3433 if( !vwindow->is_running() ) continue;
3434 vwindow->gui->lock_window("MWindow::reset_meters 2");
3435 vwindow->gui->meters->reset_meters();
3436 vwindow->gui->unlock_window();
3439 lwindow->gui->lock_window("MWindow::reset_meters 3");
3440 lwindow->gui->panel->reset_meters();
3441 lwindow->gui->unlock_window();
3443 gui->lock_window("MWindow::reset_meters 4");
3444 gui->reset_meters();
3445 gui->unlock_window();
3450 void MWindow::resync_guis()
3454 gui->lock_window("MWindow::resync_guis");
3455 gui->update(1, 1, 1, 1, 1, 1, 0);
3456 gui->unlock_window();
3458 cwindow->gui->lock_window("MWindow::resync_guis");
3459 cwindow->gui->resize_event(cwindow->gui->get_w(),
3460 cwindow->gui->get_h());
3461 int channels = edl->session->audio_channels;
3462 cwindow->gui->meters->set_meters(channels, 1);
3463 cwindow->gui->flush();
3464 cwindow->gui->unlock_window();
3466 for(int i = 0; i < vwindows.size(); i++) {
3467 VWindow *vwindow = vwindows[i];
3468 if( !vwindow->is_running() ) continue;
3469 vwindow->gui->lock_window("MWindow::resync_guis");
3470 vwindow->gui->resize_event(vwindow->gui->get_w(),
3471 vwindow->gui->get_h());
3472 vwindow->gui->meters->set_meters(channels, 1);
3473 vwindow->gui->flush();
3474 vwindow->gui->unlock_window();
3477 lwindow->gui->lock_window("MWindow::resync_guis");
3478 lwindow->gui->panel->set_meters(channels, 1);
3479 lwindow->gui->flush();
3480 lwindow->gui->unlock_window();
3483 if(((edl->session->output_w % 4) ||
3484 (edl->session->output_h % 4)) &&
3485 edl->session->playback_config->vconfig->driver == PLAYBACK_X11_GL)
3487 MainError::show_error(
3488 _("This project's dimensions are not multiples of 4 so\n"
3489 "it can't be rendered by OpenGL."));
3494 sync_parameters(CHANGE_ALL);
3497 int MWindow::select_asset(Asset *asset, int vstream, int astream, int delete_tracks)
3499 File *file = new File;
3500 EDLSession *session = edl->session;
3501 double old_framerate = session->frame_rate;
3502 double old_samplerate = session->sample_rate;
3503 int old_auto_keyframes = session->auto_keyframes;
3504 session->auto_keyframes = 0;
3505 int result = file->open_file(preferences, asset, 1, 0);
3506 if( !result && delete_tracks > 0 )
3507 undo->update_undo_before();
3508 if( !result && asset->video_data && asset->get_video_layers() > 0 ) {
3509 // try to get asset up to date, may fail
3510 file->select_video_stream(asset, vstream);
3511 // either way use what was/is there.
3512 double framerate = asset->get_frame_rate();
3513 int width = asset->get_w();
3514 int height = asset->get_h();
3515 // must be multiple of 4 for opengl
3516 width = (width+3) & ~3; height = (height+3) & ~3;
3517 int driver = session->playback_config->vconfig->driver;
3518 int color_model = file->get_best_colormodel(asset, driver);
3519 // color_model = BC_CModels::is_yuv(color_model) ?
3520 // BC_CModels::has_alpha(color_model) ? BC_YUVA8888 : BC_YUV888 :
3521 // BC_CModels::is_float(color_model) ?
3522 // BC_CModels::has_alpha(color_model) ? BC_RGBA_FLOAT : BC_RGB_FLOAT :
3523 // BC_CModels::has_alpha(color_model) ? BC_RGBA8888 : BC_RGB888;
3524 // have alpha for now
3525 color_model = BC_CModels::is_yuv(color_model) ? BC_YUVA8888 :
3526 BC_CModels::is_float(color_model) ? BC_RGBA_FLOAT : BC_RGBA8888;
3527 session->color_model = color_model;
3528 session->output_w = width;
3529 session->output_h = height;
3530 session->frame_rate = framerate;
3531 // not, asset->actual_width/actual_height
3532 asset->width = session->output_w;
3533 asset->height = session->output_h;
3534 asset->frame_rate = session->frame_rate;
3535 create_aspect_ratio(session->aspect_w, session->aspect_h,
3536 session->output_w, session->output_h);
3537 Track *track = edl->tracks->first;
3538 for( Track *next_track=0; track; track=next_track ) {
3539 next_track = track->next;
3540 if( track->data_type != TRACK_VIDEO ) continue;
3541 if( delete_tracks ) {
3542 Edit *edit = track->edits->first;
3543 for( Edit *next_edit=0; edit; edit=next_edit ) {
3544 next_edit = edit->next;
3545 if( edit->channel != vstream ||
3546 !edit->asset || !edit->asset->is_asset ||
3547 !asset->equivalent(*edit->asset,1,1,edl) )
3551 if( track->edits->first ) {
3552 track->track_w = edl->session->output_w;
3553 track->track_h = edl->session->output_h;
3555 else if( delete_tracks )
3556 edl->tracks->delete_track(track);
3558 edl->resample(old_framerate, session->frame_rate, TRACK_VIDEO);
3560 if( !result && asset->audio_data && asset->channels > 0 ) {
3561 session->sample_rate = asset->get_sample_rate();
3562 int64_t channel_mask = 0;
3563 int astrm = !asset->video_data ? -1 :
3564 file->get_audio_for_video(vstream, astream, channel_mask);
3565 if( astrm >= 0 ) file->select_audio_stream(asset, astrm);
3566 if( astrm < 0 || !channel_mask ) channel_mask = (1<<asset->channels)-1;
3568 for( uint64_t mask=channel_mask; mask!=0; mask>>=1 ) channels += mask & 1;
3569 if( channels < 1 ) channels = 1;
3570 if( channels > 6 ) channels = 6;
3571 session->audio_tracks = session->audio_channels = channels;
3572 switch( channels ) {
3574 session->achannel_positions[0] = 90;
3575 session->achannel_positions[1] = 150;
3576 session->achannel_positions[2] = 30;
3577 session->achannel_positions[3] = 210;
3578 session->achannel_positions[4] = 330;
3579 session->achannel_positions[5] = 270;
3582 session->achannel_positions[0] = 180;
3583 session->achannel_positions[1] = 0;
3586 session->achannel_positions[1] = 90;
3589 if( !channels ) break;
3590 double t = 0, dt = 360./channels;
3591 for( int i=channels; --i>=0; t+=dt )
3592 session->achannel_positions[i] = int(t+0.5);
3595 remap_audio(MWindow::AUDIO_1_TO_1);
3597 if( delete_tracks ) {
3598 Track *track = edl->tracks->first;
3599 for( Track *next_track=0; track; track=next_track ) {
3600 next_track = track->next;
3601 if( track->data_type != TRACK_AUDIO ) continue;
3602 Edit *edit = track->edits->first;
3603 for( Edit *next_edit=0; edit; edit=next_edit ) {
3604 next_edit = edit->next;
3605 if( !((1<<edit->channel) & channel_mask) ||
3606 !edit->asset || !edit->asset->is_asset ||
3607 !asset->equivalent(*edit->asset,1,1,edl) )
3610 if( !track->edits->first )
3611 edl->tracks->delete_track(track);
3615 edl->resample(old_samplerate, session->sample_rate, TRACK_AUDIO);
3618 session->auto_keyframes = old_auto_keyframes;
3619 if( !result && delete_tracks > 0 ) {
3621 undo->update_undo_after(_("select asset"), LOAD_ALL);
3627 int MWindow::select_asset(int vtrack, int delete_tracks)
3629 Track *track = edl->tracks->get(vtrack, TRACK_VIDEO);
3631 track = edl->tracks->get(vtrack, TRACK_AUDIO);
3632 if( !track ) return 1;
3633 Edit *edit = track->edits->first;
3634 if( !edit ) return 1;
3635 Asset *asset = edit->asset;
3636 if( !asset || !asset->is_asset ) return 1;
3637 return select_asset(asset, edit->channel, 0, delete_tracks);
3640 void MWindow::dump_plugindb(FILE *fp)
3642 if( !plugindb ) return;
3643 for(int i = 0; i < plugindb->total; i++)
3644 plugindb->get(i)->dump(fp);
3647 FloatAuto* MWindow::get_float_auto(PatchGUI *patch,int idx)
3650 double unit_position = edl->local_session->get_selectionstart(1);
3651 unit_position = patch->track->to_units(unit_position, 0);
3653 FloatAutos *ptr = (FloatAutos*)patch->track->automation->autos[idx];
3654 return (FloatAuto*)ptr->get_prev_auto( (long)unit_position, PLAY_FORWARD, current);
3657 IntAuto* MWindow::get_int_auto(PatchGUI *patch,int idx)
3660 double unit_position = edl->local_session->get_selectionstart(1);
3661 unit_position = patch->track->to_units(unit_position, 0);
3663 IntAutos *ptr = (IntAutos*)patch->track->automation->autos[idx];
3664 return (IntAuto*)ptr->get_prev_auto( (long)unit_position, PLAY_FORWARD, current);
3667 PanAuto* MWindow::get_pan_auto(PatchGUI *patch)
3670 double unit_position = edl->local_session->get_selectionstart(1);
3671 unit_position = patch->track->to_units(unit_position, 0);
3673 PanAutos *ptr = (PanAutos*)patch->track->automation->autos[AUTOMATION_PAN];
3674 return (PanAuto*)ptr->get_prev_auto( (long)unit_position, PLAY_FORWARD, current);