X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fedl.h;h=606dcead99d9f05015d1426a44beb014bf9c367a;hb=b30123c9534e8df8da1694d40396d86396bf1c08;hp=d523779b8f4637d6e4b8eabcc71926e6b33a8667;hpb=f007a674187f11ab58a5aebfe1eec27a90398bcb;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/edl.h b/cinelerra-5.1/cinelerra/edl.h index d523779b..606dcead 100644 --- a/cinelerra-5.1/cinelerra/edl.h +++ b/cinelerra-5.1/cinelerra/edl.h @@ -96,20 +96,30 @@ public: double frame_align(double position, int round); // frame align if cursor alignment is enabled double align_to_frame(double position, int round); +// get position under cursor in pane + double get_cursor_position(int cursor_x, int pane_no); // increase track w/h to at least session w/h void retrack(); // 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. @@ -181,9 +191,10 @@ public: int copy(double start, double end, int all, const char *closer, FileXML *file, const char *output_path, int rewind_it); - EDL *get_nested(EDL *nested_edl, const char *path); - EDL *new_nested(EDL *nested_edl, const char *path); - void create_nested(EDL *nested_edl, const char *path); + 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, @@ -240,6 +251,11 @@ 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 new_scale, int use_scaler, + ArrayList *orig_assets, ArrayList *proxy_assets); + void add_proxy(int use_scaler, + ArrayList *orig_assets, ArrayList *proxy_assets); // Titles of all subfolders ArrayList folders;