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
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
cinelerra
/
cplayback.h
blob
7f1382c5d208fbe374eccc72225e8e03ab257dfb
1
#ifndef CPLAYBACK_H
2
#define CPLAYBACK_H
3
4
#include
"cwindow.inc"
5
#include
"playbackengine.h"
6
7
class
CPlayback
:
public
PlaybackEngine
8
{
9
public
:
10
CPlayback
(
MWindow
*
mwindow
,
CWindow
*
cwindow
,
Canvas
*
output
);
11
12
int
create_render_engine
();
13
void
init_cursor
();
14
void
stop_cursor
();
15
int
brender_available
(
long
position
);
16
17
CWindow
*
cwindow
;
18
};
19
20
#endif
21
/*
22
// Local Variables:
23
// mode: C++
24
// c-file-style: "linux"
25
// End:
26
*/