Interleaved: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m 1 revision
 
add additional interleaved colorspaces for avs+
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Interleaved image format is a format for storing images where all color components needed to represent a pixel are placed ''at the same place'' in memory. This is in contrast with how [[planar]] images are stored in memory.
Interleaved image format is a format for storing images where all color components needed to represent a pixel are placed ''at the same place'' in memory. This is in contrast with how [[planar]] images are stored in memory.


Some examples of interleaved image formats are [[RGB24]], [[RGB32]], [[YUY2]].
*Supported interleaved formats in AviSynth 2.5/2.6: [[RGB24]], [[RGB32]], [[YUY2]]
*Supported interleaved formats in AviSynth+: [[RGB24]], [[RGB32]], [[RGB48]], [[RGB64]], [[YUY2]]


----
----
Related links:
Related links:
* [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwmt/html/YUVFormats.asp YUV Formats]
* [http://www.fourcc.org/rgb.php RGB pixel formats]
* [http://www.fourcc.org/yuv.php#Packed%20YUV%20Formats Packed YUV Formats]
* [http://msdn.microsoft.com/en-us/library/windows/desktop/dd206750%28v=vs.85%29.aspx Recommended 8-Bit YUV Formats for Video Rendering] | [http://web.archive.org/web/20131206041437/http://msdn.microsoft.com/en-us/library/windows/desktop/dd206750%28v=vs.85%29.aspx archived]


[[Category:Glossary]]
[[Category:Glossary]]
[[Category:FilterSDK]]
[[Category:FilterSDK]]

Latest revision as of 06:48, 23 September 2021

Interleaved image format is a format for storing images where all color components needed to represent a pixel are placed at the same place in memory. This is in contrast with how planar images are stored in memory.


Related links: