summaryrefslogtreecommitdiffstats
path: root/rules/gst-plugins-bad1.in
blob: 47bd8a57d1418902d8f17f51793f16defbbb0cba (plain)
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
## SECTION=multimedia_gstreamer1

menuconfig GST_PLUGINS_BAD1
	tristate
	select HOST_MESON
	select HOST_SHADERC		if GST_PLUGINS_BAD1_VULKAN

	select GLIB
	select GSTREAMER1
	select GST_PLUGINS_BASE1
	select GST_PLUGINS_BASE1_GL	if GST_PLUGINS_BAD1_GL
	select ORC
	select BZIP2			if GST_PLUGINS_BAD1_BZ2
	select BZIP2_LIBBZ2		if GST_PLUGINS_BAD1_BZ2
	select BLUEZ			if GST_PLUGINS_BAD1_BLUEZ
	select BLUEZ_LIBBLUETOOTH	if GST_PLUGINS_BAD1_BLUEZ
	select GTK			if GST_PLUGINS_BAD1_GTK3
	select LCMS			if GST_PLUGINS_BAD1_COLORMANAGEMENT
	select LIBCURL			if GST_PLUGINS_BAD1_CURL
	select LIBCURL_LIBSSH2		if GST_PLUGINS_BAD1_CURL_SSH2
	select LIBXML2			if GST_PLUGINS_BAD1_DASH || GST_PLUGINS_BAD1_SMOOTHSTREAMING || GST_PLUGINS_BAD1_TTML
	select LIBXML2_DOM		if GST_PLUGINS_BAD1_DASH || GST_PLUGINS_BAD1_SMOOTHSTREAMING
	select OPENSSL			if GST_PLUGINS_BAD1_AES
	select OPENSSL			if GST_PLUGINS_BAD1_DTLS
	select OPENSSL			if GST_PLUGINS_BAD1_HLS
	select LIBDRM			if GST_PLUGINS_BAD1_KMS || GST_PLUGINS_BAD1_VA|| GST_PLUGINS_BAD1_WAYLAND
	select OPUS			if GST_PLUGINS_BAD1_OPUS
	select JSON_GLIB		if GST_PLUGINS_BAD1_QROVERLAY || GST_PLUGINS_BAD1_CODEC2JSON
	select QRENCODE			if GST_PLUGINS_BAD1_QROVERLAY
	select LIBRSVG			if GST_PLUGINS_BAD1_RSVG
	select RTMPDUMP			if GST_PLUGINS_BAD1_RTMP
	select LIBSNDFILE		if GST_PLUGINS_BAD1_SNDFILE
	select LIBSRTP			if GST_PLUGINS_BAD1_SRTP
	select PANGO			if GST_PLUGINS_BAD1_TTML || GST_PLUGINS_BAD1_CLOSEDCAPTION || GST_PLUGINS_BAD1_ANALYTICSOVERLAY
	select CAIRO			if GST_PLUGINS_BAD1_TTML || GST_PLUGINS_BAD1_CLOSEDCAPTION || GST_PLUGINS_BAD1_ANALYTICSOVERLAY
	select LIBGUDEV			if GST_PLUGINS_BAD1_UVCH264 || GST_PLUGINS_BAD1_VA || GST_PLUGINS_BAD1_V4L2CODECS || GST_PLUGINS_BAD1_UVCGADGET
	select LIBUSB			if GST_PLUGINS_BAD1_UVCH264
	select LIBVA			if GST_PLUGINS_BAD1_VA
	select VO_AACENC		if GST_PLUGINS_BAD1_VOAACENC
	select VULKAN_LOADER		if GST_PLUGINS_BAD1_VULKAN
	select WAYLAND			if GST_PLUGINS_BAD1_WAYLAND
	select WAYLAND_PROTOCOLS	if GST_PLUGINS_BAD1_WAYLAND
	select LIBNICE			if GST_PLUGINS_BAD1_WEBRTC
	select WEBRTC_AUDIO_PROCESSING1	if GST_PLUGINS_BAD1_WEBRTCDSP || GST_PLUGINS_BAD1_ISAC
	select ZBAR			if GST_PLUGINS_BAD1_ZBAR

	prompt "gst-plugins-bad               "
	help
	  GStreamer Bad Plug-ins is a set of plug-ins that aren't
	  up to par compared to the rest. They might be close to being
	  good quality, but they're missing something - be it a good
	  code review, some documentation, a set of tests, a real
	  live maintainer, or some actual wide use.


