changeset 7833:0aebf17f33ed

fixes yuv411 added
author arpi
date Tue, 22 Oct 2002 01:22:35 +0000
parents 176891e5511e
children 830f10ad97ac
files DOCS/tech/colorspaces.txt
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/DOCS/tech/colorspaces.txt	Tue Oct 22 01:07:08 2002 +0000
+++ b/DOCS/tech/colorspaces.txt	Tue Oct 22 01:22:35 2002 +0000
@@ -16,10 +16,11 @@
 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)