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);

posted @ 2019-10-29 17:19  Lan_ht  阅读(4985)  评论(0编辑  收藏  举报