if GST_PLUGINS_BAD1

comment "dependency-less plugins"

config GST_PLUGINS_BAD1_ACCURIP
	bool
	prompt "accurip"

config GST_PLUGINS_BAD1_ADPCMDEC
	bool
	prompt "adpcmdec"

config GST_PLUGINS_BAD1_ADPCMENC
	bool
	prompt "adpcmenc"

config GST_PLUGINS_BAD1_AIFF
	bool
	prompt "aiff"

config GST_PLUGINS_BAD1_ANALYTICSOVERLAY
	bool
	prompt "analyticsoverlay"

config GST_PLUGINS_BAD1_ASFMUX
	bool
	prompt "asfmux"

config GST_PLUGINS_BAD1_AUDIOBUFFERSPLIT
	bool
	prompt "audiobuffersplit"

config GST_PLUGINS_BAD1_AUDIOFXBAD
	bool
	prompt "audiofxbad"

config GST_PLUGINS_BAD1_AUDIOLATENCY
	bool
	prompt "audiolatency"

config GST_PLUGINS_BAD1_AUDIOMIXMATRIX
	bool
	prompt "audiomixmatrix"

config GST_PLUGINS_BAD1_AUDIOVISUALIZERS
	bool
	prompt "audiovisualizers"

config GST_PLUGINS_BAD1_AUTOCONVERT
	bool
	prompt "autoconvert"

config GST_PLUGINS_BAD1_BAYER
	bool
	prompt "bayer"

config GST_PLUGINS_BAD1_CAMERABIN2
	bool
	prompt "camerabin2"

config GST_PLUGINS_BAD1_CODEC2JSON
	bool
	prompt "codec2json"

config GST_PLUGINS_BAD1_CODECALPHA
	bool
	prompt "codecalpha"

config GST_PLUGINS_BAD1_CODECTIMESTAMPER
	bool
	prompt "codectimestamper"

config GST_PLUGINS_BAD1_COLOREFFECTS
	bool
	prompt "coloreffects"

config GST_PLUGINS_BAD1_DEBUGUTILS
	bool
	prompt "debugutils"

config GST_PLUGINS_BAD1_DVBSUBENC
	bool
	prompt "dvbsubenc"

config GST_PLUGINS_BAD1_DVBSUBOVERLAY
	bool
	prompt "dvbsuboverlay"

config GST_PLUGINS_BAD1_DVDSPU
	bool
	prompt "dvdspu"

config GST_PLUGINS_BAD1_FACEOVERLAY
	bool
	prompt "faceoverlay"

config GST_PLUGINS_BAD1_FESTIVAL
	bool
	prompt "festival"

config GST_PLUGINS_BAD1_FIELDANALYSIS
	bool
	prompt "fieldanalysis"

config GST_PLUGINS_BAD1_FREEVERB
	bool
	prompt "freeverb"

config GST_PLUGINS_BAD1_FREI0R
	bool
	prompt "frei0r"

config GST_PLUGINS_BAD1_GAUDIEFFECTS
	bool
	prompt "gaudieffects"

config GST_PLUGINS_BAD1_GDP
	bool
	prompt "gdp"

config GST_PLUGINS_BAD1_GEOMETRICTRANSFORM
	bool
	prompt "geometrictransform"

config GST_PLUGINS_BAD1_ID3TAG
	bool
	prompt "id3tag"

config GST_PLUGINS_BAD1_INSERTBIN
	bool
	prompt "insertbin"

config GST_PLUGINS_BAD1_INTER
	bool
	prompt "inter"

config GST_PLUGINS_BAD1_INTERLACE
	bool
	prompt "interlace"

config GST_PLUGINS_BAD1_IVFPARSE
	bool
	prompt "ivfparse"

config GST_PLUGINS_BAD1_IVTC
	bool
	prompt "ivtc"

