NW7/Codabar type Barcode Reading Using AVFoundation in iOS 16

We are using AVFoundation to create a Barcode/Qrcode reader.In there we created a Qr/Barcode detection square area to show in the middle of the ipad/iphone screen with red color boarder and we were able to read below types Barcode/Qrcode in ios 15.4 within that detection area. Below are the barcode types that we read.

private let supportedCodeTypes = [
AVMetadataObject.ObjectType.codabar,                                                 AVMetadataObject.ObjectType.qr,                                               AVMetadataObject.ObjectType.upce, 
AVMetadataObject.ObjectType.code39Mod43,                                               AVMetadataObject.ObjectType.code39,                                                 AVMetadataObject.ObjectType.code93,
AVMetadataObject.ObjectType.code128,
AVMetadataObject.ObjectType.ean8,
AVMetadataObject.ObjectType.ean13,
AVMetadataObject.ObjectType.aztec, AVMetadataObject.ObjectType.pdf417,                                                AVMetadataObject.ObjectType.itf14,
AVMetadataObject.ObjectType.dataMatrix,
AVMetadataObject.ObjectType.interleaved2of5]

But when we update our source to iOS 16, only "AVMetadataObject.ObjectType.codabar" type barcode cannot read inside the detection area. All other barcode can be detect and read inside detection area. if we expand detection area to full screen "AVMetadataObject.ObjectType.codabar" can be readed.

So is there a specific reason for this scenario or is it a problem comes with iOS 16?

NW7/Codabar type Barcode Reading Using AVFoundation in iOS 16
 
 
Q