scopewindow layout tweak
[goodguy/cinelerra.git] / cinelerra-5.1 / plugin_defs
1 export TOPDIR ?= ../..
2 include $(TOPDIR)/global_config
3
4 # plugin_dirs is translated in awindowgui.C, update if changed.
5
6 plugin_dirs := themes
7 themes := \
8         theme_blond \
9         theme_blond_cv \
10         theme_blue \
11         theme_blue_dot \
12         theme_bright \
13         theme_hulk \
14         theme_pinklady \
15         theme_suv \
16         theme_neophyte \
17         theme_unflat \
18         theme_cakewalk \
19
20 plugin_dirs += video
21 video := \
22         1080to480 \
23         1080to540 \
24         720to480 \
25         aging \
26         alpha \
27         bandslide \
28         bandwipe \
29         bluebanana \
30         blur \
31         brightness \
32         burn \
33         C41 \
34         chromakey \
35         chromakeyhsv \
36         color3way \
37         colorbalance \
38         colorspace \
39         crikey \
40         cropp \
41         crossfade \
42         decimate \
43         deinterlace \
44         deinterlace-cv \
45         delayvideo \
46         denoisemjpeg \
47         denoisevideo \
48         descratch \
49         diffkey \
50         dissolve \
51         dot \
52         downsample \
53         edge \
54         fieldframe \
55         flash \
56         flip \
57         foreground \
58         framefield \
59         freezeframe \
60         gamma \
61         gradient \
62         greycstoration \
63         histeq \
64         histogram \
65         histogram_bezier \
66         holo \
67         huesaturation \
68         interpolatepixels \
69         interpolatevideo \
70         invertvideo \
71         irissquare \
72         ivtc \
73         lens \
74         linearblur \
75         liveaudio \
76         livevideo \
77         loopvideo \
78         motion \
79         motion2 \
80         motion51 \
81         motionblur \
82         motion-cv \
83         motion-hv \
84         mandelcuda \
85         nbodycuda \
86         oil \
87         overlay \
88         perspective \
89         photoscale \
90         polar \
91         radialblur \
92         reframe \
93         reframert \
94         reroute \
95         reversevideo \
96         rgb601 \
97         rgbshift \
98         rotate \
99         rumbler \
100         scale \
101         scaleratio \
102         sketcher \
103         seltempavg \
104         shapewipe \
105         sharpen \
106         shiftinterlace \
107         slide \
108         spherecam \
109         svg \
110         swapchannels \
111         swapframes \
112         threshold \
113         timeavg \
114         timefront \
115         titler \
116         tracer \
117         translate \
118         unsharp \
119         videoscope \
120         wave \
121         whirl \
122         wipe \
123         yuv \
124         yuv411 \
125         yuvshift \
126         zoom \
127         zoomblur \
128
129 plugin_dirs += audio
130 audio := \
131         audioscope \
132         cdripper \
133         chorus \
134         compressor \
135         compressormulti \
136         dcoffset \
137         delayaudio \
138         denoise \
139         denoisefft \
140         despike \
141         echo \
142         echocancel \
143         freeverb \
144         flanger \
145         gain \
146         graphic \
147         interpolateaudio \
148         invertaudio \
149         leveleffect \
150         loopaudio \
151         normalize \
152         overlayaudio \
153         parametric \
154         pitch \
155         removegaps \
156         resample \
157         resamplert \
158         reverb \
159         reverseaudio \
160         spectrogram \
161         synthesizer \
162         timestretch \
163         timestretchrt \
164         tremolo \
165         vocoder \
166
167 plugin_dirs += opencv
168 opencv := \
169         findobj \
170         flowobj \
171         gaborobj \
172         moveobj \
173         puzzleobj \
174         stylizeobj \
175
176 $(foreach dir,$(plugin_dirs),$(foreach plugin,$($(dir)), $(eval $(plugin):=$(dir))))
177