config GST_PLUGINS_BAD1_JP2KDECIMATOR
	bool
	prompt "jp2kdecimator"

config GST_PLUGINS_BAD1_JPEGFORMAT
	bool
	prompt "jpegformat"

config GST_PLUGINS_BAD1_LIBRFB
	bool
	prompt "librfb"

config GST_PLUGINS_BAD1_MIDI
	bool
	prompt "midi"

config GST_PLUGINS_BAD1_MPEGDEMUX
	bool
	prompt "mpegdemux"

config GST_PLUGINS_BAD1_MPEGPSMUX
	bool
	prompt "mpegpsmux"

config GST_PLUGINS_BAD1_MPEGTSDEMUX
	bool
	prompt "mpegtsdemux"

config GST_PLUGINS_BAD1_MPEGTSMUX
	bool
	prompt "mpegtsmux"

config GST_PLUGINS_BAD1_MSE
	bool
	prompt "mse"

config GST_PLUGINS_BAD1_MXF
	bool
	prompt "mxf"

config GST_PLUGINS_BAD1_NETSIM
	bool
	prompt "netsim"

config GST_PLUGINS_BAD1_ONVIF
	bool
	prompt "onvif"

config GST_PLUGINS_BAD1_PCAPPARSE
	bool
	prompt "pcapparse"

config GST_PLUGINS_BAD1_PNM
	bool
	prompt "pnm"

config GST_PLUGINS_BAD1_PROXY
	bool
	prompt "proxy"

config GST_PLUGINS_BAD1_RAWPARSE
	bool
	prompt "rawparse"

config GST_PLUGINS_BAD1_REMOVESILENCE
	bool
	prompt "removesilence"

config GST_PLUGINS_BAD1_RIST
	bool
	prompt "rist"

config GST_PLUGINS_BAD1_RTMP2
	bool
	prompt "rtmp2"

config GST_PLUGINS_BAD1_RTP
	bool
	prompt "rtp"

config GST_PLUGINS_BAD1_SDP
	bool
	prompt "sdp"

config GST_PLUGINS_BAD1_SEGMENTCLIP
	bool
	prompt "segmentclip"

config GST_PLUGINS_BAD1_SIREN
	bool
	prompt "siren"

config GST_PLUGINS_BAD1_SMOOTH
	bool
	prompt "smooth"

config GST_PLUGINS_BAD1_SPEED
	bool
	prompt "speed"

config GST_PLUGINS_BAD1_SUBENC
	bool
	prompt "subenc"

config GST_PLUGINS_BAD1_SWITCHBIN
	bool
	prompt "switchbin"

config GST_PLUGINS_BAD1_TIMECODE
	bool
	prompt "timecode"

config GST_PLUGINS_BAD1_UNIXFD
	bool
	prompt "unixfd"

config GST_PLUGINS_BAD1_VIDEOFILTERS
	bool
	prompt "videofilters"

config GST_PLUGINS_BAD1_VIDEOFRAME_AUDIOLEVEL
	bool
	prompt "videoframe_audiolevel"

config GST_PLUGINS_BAD1_VIDEOPARSERS
	bool
	prompt "videoparsers"

config GST_PLUGINS_BAD1_VIDEOSIGNAL
	bool
	prompt "videosignal"

config GST_PLUGINS_BAD1_VMNC
	bool
	prompt "vmnc"

config GST_PLUGINS_BAD1_Y4M
	bool
	prompt "y4m"

comment "plugins with dependencies"

config GST_PLUGINS_BAD1_AES
	bool
	prompt "aes"
	help
	  AES encryption/decryption plugin

config GST_PLUGINS_BAD1_AJA
	bool
	# needs libajantv2
	depends on BROKEN
	prompt "aja"
	help
	  AJA audio/video source/sink plugin

config GST_PLUGINS_BAD1_AOM
	bool
	# needs libaom
	depends on BROKEN
	prompt "aom"
	help
	  AOM AV1 video codec plugin

config GST_PLUGINS_BAD1_AMFCODEC
	bool
	# needs amf
	depends on BROKEN
	prompt "amfcodec"
	help
	  AMD AMF codec plugin

