Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / cinelerra / transportque.h
diff --git a/cinelerra-5.0/cinelerra/transportque.h b/cinelerra-5.0/cinelerra/transportque.h
deleted file mode 100644 (file)
index 1b7e706..0000000
+++ /dev/null
@@ -1,93 +0,0 @@
-
-/*
- * CINELERRA
- * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
- * 
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- * 
- */
-
-#ifndef TRANSPORTQUE_H
-#define TRANSPORTQUE_H
-
-#include "canvas.inc"
-#include "condition.inc"
-#include "edl.inc"
-#include "preferences.inc"
-#include "transportque.inc"
-
-class TransportCommand
-{
-public:
-       TransportCommand();
-       ~TransportCommand();
-
-       void reset();
-// Get the direction based on the command
-       int get_direction();
-       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);
-
-// Adjust playback range with in/out points for rendering
-       void adjust_playback_range();
-
-       int single_frame();
-       EDL* get_edl();
-       void delete_edl();
-       void new_edl();
-
-       int command;
-       int change_type;
-// lowest numbered second in playback range
-       double start_position;
-// highest numbered second in playback range
-       double end_position;
-       int infinite;
-// Position used when starting playback
-       double playbackstart;
-// Send output to device
-       int realtime;
-// Use persistant starting point
-       int resume;
-
-private:
-// Copied to render engines
-       EDL *edl;
-};
-
-class TransportQue
-{
-public:
-       TransportQue();
-       ~TransportQue();
-
-       int send_command(int command, 
-// The change type is ORed to accumulate changes.
-               int change_type, 
-               EDL *new_edl,
-               int realtime,
-// Persistent starting point
-               int resume = 0,
-               int use_inout = 0);
-       void update_change_type(int change_type);
-
-       TransportCommand command;
-       Condition *input_lock, *output_lock;
-};
-
-#endif