Winnow Video

From MultimediaWiki
Revision as of 16:39, 21 January 2006 by DonDiego (talk | contribs) (spelling/grammar/links)
Jump to navigation Jump to search

Another hardware codec like ATI VCR1, Indeo 2 or Video XL. It uses YUYV format and stores deltas with static code.

Codes used really are simple unary codes with following sign bit and 11111111 code used as escape.

Each component may be decoded this way:

 code = get_code();
 if(code == ESCAPE)
   newval = code;
 else
   newval = oldval + (code << SHIFT);

SHIFT = 6 (may be another, but no samples with another value are known), ESCAPE = 15 (code for ESCAPE is mentioned above)