9b4e9c142bf6358c4250d05dd98e981441ed2196
[goodguy/history.git] / cinelerra-5.1 / cinelerra / edl.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 1997-2012 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #include "asset.h"
23 #include "assets.h"
24 #include "atrack.h"
25 #include "autoconf.h"
26 #include "automation.h"
27 #include "awindowgui.inc"
28 #include "bcsignals.h"
29 #include "clip.h"
30 #include "bccmodels.h"
31 #include "bchash.h"
32 #include "edits.h"
33 #include "edl.h"
34 #include "edlsession.h"
35 #include "filexml.h"
36 #include "guicast.h"
37 #include "indexstate.h"
38 #include "interlacemodes.h"
39 #include "labels.h"
40 #include "localsession.h"
41 #include "maskautos.h"
42 #include "mutex.h"
43 #include "nestededls.h"
44 #include "panauto.h"
45 #include "panautos.h"
46 #include "playbackconfig.h"
47 #include "playabletracks.h"
48 #include "plugin.h"
49 #include "preferences.h"
50 #include "recordconfig.h"
51 #include "recordlabel.h"
52 #include "sharedlocation.h"
53 #include "theme.h"
54 #include "tracks.h"
55 #include "transportque.inc"
56 #include "versioninfo.h"
57 #include "vedit.h"
58 #include "vtrack.h"
59
60
61
62
63 Mutex* EDL::id_lock = 0;
64
65
66
67 EDL::EDL(EDL *parent_edl)
68  : Indexable(0)
69 {
70         this->parent_edl = parent_edl;
71         tracks = 0;
72         labels = 0;
73         local_session = 0;
74 //      vwindow_edl = 0;
75 //      vwindow_edl_shared = 0;
76
77         folders.set_array_delete();
78
79 // persistent for now
80 //      new_folder(CLIP_FOLDER);
81 //      new_folder(MEDIA_FOLDER);
82
83         id = next_id();
84         path[0] = 0;
85 }
86
87
88 EDL::~EDL()
89 {
90
91         if(tracks)
92         {
93                 delete tracks;
94         }
95         if(labels)
96         {
97                 delete labels;
98         }
99
100         if(local_session)
101         {
102                 delete local_session;
103         }
104
105
106         remove_vwindow_edls();
107
108 //      if(vwindow_edl && !vwindow_edl_shared)
109 //              vwindow_edl->Garbage::remove_user();
110
111         if(!parent_edl)
112         {
113                 delete assets;
114                 delete session;
115         }
116
117
118         folders.remove_all_objects();
119         for(int i = 0; i < clips.size(); i++)
120                 clips.get(i)->Garbage::remove_user();
121         clips.remove_all();
122         delete nested_edls;
123 }
124
125
126
127 void EDL::create_objects()
128 {
129         tracks = new Tracks(this);
130         if(!parent_edl)
131         {
132                 assets = new Assets(this);
133                 session = new EDLSession(this);
134         }
135         else
136         {
137                 assets = parent_edl->assets;
138                 session = parent_edl->session;
139         }
140
141         local_session = new LocalSession(this);
142         labels = new Labels(this, "LABELS");
143         nested_edls = new NestedEDLs;
144 //      last_playback_position = 0;
145 }
146
147 EDL& EDL::operator=(EDL &edl)
148 {
149 printf("EDL::operator= 1\n");
150         copy_all(&edl);
151         return *this;
152 }
153
154 int EDL::load_defaults(BC_Hash *defaults)
155 {
156         if(!parent_edl)
157                 session->load_defaults(defaults);
158
159         local_session->load_defaults(defaults);
160         return 0;
161 }
162
163 int EDL::save_defaults(BC_Hash *defaults)
164 {
165         if(!parent_edl)
166                 session->save_defaults(defaults);
167
168         local_session->save_defaults(defaults);
169         return 0;
170 }
171
172 void EDL::boundaries()
173 {
174         session->boundaries();
175         local_session->boundaries();
176 }
177
178 int EDL::create_default_tracks()
179 {
180
181         for(int i = 0; i < session->video_tracks; i++)
182         {
183                 tracks->add_video_track(0, 0);
184         }
185         for(int i = 0; i < session->audio_tracks; i++)
186         {
187                 tracks->add_audio_track(0, 0);
188         }
189         return 0;
190 }
191
192 int EDL::load_xml(FileXML *file,
193         uint32_t load_flags)
194 {
195         int result = 0;
196 // Track numbering offset for replacing undo data.
197         int track_offset = 0;
198
199 // Clear objects
200         folders.remove_all_objects();
201
202         if((load_flags & LOAD_ALL) == LOAD_ALL)
203         {
204                 remove_vwindow_edls();
205         }
206
207
208 // Search for start of master EDL.
209
210 // The parent_edl test caused clip creation to fail since those XML files
211 // contained an EDL tag.
212
213 // The parent_edl test is required to make EDL loading work because
214 // when loading an EDL the EDL tag is already read by the parent.
215
216         if(!parent_edl)
217         {
218                 do{
219                   result = file->read_tag();
220                 }while(!result &&
221                         !file->tag.title_is("XML") &&
222                         !file->tag.title_is("EDL"));
223         }
224
225         if(!result)
226         {
227 // Get path for backups
228 //              path[0] = 0;
229                 file->tag.get_property("path", path);
230
231 // Erase everything
232                 if((load_flags & LOAD_ALL) == LOAD_ALL ||
233                         (load_flags & LOAD_EDITS) == LOAD_EDITS)
234                 {
235                         while(tracks->last) delete tracks->last;
236                 }
237
238                 if((load_flags & LOAD_ALL) == LOAD_ALL)
239                 {
240                         for(int i = 0; i < clips.size(); i++)
241                                 clips.get(i)->Garbage::remove_user();
242                         clips.remove_all();
243                         mixers.remove_all_objects();
244                 }
245
246                 if(load_flags & LOAD_TIMEBAR)
247                 {
248                         while(labels->last) delete labels->last;
249                         local_session->unset_inpoint();
250                         local_session->unset_outpoint();
251                 }
252
253 // This was originally in LocalSession::load_xml
254                 if(load_flags & LOAD_SESSION)
255                 {
256                         local_session->clipboard_length = 0;
257                 }
258
259                 do{
260                         result = file->read_tag();
261
262                         if(!result)
263                         {
264                                 if(file->tag.title_is("/XML") ||
265                                         file->tag.title_is("/EDL") ||
266                                         file->tag.title_is("/CLIP_EDL") ||
267                                         file->tag.title_is("/VWINDOW_EDL"))
268                                 {
269                                         result = 1;
270                                 }
271                                 else
272                                 if(file->tag.title_is("CLIPBOARD"))
273                                 {
274                                         local_session->clipboard_length =
275                                                 file->tag.get_property("LENGTH", (double)0);
276                                 }
277                                 else
278                                 if(file->tag.title_is("VIDEO"))
279                                 {
280                                         if((load_flags & LOAD_VCONFIG) &&
281                                                 (load_flags & LOAD_SESSION))
282                                                 session->load_video_config(file, 0, load_flags);
283                                         else
284                                                 result = file->skip_tag();
285                                 }
286                                 else
287                                 if(file->tag.title_is("AUDIO"))
288                                 {
289                                         if((load_flags & LOAD_ACONFIG) &&
290                                                 (load_flags & LOAD_SESSION))
291                                                 session->load_audio_config(file, 0, load_flags);
292                                         else
293                                                 result = file->skip_tag();
294                                 }
295                                 else
296                                 if(file->tag.title_is("FOLDER"))
297                                 {
298                                         char folder[BCTEXTLEN];
299                                         strcpy(folder, file->read_text());
300                                         new_folder(folder);
301                                 }
302                                 else
303                                 if(file->tag.title_is("MIXERS"))
304                                 {
305                                         if((load_flags & LOAD_SESSION))
306                                                 mixers.load(file);
307                                         else
308                                                 result = file->skip_tag();
309                                 }
310                                 else
311                                 if(file->tag.title_is("ASSETS"))
312                                 {
313                                         if(load_flags & LOAD_ASSETS)
314                                                 assets->load(file, load_flags);
315                                         else
316                                                 result = file->skip_tag();
317                                 }
318                                 else
319                                 if(file->tag.title_is(labels->xml_tag))
320                                 {
321                                         if(load_flags & LOAD_TIMEBAR)
322                                                 labels->load(file, load_flags);
323                                         else
324                                                 result = file->skip_tag();
325                                 }
326                                 else
327                                 if(file->tag.title_is("LOCALSESSION"))
328                                 {
329                                         if((load_flags & LOAD_SESSION) ||
330                                                 (load_flags & LOAD_TIMEBAR))
331                                                 local_session->load_xml(file, load_flags);
332                                         else
333                                                 result = file->skip_tag();
334                                 }
335                                 else
336                                 if(file->tag.title_is("SESSION"))
337                                 {
338                                         if((load_flags & LOAD_SESSION) &&
339                                                 !parent_edl)
340                                                 session->load_xml(file, 0, load_flags);
341                                         else
342                                                 result = file->skip_tag();
343                                 }
344                                 else
345                                 if(file->tag.title_is("TRACK"))
346                                 {
347                                         tracks->load(file, track_offset, load_flags);
348                                 }
349                                 else
350 // Sub EDL.
351 // Causes clip creation to fail because that involves an opening EDL tag.
352                                 if(file->tag.title_is("CLIP_EDL") && !parent_edl)
353                                 {
354                                         EDL *new_edl = new EDL(this);
355                                         new_edl->create_objects();
356                                         new_edl->load_xml(file, LOAD_ALL);
357
358                                         if((load_flags & LOAD_ALL) == LOAD_ALL)
359                                                 clips.append(new_edl);
360                                         else
361                                                 new_edl->Garbage::remove_user();
362                                 }
363                                 else
364                                 if(file->tag.title_is("VWINDOW_EDL") && !parent_edl)
365                                 {
366                                         EDL *new_edl = new EDL(this);
367                                         new_edl->create_objects();
368                                         new_edl->load_xml(file, LOAD_ALL);
369
370
371                                         if((load_flags & LOAD_ALL) == LOAD_ALL)
372                                         {
373 //                                              if(vwindow_edl && !vwindow_edl_shared)
374 //                                                      vwindow_edl->Garbage::remove_user();
375 //                                              vwindow_edl_shared = 0;
376 //                                              vwindow_edl = new_edl;
377
378                                                 append_vwindow_edl(new_edl, 0);
379
380                                         }
381                                         else
382 // Discard if not replacing EDL
383                                         {
384                                                 new_edl->Garbage::remove_user();
385                                                 new_edl = 0;
386                                         }
387                                 }
388                         }
389                 }while(!result);
390         }
391         boundaries();
392 //dump();
393
394         return 0;
395 }
396
397 // Output path is the path of the output file if name truncation is desired.
398 // It is a "" if complete names should be used.
399 // Called recursively by copy for clips, thus the string can't be terminated.
400 // The string is not terminated in this call.
401 int EDL::save_xml(FileXML *file,
402         const char *output_path,
403         int is_clip,
404         int is_vwindow)
405 {
406         copy(0,
407                 tracks->total_length(),
408                 1,
409                 is_clip,
410                 is_vwindow,
411                 file,
412                 output_path,
413                 0);
414         return 0;
415 }
416
417 int EDL::copy_all(EDL *edl)
418 {
419         if(this == edl) return 0;
420         update_index(edl);
421         nested_edls->clear();
422         copy_session(edl);
423         copy_assets(edl);
424         copy_clips(edl);
425         copy_mixers(edl);
426         tracks->copy_from(edl->tracks);
427         labels->copy_from(edl->labels);
428         return 0;
429 }
430
431 void EDL::copy_clips(EDL *edl)
432 {
433         if(this == edl) return;
434
435         remove_vwindow_edls();
436
437 //      if(vwindow_edl && !vwindow_edl_shared)
438 //              vwindow_edl->Garbage::remove_user();
439 //      vwindow_edl = 0;
440 //      vwindow_edl_shared = 0;
441
442         for(int i = 0; i < edl->total_vwindow_edls(); i++)
443         {
444                 EDL *new_edl = new EDL(this);
445                 new_edl->create_objects();
446                 new_edl->copy_all(edl->get_vwindow_edl(i));
447                 append_vwindow_edl(new_edl, 0);
448         }
449
450         for(int i = 0; i < clips.size(); i++)
451                 clips.get(i)->Garbage::remove_user();
452         clips.remove_all();
453         for(int i = 0; i < edl->clips.total; i++)
454         {
455                 add_clip(edl->clips.values[i]);
456         }
457 }
458
459 void EDL::copy_assets(EDL *edl)
460 {
461         if(this == edl) return;
462
463         if(!parent_edl)
464         {
465                 assets->copy_from(edl->assets);
466         }
467 }
468
469 void EDL::copy_mixers(EDL *edl)
470 {
471         if(this == edl) return;
472         mixers.copy_from(edl->mixers);
473 }
474
475 void EDL::copy_session(EDL *edl, int session_only)
476 {
477         if(this == edl) return;
478
479         if(!session_only)
480         {
481                 strcpy(this->path, edl->path);
482 //printf("EDL::copy_session %p %s\n", this, this->path);
483
484                 folders.remove_all_objects();
485                 for(int i = 0; i < edl->folders.total; i++)
486                 {
487                         char *new_folder;
488                         folders.append(new_folder = new char[strlen(edl->folders.values[i]) + 1]);
489                         strcpy(new_folder, edl->folders.values[i]);
490                 }
491         }
492
493         if(!parent_edl)
494         {
495                 session->copy(edl->session);
496         }
497
498         if(!session_only)
499         {
500                 local_session->copy_from(edl->local_session);
501         }
502 }
503
504 int EDL::copy_assets(double start,
505         double end,
506         FileXML *file,
507         int all,
508         const char *output_path)
509 {
510         ArrayList<Asset*> asset_list;
511         Track* current;
512
513         file->tag.set_title("ASSETS");
514         file->append_tag();
515         file->append_newline();
516
517 // Copy everything for a save
518         if(all)
519         {
520                 for(Asset *asset = assets->first;
521                         asset;
522                         asset = asset->next)
523                 {
524                         asset_list.append(asset);
525                 }
526         }
527         else
528 // Copy just the ones being used.
529         {
530                 for(current = tracks->first;
531                         current;
532                         current = NEXT)
533                 {
534                         if(current->record)
535                         {
536                                 current->copy_assets(start,
537                                         end,
538                                         &asset_list);
539                         }
540                 }
541         }
542
543 // Paths relativised here
544         for(int i = 0; i < asset_list.total; i++)
545         {
546                 asset_list.values[i]->write(file,
547                         0,
548                         output_path);
549         }
550
551         file->tag.set_title("/ASSETS");
552         file->append_tag();
553         file->append_newline();
554         file->append_newline();
555         return 0;
556 }
557
558 int EDL::copy(double start,
559         double end,
560         int all,
561         int is_clip,
562         int is_vwindow,
563         FileXML *file,
564         const char *output_path,
565         int rewind_it)
566 {
567 //printf("EDL::copy 1\n");
568 // begin file
569         if(is_clip)
570                 file->tag.set_title("CLIP_EDL");
571         else
572         if(is_vwindow)
573                 file->tag.set_title("VWINDOW_EDL");
574         else
575         {
576                 file->tag.set_title("EDL");
577                 file->tag.set_property("VERSION", CINELERRA_VERSION);
578 // Save path for restoration of the project title from a backup.
579                 if(this->path[0])
580                 {
581                         file->tag.set_property("PATH", path);
582                 }
583         }
584
585         file->append_tag();
586         file->append_newline();
587
588 // Set clipboard samples only if copying to clipboard
589         if(!all)
590         {
591                 file->tag.set_title("CLIPBOARD");
592                 file->tag.set_property("LENGTH", end - start);
593                 file->append_tag();
594                 file->tag.set_title("/CLIPBOARD");
595                 file->append_tag();
596                 file->append_newline();
597                 file->append_newline();
598         }
599 //printf("EDL::copy 1\n");
600
601 // Sessions
602         local_session->save_xml(file, start);
603
604 //printf("EDL::copy 1\n");
605
606 // Top level stuff.
607 //      if(!parent_edl)
608         {
609 // Need to copy all this from child EDL if pasting is desired.
610 // Session
611                 session->save_xml(file);
612                 session->save_video_config(file);
613                 session->save_audio_config(file);
614
615 // Folders
616                 for(int i = 0; i < folders.total; i++)
617                 {
618                         file->tag.set_title("FOLDER");
619                         file->append_tag();
620                         file->append_text(folders.values[i]);
621                         file->tag.set_title("/FOLDER");
622                         file->append_tag();
623                         file->append_newline();
624                 }
625
626 // Media
627 // Don't replicate all assets for every clip.
628 // The assets for the clips are probably in the main EDL.
629                 if( !is_clip )
630                         copy_assets(start, end, file, all, output_path);
631 // Clips
632 // Don't want this if using clipboard
633                 if(all)
634                 {
635                         for(int i = 0; i < total_vwindow_edls(); i++)
636                         {
637                                 get_vwindow_edl(i)->save_xml(file,
638                                         output_path,
639                                         0,
640                                         1);
641                         }
642
643                         for(int i = 0; i < clips.total; i++)
644                                 clips.values[i]->save_xml(file,
645                                         output_path,
646                                         1,
647                                         0);
648                         mixers.save(file);
649                 }
650
651                 file->append_newline();
652                 file->append_newline();
653         }
654
655
656 //printf("EDL::copy 1\n");
657
658         labels->copy(start, end, file);
659 //printf("EDL::copy 1\n");
660         tracks->copy(start, end, all, file, output_path);
661 //printf("EDL::copy 2\n");
662
663 // terminate file
664         if( is_clip )
665                 file->tag.set_title("/CLIP_EDL");
666         else if( is_vwindow )
667                 file->tag.set_title("/VWINDOW_EDL");
668         else
669                 file->tag.set_title("/EDL");
670         file->append_tag();
671         file->append_newline();
672
673
674 // For editing operations we want to rewind it for immediate pasting.
675 // For clips and saving to disk leave it alone.
676         if(rewind_it)
677         {
678                 file->terminate_string();
679                 file->rewind();
680         }
681         return 0;
682 }
683
684 void EDL::retrack()
685 {
686         int min_w = session->output_w, min_h = session->output_h;
687         for( Track *track=tracks->first; track!=0; track=track->next ) {
688                 if( track->data_type != TRACK_VIDEO ) continue;
689                 int w = min_w, h = min_h;
690                 for( Edit *current=track->edits->first; current!=0; current=NEXT ) {
691                         Indexable* indexable = current->get_source();
692                         if( !indexable ) continue;
693                         int edit_w = indexable->get_w(), edit_h = indexable->get_h();
694                         if( w < edit_w ) w = edit_w;
695                         if( h < edit_h ) h = edit_h;
696                 }
697                 if( track->track_w == w && track->track_h == h ) continue;
698                 ((MaskAutos*)track->automation->autos[AUTOMATION_MASK])->
699                         translate_masks( (w - track->track_w) / 2, (h - track->track_h) / 2);
700                 track->track_w = w;  track->track_h = h;
701         }
702 }
703
704 void EDL::rechannel()
705 {
706         for(Track *current = tracks->first; current; current = NEXT)
707         {
708                 if(current->data_type == TRACK_AUDIO)
709                 {
710                         PanAutos *autos = (PanAutos*)current->automation->autos[AUTOMATION_PAN];
711                         ((PanAuto*)autos->default_auto)->rechannel();
712                         for(PanAuto *keyframe = (PanAuto*)autos->first;
713                                 keyframe;
714                                 keyframe = (PanAuto*)keyframe->next)
715                         {
716                                 keyframe->rechannel();
717                         }
718                 }
719         }
720 }
721
722 void EDL::resample(double old_rate, double new_rate, int data_type)
723 {
724         for(Track *current = tracks->first; current; current = NEXT)
725         {
726                 if(current->data_type == data_type)
727                 {
728                         current->resample(old_rate, new_rate);
729                 }
730         }
731 }
732
733
734 void EDL::synchronize_params(EDL *edl)
735 {
736         local_session->synchronize_params(edl->local_session);
737         for(Track *this_track = tracks->first, *that_track = edl->tracks->first;
738                 this_track && that_track;
739                 this_track = this_track->next,
740                 that_track = that_track->next)
741         {
742                 this_track->synchronize_params(that_track);
743         }
744 }
745
746 int EDL::trim_selection(double start,
747         double end,
748         int edit_labels,
749         int edit_plugins,
750         int edit_autos)
751 {
752         if(start != end)
753         {
754 // clear the data
755                 clear(0,
756                         start,
757                         edit_labels,
758                         edit_plugins,
759                         edit_autos);
760                 clear(end - start,
761                         tracks->total_length(),
762                         edit_labels,
763                         edit_plugins,
764                         edit_autos);
765         }
766         return 0;
767 }
768
769
770 int EDL::equivalent(double position1, double position2)
771 {
772         double threshold = (double).5 / session->frame_rate;
773         if(session->cursor_on_frames)
774                 threshold = (double).5 / session->frame_rate;
775         else
776                 threshold = (double)1 / session->sample_rate;
777
778         if(fabs(position2 - position1) < threshold)
779         return 1;
780     else
781         return 0;
782 }
783
784 double EDL::equivalent_output(EDL *edl)
785 {
786         double result = -1;
787         session->equivalent_output(edl->session, &result);
788         tracks->equivalent_output(edl->tracks, &result);
789         return result;
790 }
791
792
793 void EDL::set_path(const char *path)
794 {
795         strcpy(this->path, path);
796 }
797
798 void EDL::set_inpoint(double position)
799 {
800         if(equivalent(local_session->get_inpoint(), position) &&
801                 local_session->get_inpoint() >= 0)
802         {
803                 local_session->unset_inpoint();
804         }
805         else
806         {
807                 local_session->set_inpoint(align_to_frame(position, 0));
808                 if(local_session->get_outpoint() <= local_session->get_inpoint())
809                         local_session->unset_outpoint();
810         }
811 }
812
813 void EDL::set_outpoint(double position)
814 {
815         if(equivalent(local_session->get_outpoint(), position) &&
816                 local_session->get_outpoint() >= 0)
817         {
818                 local_session->unset_outpoint();
819         }
820         else
821         {
822                 local_session->set_outpoint(align_to_frame(position, 0));
823                 if(local_session->get_inpoint() >= local_session->get_outpoint())
824                         local_session->unset_inpoint();
825         }
826 }
827
828 int EDL::blade(double position)
829 {
830         return tracks->blade(position);
831 }
832
833 int EDL::clear(double start, double end,
834         int clear_labels, int clear_plugins, int edit_autos)
835 {
836         if(start == end)
837         {
838                 double distance = 0;
839                 tracks->clear_handle(start,
840                         end,
841                         distance,
842                         clear_labels,
843                         clear_plugins,
844                         edit_autos);
845                 if(clear_labels && distance > 0)
846                         labels->paste_silence(start,
847                                 start + distance);
848         }
849         else
850         {
851                 tracks->clear(start,
852                         end,
853                         clear_plugins,
854                         edit_autos);
855                 if(clear_labels)
856                         labels->clear(start,
857                                 end,
858                                 1);
859         }
860
861 // Need to put at beginning so a subsequent paste operation starts at the
862 // right position.
863         double position = local_session->get_selectionstart();
864         local_session->set_selectionend(position);
865         local_session->set_selectionstart(position);
866         return 0;
867 }
868
869 void EDL::modify_edithandles(double oldposition,
870         double newposition,
871         int currentend,
872         int handle_mode,
873         int edit_labels,
874         int edit_plugins,
875         int edit_autos)
876 {
877         tracks->modify_edithandles(oldposition,
878                 newposition,
879                 currentend,
880                 handle_mode,
881                 edit_labels,
882                 edit_plugins,
883                 edit_autos);
884         labels->modify_handles(oldposition,
885                 newposition,
886                 currentend,
887                 handle_mode,
888                 edit_labels);
889 }
890
891 void EDL::modify_pluginhandles(double oldposition,
892         double newposition,
893         int currentend,
894         int handle_mode,
895         int edit_labels,
896         int edit_autos,
897         Edits *trim_edits)
898 {
899         tracks->modify_pluginhandles(oldposition,
900                 newposition,
901                 currentend,
902                 handle_mode,
903                 edit_labels,
904                 edit_autos,
905                 trim_edits);
906         optimize();
907 }
908
909 void EDL::paste_silence(double start,
910         double end,
911         int edit_labels,
912         int edit_plugins,
913         int edit_autos)
914 {
915         if(edit_labels)
916                 labels->paste_silence(start, end);
917         tracks->paste_silence(start,
918                 end,
919                 edit_plugins,
920                 edit_autos);
921 }
922
923
924 void EDL::remove_from_project(ArrayList<EDL*> *clips)
925 {
926         for(int i = 0; i < clips->size(); i++)
927         {
928                 for(int j = 0; j < this->clips.size(); j++)
929                 {
930                         if(this->clips.get(j) == clips->values[i])
931                         {
932                                 EDL *clip = this->clips.get(j);
933                                 this->clips.remove(clip);
934                                 clip->Garbage::remove_user();
935                         }
936                 }
937         }
938 }
939
940 void EDL::remove_from_project(ArrayList<Indexable*> *assets)
941 {
942 // Remove from clips
943         if(!parent_edl)
944                 for(int j = 0; j < clips.total; j++)
945                 {
946                         clips.values[j]->remove_from_project(assets);
947                 }
948
949 // Remove from VWindow EDLs
950         for(int i = 0; i < total_vwindow_edls(); i++)
951                 get_vwindow_edl(i)->remove_from_project(assets);
952
953         for(int i = 0; i < assets->size(); i++)
954         {
955 // Remove from tracks
956                 for(Track *track = tracks->first; track; track = track->next)
957                 {
958                         track->remove_asset(assets->get(i));
959                 }
960
961 // Remove from assets
962                 if(!parent_edl && assets->get(i)->is_asset)
963                 {
964                         this->assets->remove_asset((Asset*)assets->get(i));
965                 }
966                 else
967                 if(!parent_edl && !assets->get(i)->is_asset)
968                 {
969                         this->nested_edls->remove_edl((EDL*)assets->get(i));
970                 }
971         }
972 }
973
974 void EDL::update_assets(EDL *src)
975 {
976         for(Asset *current = src->assets->first;
977                 current;
978                 current = NEXT)
979         {
980                 assets->update(current);
981         }
982 }
983
984 int EDL::get_tracks_height(Theme *theme)
985 {
986         int total_pixels = 0;
987         for(Track *current = tracks->first;
988                 current;
989                 current = NEXT)
990         {
991                 total_pixels += current->vertical_span(theme);
992         }
993         return total_pixels;
994 }
995
996 int64_t EDL::get_tracks_width()
997 {
998         int64_t total_pixels = 0;
999         for(Track *current = tracks->first;
1000                 current;
1001                 current = NEXT)
1002         {
1003                 int64_t pixels = current->horizontal_span();
1004                 if(pixels > total_pixels) total_pixels = pixels;
1005         }
1006 //printf("EDL::get_tracks_width %d\n", total_pixels);
1007         return total_pixels;
1008 }
1009
1010 // int EDL::calculate_output_w(int single_channel)
1011 // {
1012 //      if(single_channel) return session->output_w;
1013 //
1014 //      int widest = 0;
1015 //      for(int i = 0; i < session->video_channels; i++)
1016 //      {
1017 //              if(session->vchannel_x[i] + session->output_w > widest) widest = session->vchannel_x[i] + session->output_w;
1018 //      }
1019 //      return widest;
1020 // }
1021 //
1022 // int EDL::calculate_output_h(int single_channel)
1023 // {
1024 //      if(single_channel) return session->output_h;
1025 //
1026 //      int tallest = 0;
1027 //      for(int i = 0; i < session->video_channels; i++)
1028 //      {
1029 //              if(session->vchannel_y[i] + session->output_h > tallest) tallest = session->vchannel_y[i] + session->output_h;
1030 //      }
1031 //      return tallest;
1032 // }
1033
1034 // Get the total output size scaled to aspect ratio
1035 void EDL::calculate_conformed_dimensions(int single_channel, float &w, float &h)
1036 {
1037         if((float)session->output_w / session->output_h > get_aspect_ratio())
1038                 h = (w = session->output_w) / get_aspect_ratio();
1039         else
1040                 w = (h = session->output_h) * get_aspect_ratio();
1041 }
1042
1043 float EDL::get_aspect_ratio()
1044 {
1045         return session->aspect_w / session->aspect_h;
1046 }
1047
1048 int EDL::dump(FILE *fp)
1049 {
1050         if(parent_edl)
1051                 fprintf(fp,"CLIP\n");
1052         else
1053                 fprintf(fp,"EDL\n");
1054         fprintf(fp,"  clip_title: %s\n"
1055                 "  parent_edl: %p\n", local_session->clip_title, parent_edl);
1056         fprintf(fp,"  selectionstart %f\n  selectionend %f\n  loop_start %f\n  loop_end %f\n",
1057                 local_session->get_selectionstart(1),
1058                 local_session->get_selectionend(1),
1059                 local_session->loop_start,
1060                 local_session->loop_end);
1061         for(int i = 0; i < TOTAL_PANES; i++)
1062         {
1063                 fprintf(fp,"  pane %d view_start=%jd track_start=%d\n", i,
1064                         local_session->view_start[i],
1065                         local_session->track_start[i]);
1066         }
1067
1068         if(!parent_edl)
1069         {
1070                 fprintf(fp,"audio_channels: %d audio_tracks: %d sample_rate: %jd\n",
1071                         session->audio_channels,
1072                         session->audio_tracks,
1073                         session->sample_rate);
1074                 fprintf(fp,"  video_channels: %d\n"
1075                         "  video_tracks: %d\n"
1076                         "  frame_rate: %.2f\n"
1077                         "  frames_per_foot: %.2f\n"
1078                         "  output_w: %d\n"
1079                         "  output_h: %d\n"
1080                         "  aspect_w: %f\n"
1081                         "  aspect_h: %f\n"
1082                         "  color_model: %d\n",
1083                                 session->video_channels,
1084                                 session->video_tracks,
1085                                 session->frame_rate,
1086                                 session->frames_per_foot,
1087                                 session->output_w,
1088                                 session->output_h,
1089                                 session->aspect_w,
1090                                 session->aspect_h,
1091                                 session->color_model);
1092
1093                 fprintf(fp," CLIPS\n");
1094                 fprintf(fp,"  total: %d\n", clips.total);
1095
1096                 for(int i = 0; i < clips.total; i++)
1097                 {
1098                         fprintf(fp,"\n\n");
1099                         clips.values[i]->dump(fp);
1100                         fprintf(fp,"\n\n");
1101                 }
1102
1103                 fprintf(fp," VWINDOW EDLS\n");
1104                 fprintf(fp,"  total: %d\n", total_vwindow_edls());
1105
1106                 for(int i = 0; i < total_vwindow_edls(); i++)
1107                 {
1108                         fprintf(fp,"   %s\n", get_vwindow_edl(i)->local_session->clip_title);
1109                 }
1110
1111                 fprintf(fp," ASSETS\n");
1112                 assets->dump(fp);
1113         }
1114         fprintf(fp," LABELS\n");
1115         labels->dump(fp);
1116         fprintf(fp," TRACKS\n");
1117         tracks->dump(fp);
1118 //printf("EDL::dump 2\n");
1119         return 0;
1120 }
1121
1122 EDL* EDL::add_clip(EDL *edl)
1123 {
1124 // Copy argument.  New edls are deleted from MWindow::load_filenames.
1125         EDL *new_edl = new EDL(this);
1126         new_edl->create_objects();
1127         new_edl->copy_all(edl);
1128         clips.append(new_edl);
1129         return new_edl;
1130 }
1131
1132 void EDL::insert_asset(Asset *asset,
1133         EDL *nested_edl,
1134         double position,
1135         Track *first_track,
1136         RecordLabels *labels)
1137 {
1138 // Insert asset into asset table
1139         Asset *new_asset = 0;
1140         EDL *new_nested_edl = 0;
1141
1142         if(asset) new_asset = assets->update(asset);
1143         if(nested_edl) new_nested_edl = nested_edls->get_copy(nested_edl);
1144
1145 // Paste video
1146         int vtrack = 0;
1147         Track *current = first_track ? first_track : tracks->first;
1148
1149
1150 // Fix length of single frame
1151         double length = 0.;
1152         int layers = 0;
1153         int channels = 0;
1154
1155         if(new_nested_edl)
1156         {
1157                 length = new_nested_edl->tracks->total_length();
1158                 layers = 1;
1159                 channels = new_nested_edl->session->audio_channels;
1160         }
1161
1162         if(new_asset)
1163         {
1164 // Insert 1 frame for undefined length
1165                 if(new_asset->video_length < 0)
1166                 {
1167                         length = session->si_useduration ?
1168                                 session->si_duration :
1169                                 1.0 / session->frame_rate;
1170                 }
1171                 else {
1172                         length = new_asset->frame_rate > 0 ?
1173                                 (double)new_asset->video_length / new_asset->frame_rate :
1174                                 1.0 / session->frame_rate;
1175                 }
1176                 layers = new_asset->layers;
1177                 channels = new_asset->channels;
1178         }
1179
1180         for( ;
1181                 current && vtrack < layers;
1182                 current = NEXT)
1183         {
1184                 if(!current->record ||
1185                         current->data_type != TRACK_VIDEO)
1186                         continue;
1187
1188                 current->insert_asset(new_asset,
1189                         new_nested_edl,
1190                         length,
1191                         position,
1192                         vtrack);
1193
1194                 vtrack++;
1195         }
1196
1197         int atrack = 0;
1198         if(new_asset)
1199         {
1200                 if(new_asset->audio_length < 0)
1201                 {
1202 // Insert 1 frame for undefined length & video
1203                         if(new_asset->video_data)
1204                                 length = (double)1.0 / new_asset->frame_rate;
1205                         else
1206 // Insert 1 second for undefined length & no video
1207                                 length = 1.0;
1208                 }
1209                 else
1210                         length = (double)new_asset->audio_length /
1211                                         new_asset->sample_rate;
1212         }
1213
1214         for(current = tracks->first;
1215                 current && atrack < channels;
1216                 current = NEXT)
1217         {
1218                 if(!current->record ||
1219                         current->data_type != TRACK_AUDIO)
1220                         continue;
1221
1222                 current->insert_asset(new_asset,
1223                         new_nested_edl,
1224                         length,
1225                         position,
1226                         atrack);
1227
1228
1229                 atrack++;
1230         }
1231
1232 // Insert labels from a recording window.
1233         if(labels)
1234         {
1235                 for(RecordLabel *label = labels->first; label; label = label->next)
1236                 {
1237                         this->labels->toggle_label(label->position, label->position);
1238                 }
1239         }
1240 }
1241
1242
1243
1244 void EDL::set_index_file(Indexable *indexable)
1245 {
1246         if(indexable->is_asset)
1247                 assets->update_index((Asset*)indexable);
1248         else
1249                 nested_edls->update_index((EDL*)indexable);
1250 }
1251
1252 void EDL::optimize()
1253 {
1254 //printf("EDL::optimize 1\n");
1255         if(local_session->preview_start < 0) local_session->preview_start = 0;
1256         double length = tracks->total_length();
1257         if(local_session->preview_end > length) local_session->preview_end = length;
1258         if(local_session->preview_start >= local_session->preview_end ) {
1259                 local_session->preview_start = 0;
1260                 local_session->preview_end = length;
1261         }
1262         for(Track *current = tracks->first; current; current = NEXT)
1263                 current->optimize();
1264 }
1265
1266 int EDL::next_id()
1267 {
1268         id_lock->lock("EDL::next_id");
1269         int result = EDLSession::current_id++;
1270         id_lock->unlock();
1271         return result;
1272 }
1273
1274 void EDL::get_shared_plugins(Track *source,
1275         ArrayList<SharedLocation*> *plugin_locations,
1276         int omit_recordable,
1277         int data_type)
1278 {
1279         for(Track *track = tracks->first; track; track = track->next)
1280         {
1281                 if(!track->record || !omit_recordable)
1282                 {
1283                         if(track != source &&
1284                                 track->data_type == data_type)
1285                         {
1286                                 for(int i = 0; i < track->plugin_set.total; i++)
1287                                 {
1288                                         Plugin *plugin = track->get_current_plugin(
1289                                                 local_session->get_selectionstart(1),
1290                                                 i,
1291                                                 PLAY_FORWARD,
1292                                                 1,
1293                                                 0);
1294                                         if(plugin && plugin->plugin_type == PLUGIN_STANDALONE)
1295                                         {
1296                                                 plugin_locations->append(new SharedLocation(tracks->number_of(track), i));
1297                                         }
1298                                 }
1299                         }
1300                 }
1301         }
1302 }
1303
1304 void EDL::get_shared_tracks(Track *track,
1305         ArrayList<SharedLocation*> *module_locations,
1306         int omit_recordable,
1307         int data_type)
1308 {
1309         for(Track *current = tracks->first; current; current = NEXT)
1310         {
1311                 if(!omit_recordable || !current->record)
1312                 {
1313                         if(current != track &&
1314                                 current->data_type == data_type)
1315                         {
1316                                 module_locations->append(new SharedLocation(tracks->number_of(current), 0));
1317                         }
1318                 }
1319         }
1320 }
1321
1322 // aligned frame time
1323 double EDL::frame_align(double position, int round)
1324 {
1325         double frame_pos = position * session->frame_rate;
1326         frame_pos = (int64_t)(frame_pos + (round ? 0.5 : 1e-6));
1327         position = frame_pos / session->frame_rate;
1328         return position;
1329 }
1330
1331 // Convert position to frames if alignment is enabled.
1332 double EDL::align_to_frame(double position, int round)
1333 {
1334         if( session->cursor_on_frames )
1335                 position = frame_align(position, round);
1336         return position;
1337 }
1338
1339
1340 void EDL::new_folder(const char *folder)
1341 {
1342         for(int i = 0; i < folders.total; i++)
1343         {
1344                 if(!strcasecmp(folders.values[i], folder)) return;
1345         }
1346
1347         char *new_folder;
1348         folders.append(new_folder = new char[strlen(folder) + 1]);
1349         strcpy(new_folder, folder);
1350 }
1351
1352 void EDL::delete_folder(const char *folder)
1353 {
1354         int i;
1355         for(i = 0; i < folders.total; i++)
1356         {
1357                 if(!strcasecmp(folders.values[i], folder))
1358                 {
1359                         break;
1360                 }
1361         }
1362
1363         if(i < folders.total) delete folders.values[i];
1364
1365         for( ; i < folders.total - 1; i++)
1366         {
1367                 folders.values[i] = folders.values[i + 1];
1368         }
1369 }
1370
1371 int EDL::get_use_vconsole(VEdit* *playable_edit,
1372         int64_t position,
1373         int direction,
1374         PlayableTracks *playable_tracks)
1375 {
1376         int share_playable_tracks = 1;
1377         int result = 0;
1378         VTrack *playable_track = 0;
1379         const int debug = 0;
1380         *playable_edit = 0;
1381
1382 // Calculate playable tracks when being called as a nested EDL
1383         if(!playable_tracks)
1384         {
1385                 share_playable_tracks = 0;
1386                 playable_tracks = new PlayableTracks(this,
1387                         position,
1388                         direction,
1389                         TRACK_VIDEO,
1390                         1);
1391         }
1392
1393
1394 // Total number of playable tracks is 1
1395         if(playable_tracks->size() != 1)
1396         {
1397                 result = 1;
1398         }
1399         else
1400         {
1401                 playable_track = (VTrack*)playable_tracks->get(0);
1402         }
1403
1404 // Don't need playable tracks anymore
1405         if(!share_playable_tracks)
1406         {
1407                 delete playable_tracks;
1408         }
1409
1410 if(debug) printf("EDL::get_use_vconsole %d playable_tracks->size()=%d\n",
1411 __LINE__,
1412 playable_tracks->size());
1413         if(result) return 1;
1414
1415
1416 // Test mutual conditions between direct copy rendering and this.
1417         if(!playable_track->direct_copy_possible(position,
1418                 direction,
1419                 1))
1420                 return 1;
1421 if(debug) printf("EDL::get_use_vconsole %d\n", __LINE__);
1422
1423         *playable_edit = (VEdit*)playable_track->edits->editof(position,
1424                 direction,
1425                 0);
1426 // No edit at current location
1427         if(!*playable_edit) return 1;
1428 if(debug) printf("EDL::get_use_vconsole %d\n", __LINE__);
1429
1430
1431 // Edit is nested EDL
1432         if((*playable_edit)->nested_edl)
1433         {
1434 // Test nested EDL
1435                 EDL *nested_edl = (*playable_edit)->nested_edl;
1436                 int64_t nested_position = (int64_t)((position -
1437                                 (*playable_edit)->startproject +
1438                                 (*playable_edit)->startsource) *
1439                         nested_edl->session->frame_rate /
1440                         session->frame_rate);
1441
1442
1443                 VEdit *playable_edit_temp = 0;
1444                 if(session->output_w != nested_edl->session->output_w ||
1445                         session->output_h != nested_edl->session->output_h ||
1446                         nested_edl->get_use_vconsole(&playable_edit_temp,
1447                                 nested_position,
1448                                 direction,
1449                                 0))
1450                         return 1;
1451
1452                 return 0;
1453         }
1454
1455 if(debug) printf("EDL::get_use_vconsole %d\n", __LINE__);
1456 // Edit is not a nested EDL
1457         Asset *asset = (*playable_edit)->asset;
1458 // Edit is silence
1459         if(!asset) return 1;
1460 if(debug) printf("EDL::get_use_vconsole %d\n", __LINE__);
1461
1462 // Asset and output device must have the same dimensions
1463         if( asset->width != session->output_w ||
1464             asset->height != session->output_h )
1465                 return 1;
1466
1467
1468 if(debug) printf("EDL::get_use_vconsole %d\n", __LINE__);
1469 // Asset and output device must have same resulting de-interlacing method
1470         if( ilaceautofixmethod2(session->interlace_mode,
1471             asset->interlace_autofixoption, asset->interlace_mode,
1472             asset->interlace_fixmethod) != ILACE_FIXMETHOD_NONE )
1473                 return 1;
1474
1475 // If we get here the frame is going to be directly copied.  Whether it is
1476 // decompressed in hardware depends on the colormodel.
1477         return 0;
1478 }
1479
1480
1481 // For Indexable
1482 int EDL::get_audio_channels()
1483 {
1484         return session->audio_channels;
1485 }
1486
1487 int EDL::get_sample_rate()
1488 {
1489         return session->sample_rate;
1490 }
1491
1492 int64_t EDL::get_audio_samples()
1493 {
1494         return (int64_t)(tracks->total_length() *
1495                 session->sample_rate);
1496 }
1497
1498 int EDL::have_audio()
1499 {
1500         return 1;
1501 }
1502
1503 int EDL::have_video()
1504 {
1505         return 1;
1506 }
1507
1508
1509 int EDL::get_w()
1510 {
1511         return session->output_w;
1512 }
1513
1514 int EDL::get_h()
1515 {
1516         return session->output_h;
1517 }
1518
1519 double EDL::get_frame_rate()
1520 {
1521         return session->frame_rate;
1522 }
1523
1524 int EDL::get_video_layers()
1525 {
1526         return 1;
1527 }
1528
1529 int64_t EDL::get_video_frames()
1530 {
1531         return (int64_t)(tracks->total_length() *
1532                 session->frame_rate);
1533 }
1534
1535
1536 void EDL::remove_vwindow_edls()
1537 {
1538         for(int i = 0; i < total_vwindow_edls(); i++)
1539         {
1540                 get_vwindow_edl(i)->Garbage::remove_user();
1541         }
1542         vwindow_edls.remove_all();
1543 }
1544
1545 void EDL::remove_vwindow_edl(EDL *edl)
1546 {
1547         if(vwindow_edls.number_of(edl) >= 0)
1548         {
1549                 edl->Garbage::remove_user();
1550
1551                 vwindow_edls.remove(edl);
1552         }
1553 }
1554
1555
1556 EDL* EDL::get_vwindow_edl(int number)
1557 {
1558         return vwindow_edls.get(number);
1559 }
1560
1561 int EDL::total_vwindow_edls()
1562 {
1563         return vwindow_edls.size();
1564 }
1565
1566 void EDL::append_vwindow_edl(EDL *edl, int increase_counter)
1567 {
1568         if(vwindow_edls.number_of(edl) >= 0) return;
1569
1570         if(increase_counter) edl->Garbage::add_user();
1571         vwindow_edls.append(edl);
1572 }
1573
1574
1575 double EDL::next_edit(double position)
1576 {
1577         Units::fix_double(&position);
1578         double new_position = tracks->total_length();
1579
1580         double max_rate = get_frame_rate();
1581         int sample_rate = get_sample_rate();
1582         if( sample_rate > max_rate ) max_rate = sample_rate;
1583         double min_movement = max_rate > 0 ? 1. / max_rate : 1e-6;
1584
1585 // Test for edit handles after position
1586         for( Track *track=tracks->first; track; track=track->next ) {
1587                 if( !track->record ) continue;
1588                 for( Edit *edit=track->edits->first; edit; edit=edit->next ) {
1589                         double edit_end = track->from_units(edit->startproject + edit->length);
1590                         Units::fix_double(&edit_end);
1591                         if( fabs(edit_end-position) < min_movement ) continue;
1592                         if( edit_end > position && edit_end < new_position )
1593                                 new_position = edit_end;
1594                 }
1595         }
1596         return new_position;
1597 }
1598
1599 double EDL::prev_edit(double position)
1600 {
1601         Units::fix_double(&position);
1602         double new_position = -1;
1603
1604         double max_rate = get_frame_rate();
1605         int sample_rate = get_sample_rate();
1606         if( sample_rate > max_rate ) max_rate = sample_rate;
1607         double min_movement = max_rate > 0 ? 1. / max_rate : 1e-6;
1608
1609 // Test for edit handles before cursor position
1610         for( Track *track=tracks->first; track; track=track->next ) {
1611                 if( !track->record ) continue;
1612                 for( Edit *edit=track->edits->first; edit; edit=edit->next ) {
1613                         double edit_end = track->from_units(edit->startproject);
1614                         Units::fix_double(&edit_end);
1615                         if( fabs(edit_end-position) < min_movement ) continue;
1616                         if( edit_end < position && edit_end > new_position )
1617                                 new_position = edit_end;
1618                 }
1619         }
1620         return new_position;
1621 }
1622