X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fconvert.h;h=dde071d4c1e137f64b733295361487d163e4feaa;hp=a1de04b8bb28c41b7389ddf63fb69cb1c16b25be;hb=166867a58d74619aa11aeb562a994cc364d62231;hpb=03fa86e6dc495f9444ae14dad401b1ad6de793fe diff --git a/cinelerra-5.1/cinelerra/convert.h b/cinelerra-5.1/cinelerra/convert.h index a1de04b8..dde071d4 100644 --- a/cinelerra-5.1/cinelerra/convert.h +++ b/cinelerra-5.1/cinelerra/convert.h @@ -39,7 +39,7 @@ class ConvertRender : public Thread { public: - ConvertRender(MWindow *mwindow, const char *suffix); + ConvertRender(MWindow *mwindow); ~ConvertRender(); void reset(); void to_convert_path(char *new_path, Indexable *idxbl); @@ -50,6 +50,10 @@ public: ArrayList needed_idxbls; // originals which match the needed_assets ArrayList needed_copies; // assets which must be created + double get_video_length(Indexable *idxbl); + double get_audio_length(Indexable *idxbl); + double get_length(Indexable *idxbl); + int match_format(Asset *asset); EDL *convert_edl(EDL *edl, Indexable *idxbl); // create render edl for this indexable int add_original(EDL *edl, Indexable *idxbl); void add_needed(Indexable *idxbl, Asset *convert); @@ -57,7 +61,7 @@ public: // if user canceled progress bar int is_canceled(); - void set_format(Asset *asset); + void set_format(Asset *asset, const char *suffix, int to_proxy); void start_convert(float beep, int remove_originals); void run(); void create_copy(int i); @@ -75,6 +79,7 @@ public: int total_rendered, remove_originals; int failed, canceled, result; float beep; + int to_proxy; }; class ConvertMenuItem : public BC_MenuItem @@ -121,6 +126,17 @@ public: ConvertWindow *gui; }; +class ConvertToProxyPath : public BC_CheckBox +{ +public: + ConvertToProxyPath(ConvertWindow *gui, int x, int y); + ~ConvertToProxyPath(); + + int handle_event(); + + ConvertWindow *gui; +}; + class ConvertBeepOnDone : public BC_FPot { public: @@ -174,6 +190,7 @@ public: ConvertSuffixText *suffix_text; ConvertFormatTools *format_tools; ConvertRemoveOriginals *remove_originals; + ConvertToProxyPath *to_proxy_path; ConvertBeepOnDone *beep_on_done; }; @@ -198,26 +215,7 @@ public: int orig_w, orig_h; int remove_originals; float beep; -}; - -class ConvertBeep : public Thread -{ -public: - enum { BEEP_SAMPLE_RATE=48000 }; - typedef int16_t audio_data_t; - ConvertBeep(MWindow *mwindow); - ~ConvertBeep(); - - void run(); - void start(); - void stop(int wait); - void tone(double freq, double secs, double gain); - - MWindow *mwindow; - double freq, secs, gain; - AudioDevice *audio; - int playing_audio, interrupted; - int audio_pos; + int to_proxy; }; #endif