PlayStation MDEC Stream BS: Difference between revisions
Jump to navigation
Jump to search
imported>Ikskoks |
imported>Ikskoks |
||
| Line 10: | Line 10: | ||
<div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;"> | <div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;"> | ||
<pre> | <pre> | ||
// | // PS1 MDEC Stream | ||
// BS file format | |||
// litle endian | |||
//header | |||
2 bytes (uint16) - signature // 0x00 0x38 | |||
2 bytes (uint16) - data size of runlevel, not including header // e.g. 4 | |||
2 bytes (uint16) - version // 2 | |||
2 bytes (uint16) - quantization step | |||
// color difference block | |||
x bytes - Cb | |||
x bytes - Cr | |||
// luminance block | |||
x bytes - Y0 | |||
x bytes - Y1 | |||
x bytes - Y2 | |||
x bytes - Y3 | |||
</pre> | </pre> | ||
</div> | </div> | ||
Revision as of 07:44, 15 May 2021
Back to index | Edit this page
BS
- Format Type : Image / Video
- Endian Order : Little Endian
Format Specifications
// PS1 MDEC Stream // BS file format // litle endian //header 2 bytes (uint16) - signature // 0x00 0x38 2 bytes (uint16) - data size of runlevel, not including header // e.g. 4 2 bytes (uint16) - version // 2 2 bytes (uint16) - quantization step // color difference block x bytes - Cb x bytes - Cr // luminance block x bytes - Y0 x bytes - Y1 x bytes - Y2 x bytes - Y3
MultiEx BMS Script
Not written yet.
Notes and Comments
None.
Games
List of games using this file format:
- Parasite Eve 2
Compatible Programs
- FFmpeg
- movconv
See Also