summaryrefslogtreecommitdiffstats
path: root/rules/gstreamer.in
blob: 11d7f43dc6e23eb486020ecc0f8d4156315559d2 (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
## SECTION=staging
## old section:
### SECTION=multimedia_gstreamer

menuconfig GSTREAMER
	tristate
	prompt "gstreamer                     "
	select LIBC_M
	select GLIB
	select LIBXML2		if GSTREAMER_LOADSAVE
	select LIBXML2_READER	if GSTREAMER_LOADSAVE
	select LIBXML2_OUTPUT	if GSTREAMER_LOADSAVE
	select LIBXML2_SAX1	if GSTREAMER_LOADSAVE
	select HOST_GLIB
	select HOST_FLEX
	help
	  GStreamer is a streaming media framework, based on graphs of
	  filters which operate on media data. Applications using this
	  library can do anything from real-time sound processing to
	  playing videos, and just about anything else
	  media-related. Its plugin-based architecture means that new
	  data types or processing capabilities can be added simply by
	  installing new plug-ins.

	  STAGING: remove in ptxdist-2021.05.0
	  GStreamer 0.10 has been dead more than 8 years.

if GSTREAMER

	comment "compile options"

	config GSTREAMER_DEBUG
		bool
		prompt "debug support"

	config GSTREAMER_LOADSAVE
		bool
		prompt "pipleline xml load/save"

	config GSTREAMER_CMDLINEPARSER
		bool
		prompt "commandline parser"

	config GSTREAMER_OPTIONPARSING
		bool
		prompt "option parsing when gst init"

	config GSTREAMER_NETDIST
		bool
		prompt "network distribution"

	comment "install options"

	config GSTREAMER_INSTALL_TYPEFIND
		bool
		prompt "install gst-typefind"

	config GSTREAMER_INSTALL_INSPECT
		bool
		prompt "install gst-inspect"

	config GSTREAMER_INSTALL_XMLINSPECT
		bool
		prompt "install gst-xmlinspect"

	config GSTREAMER_INSTALL_XMLLAUNCH
		bool
		depends on GSTREAMER_LOADSAVE
		prompt "install gst-xmllaunch"

	config GSTREAMER_INSTALL_LAUNCH
		bool
		depends on GSTREAMER_CMDLINEPARSER
		prompt "install gst-launch"

endif