diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-06-25 11:02:21 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-06-25 11:02:21 +0000 |
commit | 5827f80d621828cc9f3be10fce0f1d4d487bfcd2 (patch) | |
tree | dedc8b71890835c633c5f093fbf1c5032002afd7 /gconf | |
parent | 825b31e29565cd71614b6a64df11a5ce746299e4 (diff) | |
download | gst-plugins-bad-5827f80d621828cc9f3be10fce0f1d4d487bfcd2.tar.gz gst-plugins-bad-5827f80d621828cc9f3be10fce0f1d4d487bfcd2.tar.bz2 gst-plugins-bad-5827f80d621828cc9f3be10fce0f1d4d487bfcd2.zip |
gconf/: Remove dysfunctional directory (this stuff is in -good).
Original commit message from CVS:
* gconf/.cvsignore:
* gconf/Makefile.am:
* gconf/gstreamer.schemas.in:
Remove dysfunctional directory (this stuff is in -good).
* ext/sndfile/gstsf.c: (plugin_init):
* sys/dvb/gstdvbsrc.c: (plugin_init):
Add i18n bindtextdomain stuff.
* gst/nuvdemux/gstnuvdemux.c: (gst_nuv_demux_class_init),
(plugin_init):
Post an error message when returning GST_FLOW_ERROR; minor cleanups.
* po/POTFILES.in:
Add more source files with translatable strings (fixes #450605).
Diffstat (limited to 'gconf')
-rw-r--r-- | gconf/.gitignore | 2 | ||||
-rw-r--r-- | gconf/Makefile.am | 17 | ||||
-rw-r--r-- | gconf/gstreamer.schemas.in | 59 |
3 files changed, 0 insertions, 78 deletions
diff --git a/gconf/.gitignore b/gconf/.gitignore deleted file mode 100644 index 57ec9678..00000000 --- a/gconf/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -gstreamer-*.schemas -gstreamer.schemas diff --git a/gconf/Makefile.am b/gconf/Makefile.am deleted file mode 100644 index 660a66e3..00000000 --- a/gconf/Makefile.am +++ /dev/null @@ -1,17 +0,0 @@ -schemadir = @GCONF_SCHEMA_FILE_DIR@ -schema_DATA = gstreamer-@GST_MAJORMINOR@.schemas - -gstreamer-@GST_MAJORMINOR@.schemas: gstreamer.schemas - cp gstreamer.schemas gstreamer-@GST_MAJORMINOR@.schemas - -install-data-local: - @GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) \ - --makefile-install-rule $(srcdir)/$(schema_DATA) || \ - (echo ;\ - echo "*****************************************************"; \ - echo "Installation of schemas failed, install them manually"; \ - echo "*****************************************************";) - @true - -CLEANFILES = $(schema_DATA) -EXTRA_DIST = $(schema_DATA) diff --git a/gconf/gstreamer.schemas.in b/gconf/gstreamer.schemas.in deleted file mode 100644 index e3d893c1..00000000 --- a/gconf/gstreamer.schemas.in +++ /dev/null @@ -1,59 +0,0 @@ -<gconfschemafile> - <schemalist> - <schema> - <key>/schemas/system/gstreamer/@GST_MAJORMINOR@/default/audiosink</key> - <applyto>/system/gstreamer/@GST_MAJORMINOR@/default/audiosink</applyto> - <owner>gstreamer</owner> - <type>string</type> - <default>@DEFAULT_AUDIOSINK@</default> - <locale name="C"> - <short>default GStreamer audiosink</short> - <long>GStreamer can play audio using any number of output elements. Some possible choices are osssink, esdsink and alsasink. The audiosink can be a partial pipeline instead of just one element.</long> - </locale> - </schema> - <schema> - <key>/schemas/system/gstreamer/@GST_MAJORMINOR@/default/videosink</key> - <applyto>/system/gstreamer/@GST_MAJORMINOR@/default/videosink</applyto> - <owner>gstreamer</owner> - <type>string</type> - <default>@DEFAULT_VIDEOSINK@</default> - <locale name="C"> - <short>default GStreamer videosink</short> - <long>GStreamer can play video using any number of output elements. Some possible choices are xvimagesink, ximagesink, sdlvideosink and aasink. The videosink can be a partial pipeline instead of just one element.</long> - </locale> - </schema> - <schema> - <key>/schemas/system/gstreamer/@GST_MAJORMINOR@/default/audiosrc</key> - <applyto>/system/gstreamer/@GST_MAJORMINOR@/default/audiosrc</applyto> - <owner>gstreamer</owner> - <type>string</type> - <default>@DEFAULT_AUDIOSRC@</default> - <locale name="C"> - <short>default GStreamer audio source</short> - <long>GStreamer can record audio using any number of input elements. Some possible choices are osssrc, esdsrc and alsasrc. The audio source can be a partial pipeline instead of just one element.</long> - </locale> - </schema> - <schema> - <key>/schemas/system/gstreamer/@GST_MAJORMINOR@/default/videosrc</key> - <applyto>/system/gstreamer/@GST_MAJORMINOR@/default/videosrc</applyto> - <owner>gstreamer</owner> - <type>string</type> - <default>@DEFAULT_VIDEOSRC@</default> - <locale name="C"> - <short>default GStreamer video source</short> - <long>GStreamer can record video from any number of input elements. Some possible choices are v4lsrc and videotestsrc. The video source can be a partial pipeline instead of just one element.</long> - </locale> - </schema> - <schema> - <key>/schemas/system/gstreamer/@GST_MAJORMINOR@/default/visualization</key> - <applyto>/system/gstreamer/@GST_MAJORMINOR@/default/visualization</applyto> - <owner>gstreamer</owner> - <type>string</type> - <default>@DEFAULT_VISUALIZER@</default> - <locale name="C"> - <short>default GStreamer visualization plugin</short> - <long>GStreamer can put visualization plugins in a pipeline to transform audio stream in video frames. Default is goom but more visualization plugins will be ported soon. The visualization plugin can be a partial pipeline instead of just one element.</long> - </locale> - </schema> - </schemalist> -</gconfschemafile> |