config GST_PLUGINS_BAD1_AVTP
	bool
	# needs avtp
	depends on BROKEN
	prompt "avtp"
	help
	  Audio/Video Transport Protocol (AVTP) plugin

config GST_PLUGINS_BAD1_ASSRENDER
	bool
	# needs libass
	depends on BROKEN
	prompt "assrender"
	help
	  ASS/SSA subtitle renderer plugin

config GST_PLUGINS_BAD1_BLUEZ
	bool
	prompt "bluez"
	help
	  Bluetooth audio A2DP/AVDTP sink, AVDTP source plugin

config GST_PLUGINS_BAD1_BS2B
	bool
	# needs libbs2b
	depends on BROKEN
	prompt "bs2b"
	help
	  Bauer stereophonic-to-binaural audio plugin

config GST_PLUGINS_BAD1_BZ2
	bool
	prompt "bz2"
	help
	  bz2 stream encoder and decoder plugin

config GST_PLUGINS_BAD1_CHROMAPRINT
	bool
	# needs libchromaprint
	depends on BROKEN
	prompt "chromaprint"
	help
	  Chromaprint fingerprint audio plugin

config GST_PLUGINS_BAD1_CLOSEDCAPTION
	bool
	prompt "closedcaption"
	help
	  Closed caption extractor, decoder, and overlay plugin

config GST_PLUGINS_BAD1_COLORMANAGEMENT
	bool
	prompt "colormanagement"
	help
	  Color management correction plugin

config GST_PLUGINS_BAD1_CURL
	bool
	prompt "curl"
	help
	  cURL network source and sink plugin

config GST_PLUGINS_BAD1_CURL_SSH2
	bool
	depends on GST_PLUGINS_BAD1_CURL
	prompt "ssh support"
	help
	  cURL network source and sink plugin libssh2 support

config GST_PLUGINS_BAD1_DASH
	bool
	prompt "dash"
	help
	  DASH demuxer plugin

config GST_PLUGINS_BAD1_DC1394
	bool
	# needs libdc1394
	depends on BROKEN
	prompt "dc1394"
	help
	  libdc1394 IIDC camera source plugin

config GST_PLUGINS_BAD1_DECKLINK
	bool
	prompt "decklink"
	help
	  DeckLink audio/video source/sink plugin

config GST_PLUGINS_BAD1_DIRECTFB
	bool
	# needs directfb
	depends on BROKEN
	prompt "directfb"
	help
	  DirectFB video sink plugin

config GST_PLUGINS_BAD1_DTLS
	bool
	prompt "dtls"
	help
	  DTLS encoder and decoder plugin

config GST_PLUGINS_BAD1_DTS
	bool
	# needs libdca
	depends on BROKEN
	prompt "dts"
	help
	  DTS audio decoder plugin

config GST_PLUGINS_BAD1_DVB
	bool
	prompt "dvb"
	help
	  DVB video bin and source plugin

config GST_PLUGINS_BAD1_FAAC
	bool
	# needs faac
	depends on BROKEN
	prompt "faac"
	help
	  Free AAC audio encoder plugin

config GST_PLUGINS_BAD1_FAAD
	bool
	# needs faad2
	depends on BROKEN
	prompt "faad"
	help
	  Free AAC audio decoder plugin

config GST_PLUGINS_BAD1_FBDEV
	bool
	prompt "fbdev"
	help
	  Framebuffer video sink plugin

config GST_PLUGINS_BAD1_FDKAAC
	bool
	# needs fdk-aac
	depends on BROKEN
	prompt "fdkaac"
	help
	  Fraunhofer AAC audio codec plugin

config GST_PLUGINS_BAD1_FLITE
	bool
	# needs flite
	depends on BROKEN
	prompt "flite"
	help
	  Flite speech synthesizer source plugin

config GST_PLUGINS_BAD1_FLUIDSYNTH
	bool
	# needs fluidsynth
	depends on BROKEN
	prompt "fluidsynth"
	help
	  Fluidsynth MIDI decoder plugin

config GST_PLUGINS_BAD1_GME
	bool
	# needs libgme
	depends on BROKEN
	prompt "gme"
	help
	  libgme gaming console music file decoder plugin

