1
我玩弄從蘋果公司的網站(Xcode項目)的AVScreenShack例如捕捉桌面,並顯示在準實時的窗口捕獲。CMSampleBuffer參考位圖?
我已經修改了項目一點點,插入這行代碼:
-(void)captureOutput:(AVCaptureOutput*) captureOutput didOutputSampleBuffer:(CMSampleBufferRef) sampleBuffer fromConnection:(AVCaptureConnection*) connection
{
...
}
我的問題是:如何將CMSampleBufferRef實例轉換CGImageRef?
謝謝。