summaryrefslogtreecommitdiffstats
path: root/DOCS/tech/colorspaces.txt
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-22 01:22:35 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-22 01:22:35 +0000
commit8a1d698bc250654c2bb13343e2e04b301b7694a1 (patch)
tree0193ed7d75e24934b496f35a738c737c5a2a3387 /DOCS/tech/colorspaces.txt
parent97bf286d2c1eed59ab7a01ed8df1a7ab07cdb10d (diff)
downloadmpv-8a1d698bc250654c2bb13343e2e04b301b7694a1.tar.bz2
mpv-8a1d698bc250654c2bb13343e2e04b301b7694a1.tar.xz
fixes
yuv411 added git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7834 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/tech/colorspaces.txt')
-rw-r--r--DOCS/tech/colorspaces.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/DOCS/tech/colorspaces.txt b/DOCS/tech/colorspaces.txt
index ea2398e5b5..266d63aab7 100644
--- a/DOCS/tech/colorspaces.txt
+++ b/DOCS/tech/colorspaces.txt
@@ -16,10 +16,11 @@ There are RGB and YUV colorspaces.
With YUV, they used to reduce the resolution of U,V planes:
The most common YUV formats:
fourcc: bpp: IEEE: plane sizes: (w=width h=height of original image)
-? 24 YUV 4:4:4 Y: w * h U,V: w * h
-YUY2,UYVY 16 YUV 4:2:2 Y: w * h U,V: (w/2) * h
-YV12,I420 12 YUV 4:2:0 Y: w * h U,V: (w/2) * (h/2)
-YVU9 9 YUV 4:1:1 Y: w * h U,V: (w/4) * (h/4)
+444P 24 YUV 4:4:4 Y: w * h U,V: w * h
+YUY2,UYVY 16 YUV 4:2:2 Y: w * h U,V: (w/2) * h [MJPEG]
+YV12,I420 12 YUV 4:2:0 Y: w * h U,V: (w/2) * (h/2) [MPEG, h263]
+411P 12 YUV 4:1:1 Y: w * h U,V: (w/4) * h [DV-NTSC, CYUV]
+YVU9,IF09 9 YUV 4:1:0 Y: w * h U,V: (w/4) * (h/4) [Sorenson, Indeo]
conversion: (some cut'n'paste from www and maillist)