config GST_PLUGINS_BAD1_GS
	bool
	# needs google_cloud_cpp_storage
	depends on BROKEN
	prompt "gs"
	help
	  Google Cloud Storage source and sink plugin

config GST_PLUGINS_BAD1_GSM
	bool
	# needs gsm
	depends on BROKEN
	prompt "gsm"
	help
	  GSM encoder/decoder plugin

config GST_PLUGINS_BAD1_GTK3
	bool
	prompt "gtk3"
	help
	  GTK+ video sink plugin

config GST_PLUGINS_BAD1_HLS
	bool
	prompt "hls"
	help
	  HTTP Live Streaming plugin

config GST_PLUGINS_BAD1_IPCPIPELINE
	bool
	prompt "ipcpipeline"
	help
	  Inter-process communication plugin

config GST_PLUGINS_BAD1_IQA
	bool
	# needs libdssim
	depends on BROKEN
	prompt "iqa"
	help
	  Image quality assessment plugin

config GST_PLUGINS_BAD1_ISAC
	bool
	prompt "isac"
	help
	  iSAC plugin

config GST_PLUGINS_BAD1_KMS
	bool
	prompt "kms"
	help
	  KMS video sink plugin

config GST_PLUGINS_BAD1_LADSPA
	bool
	# needs ladspa-sdk
	depends on BROKEN
	prompt "ladspa"
	help
	  LADSPA plugin bridge

config GST_PLUGINS_BAD1_LC3
	bool
	# needs lc3
	depends on BROKEN
	prompt "lc3"
	help
	  LC3 (Bluetooth) LE audio codec plugin

config GST_PLUGINS_BAD1_LDAC
	bool
	# needs ldacBT-enc
	depends on BROKEN
	prompt "ldac"
	help
	  LDAC bluetooth audio codec plugin

config GST_PLUGINS_BAD1_LIBDE265
	bool
	# needs libde265
	depends on BROKEN
	prompt "libde265"
	help
	  HEVC/H.265 video decoder plugin

config GST_PLUGINS_BAD1_OPENAPTX
	bool
	# needs libopenaptx
	depends on BROKEN
	prompt "openaptx"
	help
	  Open Source implementation of Audio Processing Technology codec (aptX) plugin

config GST_PLUGINS_BAD1_LV2
	bool
	# needs liblilv
	depends on BROKEN
	prompt "lv2"
	help
	  LV2 audio plugin bridge

config GST_PLUGINS_BAD1_MICRODNS
	bool
	# needs libmicrodns
	depends on BROKEN
	prompt "microdns"
	help
	  libmicrodns-based device provider

config GST_PLUGINS_BAD1_MODPLUG
	bool
	# needs libmodplug
	depends on BROKEN
	prompt "modplug"
	help
	  ModPlug audio decoder plugin

config GST_PLUGINS_BAD1_MPEG2ENC
	bool
	# needs mjpegtools & mpeg2encpp
	depends on BROKEN
	prompt "mpeg2enc"
	help
	  mpeg2enc video encoder plugin

config GST_PLUGINS_BAD1_MPLEX
	bool
	# needs mjpegtools & mplex2
	depends on BROKEN
	prompt "mplex"
	help
	  mplex audio/video multiplexer plugin

config GST_PLUGINS_BAD1_MSDK
	bool
	# needs Intel MediaSDK
	depends on BROKEN
	prompt "msdk"
	help
	  Intel Media SDK video encoder/decoder plugin

config GST_PLUGINS_BAD1_MUSEPACK
	bool
	# needs mpcdec
	depends on BROKEN
	prompt "musepack"
	help
	  libmpcdec Musepack decoder plugin

config GST_PLUGINS_BAD1_NEON
	bool
	# needs neon
	depends on BROKEN
	prompt "neon"
	help
	  NEON HTTP source plugin

config GST_PLUGINS_BAD1_NVCODEC
	bool
	# needs nvcuvid & cuda
	depends on BROKEN
	prompt "nvcodec"
	help
	  NVIDIA GPU codec plugin

