diff options
author | Stefan Kost <ensonic@users.sf.net> | 2009-02-25 11:38:58 +0200 |
---|---|---|
committer | Stefan Kost <ensonic@users.sf.net> | 2009-02-25 11:38:58 +0200 |
commit | b2188c868576e0f330d15c7e030b2bc0c7a12048 (patch) | |
tree | 446f30a470060b498269ab5c8ac8e1ab6ed71aa5 /docs/plugins/figures | |
parent | 293715f77af605ad0bdaa4e669ca582dae525aeb (diff) | |
download | gst-plugins-bad-b2188c868576e0f330d15c7e030b2bc0c7a12048.tar.gz gst-plugins-bad-b2188c868576e0f330d15c7e030b2bc0c7a12048.tar.bz2 gst-plugins-bad-b2188c868576e0f330d15c7e030b2bc0c7a12048.zip |
docs: update docs to add camerabin and its figure
Diffstat (limited to 'docs/plugins/figures')
-rw-r--r-- | docs/plugins/figures/Makefile.am | 12 | ||||
-rw-r--r-- | docs/plugins/figures/camerabin.dot | 23 | ||||
-rw-r--r-- | docs/plugins/figures/camerabin.png | bin | 0 -> 7779 bytes |
3 files changed, 35 insertions, 0 deletions
diff --git a/docs/plugins/figures/Makefile.am b/docs/plugins/figures/Makefile.am new file mode 100644 index 00000000..e57da903 --- /dev/null +++ b/docs/plugins/figures/Makefile.am @@ -0,0 +1,12 @@ +SOURCES=camerabin.dot +IMAGES =camerabin.png + +EXTRA_DIST=$(SOURCES) + +.PHONY: update + +.dot.png: + dot -Tpng $< -o$@ + +update: $(IMAGES) + diff --git a/docs/plugins/figures/camerabin.dot b/docs/plugins/figures/camerabin.dot new file mode 100644 index 00000000..a3fc2d5f --- /dev/null +++ b/docs/plugins/figures/camerabin.dot @@ -0,0 +1,23 @@ +/* dot -Tpng camerabin.dot -o camerabin.png */ + +digraph camera { + rankdir=LR; + fontname="Bitstream Vera Sans"; + fontsize="8"; + labelloc=t; + nodesep=.15; + label="Camera Pipeline"; + node [style=filled, fillcolor="#eeeeee", shape=box, fontsize="7", fontname="Bitstream Vera Sans"]; + edge [labelfontsize="7", fontsize="7", labelfontname="Bitstream Vera Sans", fontname="Bitstream Vera Sans"]; + + view_finder [ label="view finder" ]; + image_capture [ label="image capture" ]; + video_capture [ label="video capture" ]; + + capture -> view_finder; + capture -> image_capture; + capture -> video_capture; + image_capture -> view_finder; + video_capture -> view_finder; +} + diff --git a/docs/plugins/figures/camerabin.png b/docs/plugins/figures/camerabin.png Binary files differnew file mode 100644 index 00000000..7f82e133 --- /dev/null +++ b/docs/plugins/figures/camerabin.png |