
20 Sep
2005
20 Sep
'05
11:07 a.m.
"Kevin Wheatley" <hxpro@cinesite.co.uk> wrote in message news:432FD45A.33E8E799@cinesite.co.uk...
Adam Badura wrote:
struct yuv_422 { unsigned char y : 4; unsigned char u : 2; unsigned char v : 2; };
hmm this is not at all what I would call 422, so be wary of using that term in conjunction with YUV, nor 8888. Normally this means that the u and v planes are sampled at a reduced rate see http://en.wikipedia.org/wiki/YUV_4:2:2 for example
OK. I meant only number of bits for each component and this was the simplest name I thought of. Adam Badura