CMSampleBufferRef解析


CMTime:64位的value,32位的scale, media的时间格式
CMVideoFormatDesc:video的格式,包括宽高、颜色空间、编码格式、SPS、PPS
CVPixelBuffer:包含未压缩的像素格式,宽高
CMBlockBuffer:压缩的的图像数据
CMSampleBuffer:存放一个或多个压缩或未压缩的媒体文件

获取方式:

CVPixelBufferRef pixelbuffer = CMSampleBufferGetImageBuffer(sampleBuffer);

CMTime timeStamp = CMSampleBufferGetPresentationTimeStamp(samplebuffer);

CMBlockBufferRef blockBuffer = CMSampleBufferGetDataBuffer(sampleBuffer);

CMVideoFormatDescription description = CMSampleBufferGetFormatFormatDescription(sampleBuffer);

原文地址:https://www.cnblogs.com/Lanht/p/11760070.html