summaryrefslogtreecommitdiffstats
path: root/rules/gstreamer.in
blob: d99a418966f00701a56e5beb221d874f4f3ece05 (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
## SECTION=multimedia_gstreamer

menuconfig GSTREAMER
	tristate
	prompt "gstreamer                     "
	select GLIB
	# FIXME: this should not be necessary; the gstreamer m4 files
	# have a check which claims that it should be fixed, but until
	# now nobody did it.
	select LIBXML2
	select LIBXML2_READER
	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.

if GSTREAMER

	comment "compile options"

	config GSTREAMER__DEBUG
		bool
		prompt "debug support"

	config GSTREAMER__LOADSAVE
		bool
		select LIBXML2_OUTPUT
		select LIBXML2_SAX1
		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