config GST_PLUGINS_BAD1_ONNX
	bool
	# needs libonnxruntime
	depends on BROKEN
	prompt "onnx"
	help
	  ONNX neural network plugin

config GST_PLUGINS_BAD1_OPENAL
	bool
	# needs OpenAL
	depends on BROKEN
	prompt "openal"
	help
	  OpenAL plugin

config GST_PLUGINS_BAD1_OPENCV
	bool
	depends on BROKEN
	prompt "opencv"
	help
	  OpenCV computer vision library support

config GST_PLUGINS_BAD1_OPENEXR
	bool
	# needs OpenEXR
	depends on BROKEN
	prompt "openexr"
	help
	  OpenEXR plugin

config GST_PLUGINS_BAD1_OPENH264
	bool
	# needs openh264
	depends on BROKEN
	prompt "openh264"
	help
	  H.264 video codec plugin

config GST_PLUGINS_BAD1_OPENJPEG
	bool
	# needs openjpeg
	depends on BROKEN
	prompt "openjpeg"
	help
	  JPEG2000 image codec plugin

config GST_PLUGINS_BAD1_OPENMPT
	bool
	# needs libopenmpt
	depends on BROKEN
	prompt "openmpt"
	help
	  OpenMPT module music library plugin

config GST_PLUGINS_BAD1_OPENNI2
	bool
	# needs libopenni2
	depends on BROKEN
	prompt "openni2"
	help
	  OpenNI2 library plugin

config GST_PLUGINS_BAD1_OPENSLES
	bool
	depends on BROKEN
	prompt "opensles"
	help
	  OpenSL ES audio source/sink plugin

config GST_PLUGINS_BAD1_OPUS
	bool
	prompt "opus"
	help
	  OPUS audio parser plugin

config GST_PLUGINS_BAD1_QROVERLAY
	bool
	prompt "qroverlay"
	help
	  QR code overlay plugin

config GST_PLUGINS_BAD1_QSV
	bool
	prompt "qsv"
	help
	  Intel Quick Sync Video plugin

config GST_PLUGINS_BAD1_RESINDVD
	bool
	# needs dvdnav & dvdread
	depends on BROKEN
	prompt "resindvd"
	help
	  Resin DVD playback plugin

config GST_PLUGINS_BAD1_RSVG
	bool
	prompt "rsvg"
	help
	  SVG overlayer and image decoder plugin

config GST_PLUGINS_BAD1_RTMP
	bool
	prompt "rtmp"
	help
	  RTMP video network source and sink plugin

config GST_PLUGINS_BAD1_SBC
	bool
	# needs sbc
	depends on BROKEN
	prompt "sbc"
	help
	  SBC bluetooth audio codec plugin

config GST_PLUGINS_BAD1_SCTP
	bool
	prompt "sctp"
	help
	  SCTP plugin

config GST_PLUGINS_BAD1_SHM
	bool
	prompt "shm"
	help
	  Shared memory source/sink plugin

config GST_PLUGINS_BAD1_SMOOTHSTREAMING
	bool
	prompt "smoothstreaming"
	help
	  Microsoft Smooth Streaming demuxer plugin

config GST_PLUGINS_BAD1_SNDFILE
	bool
	prompt "sndfile"
	help
	  libsndfile plugin

config GST_PLUGINS_BAD1_SOUNDTOUCH
	bool
	# needs soundtouch
	depends on BROKEN
	prompt "soundtouch"
	help
	  Audio pitch controller & BPM detection plugin

config GST_PLUGINS_BAD1_SPANDSP
	bool
	# needs spandsp
	depends on BROKEN
	prompt "spandsp"
	help
	  Packet loss concealment audio plugin

config GST_PLUGINS_BAD1_SRT
	bool
	# needs libsrt
	depends on BROKEN
	prompt "srt"
	help
	  Secure, Reliable, Transport client/server network source/sink plugin

config GST_PLUGINS_BAD1_SRTP
	bool
	prompt "srtp"
	help
	  Secure RTP codec plugin

config GST_PLUGINS_BAD1_SVTAV1
	bool
	# needs SvtAv1Enc
	depends on BROKEN
	prompt "svtav1"
	help
	  Scalable Video Technology for AV1 plugin

