X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fedl.h;h=44802e3118a99d222be218a6aa714c8fb406e2a2;hb=976d56536456148f6d14a2c12630c20e367abbe1;hp=e59556640eda8d440927af15e4af87d66f95df88;hpb=243336668c89096732786c6b3f3c5918aa2eff26;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/edl.h b/cinelerra-5.1/cinelerra/edl.h index e5955664..44802e31 100644 --- a/cinelerra-5.1/cinelerra/edl.h +++ b/cinelerra-5.1/cinelerra/edl.h @@ -40,7 +40,7 @@ #include "localsession.inc" #include "maxchannels.h" #include "mutex.inc" -#include "nestededls.inc" +#include "clipedls.h" #include "playabletracks.inc" #include "playbackconfig.h" #include "pluginserver.h" @@ -80,14 +80,11 @@ public: void boundaries(); // Create tracks using existing configuration int create_default_tracks(); - int load_xml(FileXML *file, - uint32_t load_flags); - int save_xml(FileXML *xml, - const char *output_path, - int is_clip, - int is_vwindow); - int load_audio_config(FileXML *file, int append_mode, uint32_t load_flags); - int load_video_config(FileXML *file, int append_mode, uint32_t load_flags); + int load_xml(FileXML *file, uint32_t load_flags); + int read_xml(FileXML *file, uint32_t load_flags); + int save_xml(FileXML *xml, const char *output_path); + int load_audio_config(FileXML *file, int append_mode, uint32_t load_flags); + int load_video_config(FileXML *file, int append_mode, uint32_t load_flags); // Return 1 if rendering requires a virtual console. int get_use_vconsole(VEdit* *playable_edit, @@ -105,6 +102,23 @@ public: // Scale all sample values since everything is locked to audio void rechannel(); void resample(double old_rate, double new_rate, int data_type); + + int copy(double start, double end, int all, + FileXML *file, const char *output_path, int rewind_it); + int copy(int all, FileXML *file, const char *output_path, int rewind_it); + + int copy_clip(double start, double end, int all, + FileXML *file, const char *output_path, int rewind_it); + int copy_clip(int all, FileXML *file, const char *output_path, int rewind_it); + + int copy_nested_edl(double start, double end, int all, + FileXML *file, const char *output_path, int rewind_it); + int copy_nested_edl(int all, FileXML *file, const char *output_path, int rewind_it); + + int copy_vwindow_edl(double start, double end, int all, + FileXML *file, const char *output_path, int rewind_it); + int copy_vwindow_edl(int all, FileXML *file, const char *output_path, int rewind_it); + void copy_tracks(EDL *edl); // Copies project path, folders, EDLSession, and LocalSession from edl argument. // session_only - used by preferences and format specify @@ -113,6 +127,7 @@ public: int copy_all(EDL *edl); void copy_assets(EDL *edl); void copy_clips(EDL *edl); + void copy_nested(EDL *edl); void copy_mixers(EDL *edl); // Copy pan and fade settings from edl void synchronize_params(EDL *edl); @@ -169,29 +184,23 @@ public: int edit_autos); // Editing functions - int copy_assets(double start, - double end, - FileXML *file, - int all, - const char *output_path); - int copy(double start, - double end, - int all, // Ignore recordable status of tracks for saving - int is_clip, - int is_vwindow, - FileXML *file, - const char *output_path, - int rewind_it); // Rewind EDL for easy pasting - void paste_silence(double start, - double end, + int copy_assets(double start, double end, + FileXML *file, int all, const char *output_path); + int copy(double start, double end, int all, + const char *closer, FileXML *file, + const char *output_path, int rewind_it); + void copy_indexables(EDL *edl); + EDL *new_nested(EDL *edl, const char *path); + EDL *create_nested_clip(EDL *nested); + void create_nested(EDL *nested); + void paste_silence(double start, double end, int edit_labels /* = 1 */, int edit_plugins, int edit_autos); void remove_from_project(ArrayList *assets); void remove_from_project(ArrayList *clips); int blade(double position); - int clear(double start, - double end, + int clear(double start, double end, int clear_labels, int clear_plugins, int edit_autos); @@ -240,13 +249,16 @@ public: // Adds to list of EDLs & increase garbage collection counter // Does nothing if EDL already exists void append_vwindow_edl(EDL *edl, int increase_counter); + void rescale_proxy(int orig_scale, int new_scale); + void set_proxy(int use_scaler, int new_scale, int auto_scale, int beep, + ArrayList *orig_assets, ArrayList *proxy_assets); + void add_proxy(int use_scaler, + ArrayList *orig_assets, ArrayList *proxy_assets); // Titles of all subfolders ArrayList folders; -// Clips - ArrayList clips; -// Nested EDLs - NestedEDLs *nested_edls; +// Clips, Nested EDLs + ClipEDLs clips, nested_edls; // EDLs being shown in VWindows ArrayList vwindow_edls; // is the vwindow_edl shared and therefore should not be deleted in destructor @@ -257,8 +269,6 @@ public: // Shared between all EDLs Assets *assets; - - Tracks *tracks; Labels *labels; // Shared between all EDLs in a tree, for projects. @@ -266,17 +276,8 @@ public: // Specific to this EDL, for clips. LocalSession *local_session; - - - - - // Use parent Assets if nonzero EDL *parent_edl; - - - static Mutex *id_lock; - }; #endif