Skip to content

Instantly share code, notes, and snippets.

@codyopel
Last active December 9, 2015 05:57
Show Gist options
  • Save codyopel/c8ec671b42691b855236 to your computer and use it in GitHub Desktop.
Save codyopel/c8ec671b42691b855236 to your computer and use it in GitHub Desktop.
Video bpp
Bits Per Pixel at different Bits Per Channel Color & Chroma Subsamplings
  • 8bit 4:2:0
    (4 * 8) + (2 * 8) + (0 * 8) = 48
  • 8bit 4:2:2
    (4 * 8) + (2 * 8) + (2 * 8) = 64
  • 8bit 4:4:4
    (4 * 8) + (4 * 8) + (4 * 8) = 96
  • 10bit 4:2:0
    (4 * 10) + (2 * 10) + (0 * 10) = 60
  • 10bit 4:2:2
    (4 * 10) + (2 * 10) + (2 * 10) = 80
  • 10bit 4:4:4
    (4 * 10) + (4 * 10) + (4 * 10) = 120
  • 12bit 4:2:0
    (4 * 12) + (2 * 12) + (0 * 12) = 72
  • 12bit 4:2:2
    (4 * 12) + (2 * 12) + (2 * 12) = 96
  • 12bit 4:4:4
    (4 * 12) + (4 * 12) + (4 * 12) = 144
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment