docs/pwg/advanced-types.xml: Add MS RLE support. Also document Qt RLE although I have no sample files for that yet. A...

Original commit message from CVS:
* docs/pwg/advanced-types.xml:
Add MS RLE support. Also document Qt RLE although I have no sample
files for that yet. And document an extra property for ADPCM.
This commit is contained in:
Ronald S. Bultje 2004-04-16 00:48:14 +00:00
parent addcdee2d6
commit 56f7368c75
2 changed files with 52 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
* docs/pwg/advanced-types.xml:
Add MS RLE support. Also document Qt RLE although I have no sample
files for that yet. And document an extra property for ADPCM.
2004-04-15 David Schleef <ds@schleef.org>
* gst/gstplugin.c: (_gst_plugin_fault_handler_restore),

View file

@ -371,8 +371,8 @@ plugin_init (GstPlugin *plugin)
<!-- ############ type ############# -->
<row>
<entry>audio/x-adpcm</entry>
<entry>ADPCM Audio streams.</entry>
<entry morerows="1">audio/x-adpcm</entry>
<entry morerows="1">ADPCM Audio streams.</entry>
<entry>layout</entry>
<entry>string</entry>
<entry>
@ -387,6 +387,16 @@ plugin_init (GstPlugin *plugin)
and use something more descriptive, but this will do for now.
</entry>
</row>
<row>
<entry>block_align</entry>
<entry>integer</entry>
<entry>
Any
</entry>
<entry>
Chunk buffer size.
</entry>
</row>
<!-- ############ type ############# -->
@ -942,6 +952,40 @@ plugin_init (GstPlugin *plugin)
<!-- ############ type ############# -->
<row>
<entry morerows="2">video/x-rle</entry>
<entry morerows="2">RLE animation format.</entry>
<entry>layout</entry>
<entry>string</entry>
<entry>"microsoft" or "quicktime"</entry>
<entry>
The RLE format inside the Microsoft AVI container has a
different byte layout than the RLE format inside Apple's
Quicktime container; this property keeps track of the
layout.
</entry>
</row>
<row>
<entry>depth</entry>
<entry>integer</entry>
<entry>1 to 64</entry>
<entry>
Bitdepth of the used palette. This means that the palette
that belongs to this format defines 2^depth colors.
</entry>
</row>
<row>
<entry>palette_data</entry>
<entry>GstBuffer</entry>
<entry></entry>
<entry>
Buffer containing a color palette (in native-endian RGBA) used
by this format. The buffer is of size 4*2^depth.
</entry>
</row>
<!-- ############ type ############# -->
<row>
<entry>video/x-svq</entry>
<entry>Sorensen Video.</entry>