From 7c82638d25bb2d59ed7eede5dbb7c3bad62a6e14 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Mon, 17 Jan 2005 13:48:13 +0000 Subject: [PATCH] docs/: by Steve Baker Original commit message from CVS: * docs/pwg/advanced-types.xml: * docs/random/mimetypes: Add documentation on libsndfile types (#163309), by Steve Baker . * gst/gstelement.c: (gst_element_release_request_pad): If an element has no explicit function, just remove the pad. --- ChangeLog | 9 +++++ docs/pwg/advanced-types.xml | 85 +++++++++++++++++++++++++++++++++++++++++++++ docs/random/mimetypes | 36 +++++++++++++++++++ gst/gstelement.c | 2 ++ 4 files changed, 132 insertions(+) diff --git a/ChangeLog b/ChangeLog index e136f54..a6b8d7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2005-01-17 Ronald S. Bultje + + * docs/pwg/advanced-types.xml: + * docs/random/mimetypes: + Add documentation on libsndfile types (#163309), by Steve Baker + . + * gst/gstelement.c: (gst_element_release_request_pad): + If an element has no explicit function, just remove the pad. + 2005-01-17 Luca Ognibene Reviewed by: Ronald S. Bultje diff --git a/docs/pwg/advanced-types.xml b/docs/pwg/advanced-types.xml index 46c979d..40e9f88 100644 --- a/docs/pwg/advanced-types.xml +++ b/docs/pwg/advanced-types.xml @@ -607,6 +607,91 @@ plugin_init (GstPlugin *plugin) The version of the WMA codec used to encode the stream. + + + + + audio/x-paris + Ensoniq PARIS audio + + + + + There are currently no specific properties defined or needed for + this type. + + + + + + + audio/x-svx + Amiga IFF / SVX8 / SV16 audio + + + + + There are currently no specific properties defined or needed for + this type. + + + + + + + audio/x-nist + Sphere NIST audio + + + + + There are currently no specific properties defined or needed for + this type. + + + + + + + audio/x-voc + Sound Blaster VOC audio + + + + + There are currently no specific properties defined or needed for + this type. + + + + + + + audio/x-ircam + Berkeley/IRCAM/CARL audio + + + + + There are currently no specific properties defined or needed for + this type. + + + + + + + audio/x-w64 + Sonic Foundry's 64 bit RIFF/WAV + + + + + There are currently no specific properties defined or needed for + this type. + + + diff --git a/docs/random/mimetypes b/docs/random/mimetypes index e0757de..800a132 100644 --- a/docs/random/mimetypes +++ b/docs/random/mimetypes @@ -454,6 +454,42 @@ channels = 1 - MAXINT (INT, number of audio channels) Encoder: Decoder: +17 - Ensoniq PARIS audio + MIME type: audio/x-paris + Properties: + Encoder: + Decoder: + +18 - Amiga IFF / SVX8 / SV16 audio + MIME type: audio/x-svx + Properties: + Encoder: + Decoder: + +19 - Sphere NIST audio + MIME type: audio/x-nist + Properties: + Encoder: + Decoder: + +20 - Sound Blaster VOC audio + MIME type: audio/x-voc + Properties: + Encoder: + Decoder: + +21 - Berkeley/IRCAM/CARL audio + MIME type: audio/x-ircam + Properties: + Encoder: + Decoder: + +22 - Sonic Foundry's 64 bit RIFF/WAV + MIME type: audio/x-w64 + Properties: + Encoder: + Decoder: + TODO: adpcm/dv needs confirmation from someone with knowledge... Raw formats diff --git a/gst/gstelement.c b/gst/gstelement.c index 28f3b2c..9d11c02 100644 --- a/gst/gstelement.c +++ b/gst/gstelement.c @@ -701,6 +701,8 @@ gst_element_release_request_pad (GstElement * element, GstPad * pad) if (oclass->release_pad) (oclass->release_pad) (element, pad); + else + gst_element_remove_pad (element, pad); } /** -- 2.7.4