Auravision: Difference between revisions

From MultimediaWiki
Jump to navigation Jump to search
(Meh, too easy)
mNo edit summary
Line 21: Line 21:
[[Category:Video Codecs]]
[[Category:Video Codecs]]
[[Category:Formats missing in FFmpeg]]
[[Category:Formats missing in FFmpeg]]
[[Category:Formats missing in MPlayer]]

Revision as of 06:22, 8 March 2009

According to various codec lists, AURA is a YUV 4:1:1 codec while AUR2 is YUV 4:2:2. The payload of an AURA frame begins with the 6 ASCII bytes 'YUV411'.

Auravision employs the same packing scheme as Creative YUV with the only difference: bytes 16-31 are Y predictor values and bytes 32-47 are predictor values for both U and V. Actual data is packed identically.

Auravision2 uses the same predictor value table at bytes 16-31 for all planes but packed pixel data still starts at byte 48. It's packed in the following order:

 high nibble of byte 0 - Cr value
 low  nibble of byte 0 - Y0 value
 high nibble of byte 1 - Cb value
 low  nibble of byte 1 - Y1 value
 high nibble of byte 2 - Cr value
 low  nibble of byte 2 - Y2 value
 ...