mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
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 <steve@stevebaker.org>. * gst/gstelement.c: (gst_element_release_request_pad): If an element has no explicit function, just remove the pad.
This commit is contained in:
parent
d4fec072e7
commit
7c82638d25
4 changed files with 132 additions and 0 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue