docs/: by Steve Baker
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 17 Jan 2005 13:48:13 +0000 (13:48 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Mon, 17 Jan 2005 13:48:13 +0000 (13:48 +0000)
Original commit message from CVS:
* docs/pwg/advanced-types.xml:
* docs/random/mimetypes:
Add documentation on libsndfile types (#163309), by Steve Baker
<steve@stevebaker.org>.
* gst/gstelement.c: (gst_element_release_request_pad):
If an element has no explicit function, just remove the pad.

ChangeLog
docs/pwg/advanced-types.xml
docs/random/mimetypes
gst/gstelement.c

index e136f54..a6b8d7f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
+
+       * docs/pwg/advanced-types.xml:
+       * docs/random/mimetypes:
+         Add documentation on libsndfile types (#163309), by Steve Baker
+         <steve@stevebaker.org>.
+       * gst/gstelement.c: (gst_element_release_request_pad):
+         If an element has no explicit function, just remove the pad.
+
 2005-01-17  Luca Ognibene  <luogni@tin.it>
 
        Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
index 46c979d..40e9f88 100644 (file)
@@ -607,6 +607,91 @@ plugin_init (GstPlugin *plugin)
               The version of the WMA codec used to encode the stream.
             </entry>
           </row>
+
+          <!-- ############ type ############# -->
+
+          <row>
+            <entry>audio/x-paris</entry>
+            <entry>Ensoniq PARIS audio</entry>
+            <entry></entry>
+            <entry></entry>
+            <entry></entry>
+            <entry>
+              There are currently no specific properties defined or needed for
+              this type.
+            </entry>
+          </row>
+
+          <!-- ############ type ############# -->
+
+          <row>
+            <entry>audio/x-svx</entry>
+            <entry>Amiga IFF / SVX8 / SV16 audio</entry>
+            <entry></entry>
+            <entry></entry>
+            <entry></entry>
+            <entry>
+              There are currently no specific properties defined or needed for
+              this type.
+            </entry>
+          </row>
+
+          <!-- ############ type ############# -->
+
+          <row>
+            <entry>audio/x-nist</entry>
+            <entry>Sphere NIST audio</entry>
+            <entry></entry>
+            <entry></entry>
+            <entry></entry>
+            <entry>
+              There are currently no specific properties defined or needed for
+              this type.
+            </entry>
+          </row>
+
+          <!-- ############ type ############# -->
+
+          <row>
+            <entry>audio/x-voc</entry>
+            <entry>Sound Blaster VOC audio</entry>
+            <entry></entry>
+            <entry></entry>
+            <entry></entry>
+            <entry>
+              There are currently no specific properties defined or needed for
+              this type.
+            </entry>
+          </row>
+
+          <!-- ############ type ############# -->
+
+          <row>
+            <entry>audio/x-ircam</entry>
+            <entry>Berkeley/IRCAM/CARL audio</entry>
+            <entry></entry>
+            <entry></entry>
+            <entry></entry>
+            <entry>
+              There are currently no specific properties defined or needed for
+              this type.
+            </entry>
+          </row>
+
+          <!-- ############ type ############# -->
+
+          <row>
+            <entry>audio/x-w64</entry>
+            <entry>Sonic Foundry's 64 bit RIFF/WAV</entry>
+            <entry></entry>
+            <entry></entry>
+            <entry></entry>
+            <entry>
+              There are currently no specific properties defined or needed for
+              this type.
+            </entry>
+          </row>
+
         </tbody>
         </tgroup>
       </table>
index e0757de..800a132 100644 (file)
@@ -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
index 28f3b2c..9d11c02 100644 (file)
@@ -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);
 }
 
 /**