Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / plugins / flash / flash.h
blob250372b57e680f17546e8d284b575ceb462f171c
1 #ifndef FLASH_H
2 #define FLASH_H
4 class FlashMain;
6 #include "pluginvclient.h"
7 #include "vframe.inc"
9 class FlashMain : public PluginVClient
11 public:
12 FlashMain(PluginServer *server);
13 ~FlashMain();
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();
24 #endif