summaryrefslogtreecommitdiffstats
path: root/rules/gstreamer1.in
blob: f941d5943ce347c6294c8a2597748f79880a77f4 (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
## SECTION=multimedia_gstreamer1

menuconfig GSTREAMER1
	tristate
	prompt "gstreamer                     "
	select LIBC_M
	select 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.

if GSTREAMER1

	comment "compile options"

	config GSTREAMER1_DEBUG
		bool
		prompt "debug support"

	config GSTREAMER1_CMDLINEPARSER
		bool
		prompt "commandline parser"

	config GSTREAMER1_OPTIONPARSING
		bool
		prompt "option parsing when gst init"

	comment "install options"

	config GSTREAMER1_INSTALL_TYPEFIND
		bool
		prompt "install gst-typefind"

	config GSTREAMER1_INSTALL_INSPECT
		bool
		prompt "install gst-inspect"

	config GSTREAMER1_INSTALL_LAUNCH
		bool
		select GSTREAMER1_CMDLINEPARSER
		select GSTREAMER1_OPTIONPARSING
		prompt "install gst-launch"

endif