package mm

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type rgb_format =
  1. | RGB24
  2. | BGR24
  3. | RGB32
  4. | BGR32
  5. | RGBA32
type yuv_format =
  1. | YUV422
  2. | YUV444
  3. | YUV411
  4. | YUV410
  5. | YUVJ420
  6. | YUVJ422
  7. | YUVJ444
type format =
  1. | RGB of rgb_format
  2. | YUV of yuv_format
val size : format -> int
val string_of_format : format -> string