Planar: Difference between revisions

From Avisynth wiki
Jump to navigationJump to search
m 1 revision
add some info/ fix link
Line 1: Line 1:
Planar image format is a format for storing images where each color component needed to represent a pixel is placed ''at a separate place'' (block) in memory. This is in contrast with how [[interleaved]] images are stored in memory.
Planar image format is a format for storing images where each color component needed to represent a pixel is placed ''at a separate place'' (block) in memory. This is in contrast with how [[interleaved]] images are stored in memory.


Some examples of planar image formats are [[YV12]], [[I420]].
*Supported planar formats in AviSynth 2.5: [[YV12]]
*Supported planar formats in AviSynth 2.6: [[Y8]], [[YV12]], [[YV16]], [[YV24]], [[YV411]]
 
Some examples of other planar formats: [[I420]] (same as YV12, but the chroma plane order is swapped).


----
----
Related links:
Related links:
* [http://www.fourcc.org/fccyuv.htm#Planar%20YUV%20Formats Planar YUV Formats]
* [http://www.fourcc.org/fccyuv.htm#Planar%20YUV%20Formats Planar YUV Formats]
* [http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwmt/html/YUVFormats.asp 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]]

Revision as of 06:18, 30 August 2014

Planar image format is a format for storing images where each color component needed to represent a pixel is placed at a separate place (block) in memory. This is in contrast with how interleaved images are stored in memory.

  • Supported planar formats in AviSynth 2.5: YV12
  • Supported planar formats in AviSynth 2.6: Y8, YV12, YV16, YV24, YV411

Some examples of other planar formats: I420 (same as YV12, but the chroma plane order is swapped).


Related links: