repo.or.cz
/
cinelerra_cv
/
mob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r105: This commit was manufactured by cvs2svn to create tag
[cinelerra_cv/mob.git]
/
hvirtual
/
plugins
/
reversevideo
/
reversevideo.h
blob
dce139a9a959e99f891c213319c73a03f959ed92
1
#ifndef REVERSEVIDEO_H
2
#define REVERSEVIDEO_H
3
4
#include
"pluginvclient.h"
5
6
class
ReverseVideo
:
public
PluginVClient
7
{
8
public
:
9
ReverseVideo
(
PluginServer
*
server
);
10
~
ReverseVideo
();
11
12
char
*
plugin_title
();
13
VFrame
*
new_picon
();
14
int
process_loop
(
VFrame
*
buffer
);
15
16
int
start_loop
();
17
int
stop_loop
();
18
19
20
21
22
23
MainProgressBar
*
progress
;
24
int64_t
current_position
;
25
};
26
27
28
29
30
#endif