gpt4 book ai didi

macos - 为什么 CMSampleBufferGetImageBuffer 返回 NULL

转载 作者:行者123 更新时间:2023-12-04 13:11:35 24 4
gpt4 key购买 nike

我已经构建了一些代码来逐帧处理 OSX 上的视频文件。以下是代码的摘录,它构建 OK,打开文件,定位视频轨道(仅轨道)并开始读取 CMSampleBuffers 没有问题。但是,当我尝试提取像素缓冲区帧时,我获得的每个 CMSampleBufferRef 都返回 NULL。 iOS 文档中没有说明为什么我可以期望 NULL 返回值或我可以期望如何解决问题。无论捕获源或编解码器如何,我测试过的所有视频都会发生这种情况。

非常感谢任何帮助。

NSString *assetInPath = @"/Users/Dave/Movies/movie.mp4";
NSURL *assetInUrl = [NSURL fileURLWithPath:assetInPath];
AVAsset *assetIn = [AVAsset assetWithURL:assetInUrl];

NSError *error;
AVAssetReader *assetReader = [AVAssetReader assetReaderWithAsset:assetIn error:&error];
AVAssetTrack *track = [assetIn.tracks objectAtIndex:0];
AVAssetReaderOutput *assetReaderOutput = [[AVAssetReaderTrackOutput alloc]
initWithTrack:track
outputSettings:nil];
[assetReader addOutput:assetReaderOutput];

// Start reading
[assetReader startReading];

CMSampleBufferRef sampleBuffer;
do {
sampleBuffer = [assetReaderOutput copyNextSampleBuffer];

/**
** At this point, sampleBuffer is non-null, has all appropriate attributes to indicate that
** it's a video frame, 320x240 or whatever and looks perfectly fine. But the next
** line always returns NULL without logging any obvious error message
**/

CVImageBufferRef pixelBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);

if( pixelBuffer != NULL ) {
size_t width = CVPixelBufferGetWidth(pixelBuffer);
size_t height = CVPixelBufferGetHeight(pixelBuffer);
CVPixelBufferLockBaseAddress(pixelBuffer, 0);
...
other processing removed here for clarity
}
} while( ... );

需要明确的是,我已经删除了所有错误检查代码,但该代码中没有指出任何问题。即 AVAssetReader 正在读取,CMSampleBufferRef 看起来不错等。

最佳答案

您尚未指定任何 outputSettings创建您的 AVAssetReaderTrackOutput 时.我在指定“nil”以便在调用 copyNextSampleBuffer 时接收视频轨道的原始像素格式时遇到了您的问题。 .在我的应用程序中,我想确保在调用 copyNextSampleBuffer 时不会发生任何转换。为了性能,如果这对您来说不是大问题,请在输出设置中指定像素格式。

以下是苹果根据硬件能力推荐的像素格式:

kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange kCVPixelFormatType_420YpCbCr8BiPlanarFullRange

关于macos - 为什么 CMSampleBufferGetImageBuffer 返回 NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16861047/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com