AvFoundation provides different image aspect ratios that one can use when displaying video.
For example:
- NSString *const AVCaptureSessionPreset320x240;
- NSString *const AVCaptureSessionPreset352x288;
- NSString *const AVCaptureSessionPreset640x480;
On the iPhone4 and iPad, these resolutions are designed to be full-screen. But on an iPhone 5 with a retina display, the iPhone display is taller.
How is one supposed to handle displaying the video feed coming out of AvFoundation? Any options other than having to choose a larger aspect ratio and crop it, scale the video (messing up its aspect ratio), or leave some empty screen real estate in our app?