I'm iterating over AVCapturePhotoSettings.availablePreviewPhotoPixelFormatTypes like this:
for av in availablePreviewPhotoPixelFormatTypes {
print("Avbl preview type: \(av)")
}
And I get non-descriptive numbers like:
Avbl preview type: 875704422
Avbl preview type: 875704438
Avbl preview type: 1111970369
What do these actually mean? What difference will it make if I choose one instead of another? Where can I find documentation about them?