Here\'s the code:
AVAssetExportSession *exporter = [[AVAssetExportSession alloc] initWithAsset:mixComposition presetName:AVAssetExportPresetHighestQuality];
a much nicer solution to get the multiple of 16 would be this approach:
floor(width / 16) * 16
or
ceil(width / 16) * 16
depending on your preference of having a smaller or bigger width