X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Ftransportque.h;h=1f5f9c63a700417df6e3fd213db7dd5feb6ba716;hb=eecf057a9d6b8c8cffc7d0001bff89bc9cac7b05;hp=5082c1a6eb7404a4648c2934775382c5764c448f;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/transportque.h b/cinelerra-5.1/cinelerra/transportque.h index 5082c1a6..1f5f9c63 100644 --- a/cinelerra-5.1/cinelerra/transportque.h +++ b/cinelerra-5.1/cinelerra/transportque.h @@ -35,13 +35,18 @@ public: ~TransportCommand(); void reset(); + static int single_frame(int command); + int single_frame(); // Get the direction based on the command + static int get_direction(int command); int get_direction(); + static float get_speed(int command); float get_speed(); void copy_from(TransportCommand *command); TransportCommand& operator=(TransportCommand &command); // Get the range to play back from the EDL - void set_playback_range(EDL *edl = 0, int use_inout = 0); + void set_playback_range(EDL *edl=0, int use_inout=0, + int toggle_audio=0, int loop_play=0, int use_displacement=0); // Adjust playback range with in/out points for rendering void playback_range_adjust_inout(); @@ -49,8 +54,8 @@ public: void playback_range_inout(); // Set playback range to whole project for rendering void playback_range_project(); + void playback_range_1frame(); - int single_frame(); EDL* get_edl(); void delete_edl(); void new_edl(); @@ -64,11 +69,16 @@ public: int infinite; // Position used when starting playback double playbackstart; +// start position at this=0/next=1 frame + int displacement; // Send output to device int realtime; // Use persistant starting point int resume; - +// reverse audio duty + int audio_toggle; +// playback loop + int play_loop; private: // Copied to render engines EDL *edl; @@ -82,12 +92,10 @@ public: int send_command(int command, // The change type is ORed to accumulate changes. - int change_type, - EDL *new_edl, - int realtime, + int change_type, EDL *new_edl, int realtime, // Persistent starting point - int resume = 0, - int use_inout = 0); + int resume = 0, int use_inout = 0, int toggle_audio = 0, + int loop_play = 0, int use_displacement = 0); void update_change_type(int change_type); TransportCommand command;