codec_properties.ml
ffmpeg-avcodec
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 type t = [ | `Intra_only | `Lossy | `Lossless | `Reorder | `Bitmap_sub | `Text_sub ] let t: t list = [ `Text_sub; `Bitmap_sub; `Reorder; `Lossless; `Lossy; `Intra_only; ]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
type t = [ | `Intra_only | `Lossy | `Lossless | `Reorder | `Bitmap_sub | `Text_sub ] let t: t list = [ `Text_sub; `Bitmap_sub; `Reorder; `Lossless; `Lossy; `Intra_only; ]