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
Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git]
/
plugins
/
flash
/
flash.h
blob
250372b57e680f17546e8d284b575ceb462f171c
1
#ifndef FLASH_H
2
#define FLASH_H
3
4
class
FlashMain
;
5
6
#include
"pluginvclient.h"
7
#include
"vframe.inc"
8
9
class
FlashMain
:
public
PluginVClient
10
{
11
public
:
12
FlashMain
(
PluginServer
*
server
);
13
~
FlashMain
();
14
15
// required for all realtime plugins
16
int
process_realtime
(
VFrame
*
input_ptr
,
VFrame
*
output_ptr
);
17
int
uses_gui
();
18
int
is_transition
();
19
int
is_video
();
20
char
*
plugin_title
();
21
VFrame
*
new_picon
();
22
};
23
24
#endif