From 51db8f1fe22c6b419dc63eb05e4386345447664b Mon Sep 17 00:00:00 2001 From: David Schleef Date: Thu, 15 Jan 2004 21:05:17 +0000 Subject: ext/esd/esdsink.c: Remove property that handles osssink fallback. Original commit message from CVS: * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property that handles osssink fallback. * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init), (gst_audio_convert_getcaps): * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps): Add audio/x-qdm2 for QDM2 audio. * gst/sine/gstsinesrc.c: (gst_sinesrc_get): * gst/sine/gstsinesrc.h: Add example of how to implement tags. * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps): Decrease minimum size to 16x16. * gst/wavparse/gstwavparse.c: Convert disabled pad template caps to new caps. * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get), (gst_xvimagesink_chain): Throw element error when display cannot be opened. Increase minimum framerate to 1.0. Check the data free function on a buffer to make sure it is the type we expect before manipulating it. --- ext/esd/esdsink.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ext') diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c index 1ea55453..f02d3875 100644 --- a/ext/esd/esdsink.c +++ b/ext/esd/esdsink.c @@ -143,9 +143,12 @@ gst_esdsink_class_init (gpointer g_class, gpointer class_data) g_object_class_install_property(gobject_class, ARG_SYNC, g_param_spec_boolean("sync","sync","Synchronize output to clock", FALSE,G_PARAM_READWRITE)); +#if 0 + /* This option is disabled because it is dumb in GStreamer's architecture. */ g_object_class_install_property(gobject_class, ARG_FALLBACK, g_param_spec_boolean("fallback","fallback","Fall back to using OSS if Esound daemon is not present", FALSE,G_PARAM_READWRITE)); +#endif gobject_class->set_property = gst_esdsink_set_property; gobject_class->get_property = gst_esdsink_get_property; -- cgit