2015-12-29 53 views
0

enter image description here銀行代碼錯誤:CMVideoFormatDescriptionGetCleanAperture

let fdesc : CMFormatDescriptionRef = CMSampleBufferGetFormatDescription(sampleBuffer)! 

let clap : CGRect = CMVideoFormatDescriptionGetCleanAperture(fdesc, false) 


Error: cannot invoke 'CMVideoFormatDescriptionGetCleanAperture' with an argument list of type '(CMFormatDescriptionRef, Bool)' 
+1

該代碼在編譯時沒有問題,在我的Xcode 7.2。 –

回答

0

嘗試let fdesc: CMFormatDescription = …

+1

在Swift中,CMFormatDescriptionRef是CMFormatDescription的一個類型別名,所以我懷疑這會有什麼區別。你*試過嗎? –

+0

@MartinR是的,我試過,但它仍然顯示錯誤。 – Vivek