3

我一直在努力弄清楚我的代码有什么问题。我正在创建一个平面CVPixelBufferRef来写入AVAssetWriter. 这个像素缓冲区是通过其他一些过程手动创建的(即,我没有从相机或类似的东西中获取这些样本)。在 iOS 模拟器上,添加样本和创建有效的输出影片没有问题。

但是在设备上,它在第一个示例时立即失败,并提供了一些无用的错误信息:

AVAssetWriterError: Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo={NSUnderlyingError=0x12fd2c670 {Error Domain=NSOSStatusErrorDomain Code=-12780 "(null)"}, NSLocalizedFailureReason=An unknown error occurred (-12780), NSLocalizedDescription=The operation could not be completed}

我对像素格式非常陌生,如果我以某种方式创建了无效的像素缓冲区,我不会感到惊讶,但它在模拟器(即 OS X)上运行良好的事实让我感到困惑。

这是我的代码:

const int pixelBufferWidth = img->get_width();
const int pixelBufferHeight = img->get_height();

size_t planeWidths[3];
size_t planeHeights[3];
size_t planeBytesPerRow[3];
void* planeBaseAddresses[3];

for (int c=0;c<3;c++) {
  int stride;
  const uint8_t* p = de265_get_image_plane(img, c, &stride);

  int width = de265_get_image_width(img,c);
  int height = de265_get_image_height(img, c);

  planeWidths[c] = width;
  planeHeights[c] = height;
  planeBytesPerRow[c] = stride;

  planeBaseAddresses[c] = const_cast<uint8_t*>(p);
}

void* descriptor = calloc(1, sizeof(CVPlanarPixelBufferInfo_YCbCrPlanar));
CVPixelBufferRef pixelBufferRef;
CVReturn result = CVPixelBufferCreateWithPlanarBytes(NULL,
                                                     pixelBufferWidth,
                                                     pixelBufferHeight,
                                                     kCVPixelFormatType_420YpCbCr8Planar,
                                                     NULL,
                                                     0,
                                                     3,
                                                     planeBaseAddresses,
                                                     planeWidths,
                                                     planeHeights,
                                                     planeBytesPerRow,
                                                     &pixelBufferReleaseCallback,
                                                     NULL,
                                                     NULL,
                                                     &pixelBufferRef);


CMFormatDescriptionRef formatDescription = NULL;
CMVideoFormatDescriptionCreateForImageBuffer(NULL, pixelBufferRef, &formatDescription);

if (assetWriter == nil) {
  // ... create output file path in Caches directory

  assetWriter = [AVAssetWriter assetWriterWithURL:fileOutputURL fileType:AVFileTypeMPEG4 error:nil];

  NSDictionary *videoSettings = @{AVVideoCodecKey : AVVideoCodecH264,
                                  AVVideoWidthKey : @(pixelBufferWidth),
                                  AVVideoHeightKey : @(pixelBufferHeight),
                                  AVVideoCompressionPropertiesKey : @{AVVideoMaxKeyFrameIntervalKey : @1}};

  assetWriterInput = [AVAssetWriterInput assetWriterInputWithMediaType:AVMediaTypeVideo outputSettings:videoSettings sourceFormatHint:formatDescription];
  [assetWriter addInput:assetWriterInput];

  NSDictionary *pixelBufferAttributes = @{(id)kCVPixelBufferPixelFormatTypeKey : @(kCVPixelFormatType_420YpCbCr8Planar),
                                          (id)kCVPixelBufferWidthKey : @(pixelBufferWidth),
                                          (id)kCVPixelBufferHeightKey : @(pixelBufferHeight)};

  pixelBufferAdaptor = [AVAssetWriterInputPixelBufferAdaptor assetWriterInputPixelBufferAdaptorWithAssetWriterInput:assetWriterInput sourcePixelBufferAttributes:pixelBufferAttributes];

  [assetWriter startWriting];
  [assetWriter startSessionAtSourceTime:kCMTimeZero];
}

samplePresentationTime = CMTimeMake(frameIndex++, framesPerSecond);

BOOL success = [pixelBufferAdaptor appendPixelBuffer:pixelBufferRef withPresentationTime:samplePresentationTime];

success总是NO,并且资产编写器的错误是我在上面粘贴的。

我还尝试手动创建样本缓冲区,而不是AVAssetWriterInputPixelBufferAdaptor仅仅使用它来消除可能的问题,但结果是相同的。

同样,这确实适用于模拟器,所以我知道我的像素缓冲区确实包含正确的数据。

另外,我验证了我可以写入文件目标。我尝试在该位置创建一个虚拟文件,它成功了。

我想避免将我的缓冲区转换为 RGB,因为我不应该这样做。我一开始就有 Y'CbCr 缓冲区,我只想将它们编码为支持 Y'CbCr 的 H.264 视频。

创建这些缓冲区的源声明如下:

The image is currently always 3-channel YCbCr, with 4:2:0 chroma.

我确认它总是进入处理 8 位 YUV 通道的循环逻辑。

我究竟做错了什么?

4

1 回答 1

2

因此,我无法正式确认这一点,但它似乎AVAssetWriter不喜欢kCVPixelFormatType_420YpCbCr8PlanariOS 上的 3 平面像素格式(即 )。在 OS X 上,它似乎可以与几乎任何东西一起使用。当我将我的 3 平面缓冲区转换为双平面像素缓冲区格式时,这适用于 iOS。这并不奇怪,因为相机本身以kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange像素格式捕获,因此 AV Foundation 可能也可以使用该格式。

尽管如此,如果我不必自己执行此显式转换步骤会很好,尽管vImageConvert_PlanarToChunky8有助于将 Cb 和 Cr 平面交错成一个平面。

于 2015-12-08T00:21:57.987 回答