1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
|
#############################################################
#
# gst-plugins-good
#
#############################################################
GST_PLUGINS_GOOD_VERSION = 0.10.16
GST_PLUGINS_GOOD_SOURCE = gst-plugins-good-$(GST_PLUGINS_GOOD_VERSION).tar.bz2
GST_PLUGINS_GOOD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-good
GST_PLUGINS_GOOD_LIBTOOL_PATCH = NO
GST_PLUGINS_GOOD_CONF_OPT = \
--disable-debug \
--disable-examples \
--disable-directsound \
--disable-sunaudio \
--disable-osx_audio \
--disable-osx_video \
--disable-x \
--disable-xshm \
--disable-xvideo \
--disable-aalib \
--disable-aalibtest \
--disable-esd \
--disable-esdtest \
--disable-shout2 \
--disable-shout2test
GST_PLUGINS_GOOD_DEPENDENCIES = gstreamer gst-plugins-base
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_JPEG),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-jpeg
GST_PLUGINS_GOOD_DEPENDENCIES += jpeg
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-jpeg
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PNG),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-libpng
GST_PLUGINS_GOOD_DEPENDENCIES += libpng
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-libpng
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_BZ2),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-bz2
GST_PLUGINS_GOOD_DEPENDENCIES += bzip2
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-bz2
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_ZLIB),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-zlib
GST_PLUGINS_GOOD_DEPENDENCIES += zlib
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-zlib
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOFILTER),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-videofilter
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-videofilter
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ALPHA),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-alpha
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-alpha
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_APETAG),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-apetag
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-apetag
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOFX),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-audiofx
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-audiofx
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUPARSE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-auparse
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-auparse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUTODETECT),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-autodetect
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-autodetect
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AVI),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-avi
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-avi
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CUTTER),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-cutter
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-cutter
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-debugutils
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-debugutils
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-deinterlace
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-deinterlace
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-effectv
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-effectv
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EQUALIZER),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-equalizer
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-equalizer
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-flv
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-flv
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-id3demux
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-id3demux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ICYDEMUX),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-icydemux
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-icydemux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-interleave
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-interleave
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLX),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-flx
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-flx
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GOOM),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-goom
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-goom
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GOOM2K1),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-goom2k1
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-goom2k1
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LAW),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-law
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-law
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LEVEL),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-level
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-level
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MATROSKA),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-matroska
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-matroska
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MONOSCOPE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-monoscope
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-monoscope
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIFILE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-multifile
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-multifile
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIPART),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-multipart
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-multipart
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_QTDEMUX),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-qtdemux
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-qtdemux
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-replaygain
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-replaygain
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTP),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-rtp
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-rtp
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-rtpmanager
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-rtpmanager
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-rtsp
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-rtsp
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SMPTE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-smpte
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-smpte
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPECTRUM),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-spectrum
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-spectrum
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_UDP),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-udp
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-udp
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOBOX),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-videobox
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-videobox
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOCROP),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-videocrop
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-videocrop
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOMIXER),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-videomixer
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-videomixer
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVENC),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-wavenc
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-wavenc
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPARSE),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-wavparse
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-wavparse
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-y4m
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-y4m
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_V4L2),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-gst_v4l2
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-gst_v4l2
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-annodex
GST_PLUGINS_GOOD_DEPENDENCIES += libxml2
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-annodex
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CAIRO),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-cairo
GST_PLUGINS_GOOD_DEPENDENCIES += cairo
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-cairo
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLAC),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-flac
GST_PLUGINS_GOOD_DEPENDENCIES += flac
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-flac
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-oss
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-oss
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-soup
GST_PLUGINS_GOOD_DEPENDENCIES += libsoup
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-soup
endif
ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPEEX),y)
GST_PLUGINS_GOOD_CONF_OPT += --enable-speex
GST_PLUGINS_GOOD_DEPENDENCIES += speex
else
GST_PLUGINS_GOOD_CONF_OPT += --disable-speex
endif
$(eval $(call AUTOTARGETS,package/multimedia,gst-plugins-good))
|