データからCMSampleBufferRefを作成し、それをAVAssetWriterにフィードしようとしています。しかし、アセットライターはデータから映画を作成できていません。以下は、CMSampleBufferRefを作成するためのコードです。
CVImageBufferRef cvimgRef = CMSampleBufferGetImageBuffer(sampleBuffer);
CVPixelBufferLockBaseAddress(cvimgRef,0);
uint8_t *buf=(uint8_t *)CVPixelBufferGetBaseAddress(cvimgRef);
int width = 480;
int height = 360;
int bitmapBytesPerRow = width*4;
int bitmapByteCount = bitmapBytesPerRow*height;
CVPixelBufferRef pixelBufRef = NULL;
CMSampleBufferRef newSampleBuffer = NULL;
CMSampleTimingInfo timimgInfo = kCMTimingInfoInvalid;
CMSampleBufferGetSampleTimingInfo(sampleBuffer, 0, &timimgInfo);
OSStatus result = 0;
OSType pixFmt = CVPixelBufferGetPixelFormatType(cvimgRef);
CVPixelBufferCreateWithBytes(kCFAllocatorDefault, width, height, pixFmt, buf, bitmapBytesPerRow, NULL, NULL, NULL, &pixelBufRef);
CMVideoFormatDescriptionRef videoInfo = NULL;
result = CMVideoFormatDescriptionCreateForImageBuffer(NULL, pixelBufRef, &videoInfo);
CMSampleBufferCreateForImageBuffer(kCFAllocatorDefault, pixelBufRef, true, NULL, NULL, videoInfo, &timimgInfo, &newSampleBuffer);
AVFoundationデータ出力コールバックメソッドから取得した元のCMSampleBufferRefを使用すると、ムービーの作成は正常に機能します。
しかし、カスタムCMSampleBufferRefを使用してムービーを作成しようとすると、同じことが失敗します。アセットライターは次のエラーをスローします。
The operation couldn’t be completed. (AVFoundationErrorDomain error -11800.)
この問題の解決にご協力ください。