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