config GST_PLUGINS_BAD1_SVTHEVCENC
	bool
	# needs svthevcenc
	depends on BROKEN
	prompt "svthevcenc"
	help
	  Scalable Video Technology for HEVC encoder plugin

config GST_PLUGINS_BAD1_TELETEXT
	bool
	# needs zvbi
	depends on BROKEN
	prompt "teletext"
	help
	  Teletext plugin

config GST_PLUGINS_BAD1_TINYALSA
	bool
	# needs tinyalsa
	depends on BROKEN
	prompt "tinyalsa"
	help
	  TinyALSA plugin

config GST_PLUGINS_BAD1_TRANSCODE
	bool
	prompt "transcode"
	help
	  Transcode plugin

config GST_PLUGINS_BAD1_TTML
	bool
	prompt "ttml"
	help
	  TTML subtitle parser and renderer plugin

config GST_PLUGINS_BAD1_UVCH264
	bool
	prompt "uvch264"
	help
	  UVC compliant H.264 camera source plugin

config GST_PLUGINS_BAD1_VA
	bool
	prompt "va"
	help
	  VA-API new plugin

config GST_PLUGINS_BAD1_VOAACENC
	bool
	prompt "voaacenc"
	help
	  AAC audio encoder plugin

config GST_PLUGINS_BAD1_UVCGADGET
	bool
	prompt "uvcgadget"
	help
	  uvc video gadget plugin

config GST_PLUGINS_BAD1_V4L2CODECS
	bool
	prompt "v4l2codecs"
	help
	  Video4Linux Stateless CODECs support

config GST_PLUGINS_BAD1_VOAMRWBENC
	bool
	# needs vo-amrwbenc
	depends on BROKEN
	prompt "voamrwbenc"
	help
	  AMR-WB audio encoder plugin

config GST_PLUGINS_BAD1_VULKAN
	bool
	prompt "vulkan"
	help
	  Vulkan video sink plugin

if GST_PLUGINS_BAD1_VULKAN

config GST_PLUGINS_BAD1_WAYLAND
	bool
	prompt "wayland"
	help
	  Wayland plugin/library, support in the Vulkan plugin
endif

config GST_PLUGINS_BAD1_WEBP
	bool
	# needs libwebp
	depends on BROKEN
	prompt "webp"
	help
	  WebP image codec plugin

config GST_PLUGINS_BAD1_WEBRTC
	bool
	select GST_PLUGINS_BAD1_DTLS
	select GST_PLUGINS_BAD1_SCTP
	select GST_PLUGINS_BAD1_SRTP
	prompt "webrtc"
	help
	  WebRTC audio/video network bin plugin

config GST_PLUGINS_BAD1_WEBRTCDSP
	bool
	prompt "webrtcdsp"
	help
	  Plugin with various audio filters provided by the WebRTC audio processing library

config GST_PLUGINS_BAD1_WILDMIDI
	bool
	# needs WildMIDI
	depends on BROKEN
	prompt "wildmidi"
	help
	  WildMidi midi soft synth plugin

config GST_PLUGINS_BAD1_WPE
	bool
	# needs wpe-webkit
	depends on BROKEN
	prompt "wpe"
	help
	  WPE Web browser plugin

config GST_PLUGINS_BAD1_X265
	bool
	# needs x265
	depends on BROKEN
	prompt "x265"
	help
	  HEVC/H.265 video encoder plugin

config GST_PLUGINS_BAD1_ZBAR
	bool
	prompt "zbar"
	help
	  Barcode image scanner plugin using zbar library

config GST_PLUGINS_BAD1_ZXING
	bool
	# needs zxing-cpp
	depends on BROKEN
	prompt "zxing"
	help
	  Barcode image scanner plugin using zxing-cpp library

comment "Support options"

config GST_PLUGINS_BAD1_GL
	bool
	prompt "gl"
	help
	  GStreamer OpenGL integration support (used by various plugins)

comment "install options"

config GST_PLUGINS_BAD1_INSTALL_TOOLS
	bool
	prompt "install tools"
	help
	  installs gst-transcoder tool

endif