repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r956: README.BUILD - add more library recommendations
[cinelerra_cv/ct.git]
/
cinelerra
/
vplayback.h
blob
0d42f2b7736f20b18ff0ecb1f0711b802894f817
1
#ifndef VPLAYBACK_H
2
#define VPLAYBACK_H
3
4
#include
"playbackengine.h"
5
#include
"vwindow.inc"
6
7
class
VPlayback
:
public
PlaybackEngine
8
{
9
public
:
10
VPlayback
(
MWindow
*
mwindow
,
VWindow
*
vwindow
,
Canvas
*
output
);
11
12
int
create_render_engine
();
13
void
init_cursor
();
14
void
stop_cursor
();
15
void
goto_start
();
16
void
goto_end
();
17
VWindow
*
vwindow
;
18
};
19
20
#endif