我正在使用videotoolbox测试编码和解码,将捕获的帧转换为H264并使用该数据在AVSampleBufferdisplayLayer中显示它。
解压缩错误代码为-12712的CMVideoFormatDescriptionCreateFromH264ParameterSets时出现错误
我关注this code from mobisoftinfotech.com
status = CMVideoFormatDescriptionCreateFromH264ParameterSets(
kCFAlloc atorDefault, 2,
(const uint8_t const)parameterSetPointers,
parameterSetSizes, 4, &_formatDesc);
videoCompressionTest;任何人都可以找出问题吗?
答案 0 :(得分:1)
我不确定您是否确实找到了问题。但是,我在您的代码中发现2个导致错误的地方。修复它们并在本地运行测试应用程序后,它似乎运行良好。 (已通过Xcode 9.4.1,MacOS 10.13进行了测试)
第一个是在-(void)CompressAndConvertToData:(CMSampleBufferRef)sampleBuffer
方法中,而while循环应该像这样
while (bufferOffset < blockBufferLength - AVCCHeaderLength) {
// Read the NAL unit length
uint32_t NALUnitLength = 0;
memcpy(&NALUnitLength, bufferDataPointer + bufferOffset, AVCCHeaderLength);
// Convert the length value from Big-endian to Little-endian
NALUnitLength = CFSwapInt32BigToHost(NALUnitLength);
// Write start code to the elementary stream
[elementaryStream appendBytes:startCode length:startCodeLength];
// Write the NAL unit without the AVCC length header to the elementary stream
[elementaryStream appendBytes:bufferDataPointer + bufferOffset + AVCCHeaderLength
length:NALUnitLength];
// Move to the next NAL unit in the block buffer
bufferOffset += AVCCHeaderLength + NALUnitLength;
}
uint8_t *bytes = (uint8_t*)[elementaryStream bytes];
int size = (int)[elementaryStream length];
[self receivedRawVideoFrame:bytes withSize:size];
第二位是您要为NALU类型8(if(nalu_type == 8)
语句中的代码块)处理的解压缩代码。这是一个棘手的问题。
要对其进行修复,请更新
for (int i = _spsSize + 12; i < _spsSize + 50; i++)
到
for (int i = _spsSize + 12; i < _spsSize + 12 + 50; i++)
您可以自由删除此黑客
//was crashing here
if(_ppsSize == 0)
_ppsSize = 4;
为什么?让我们打印出帧包格式。
po frame
▿ 4282 elements
- 0 : 0
- 1 : 0
- 2 : 0
- 3 : 1
- 4 : 39
- 5 : 100
- 6 : 0
- 7 : 30
- 8 : 172
- 9 : 86
- 10 : 193
- 11 : 112
- 12 : 247
- 13 : 151
- 14 : 64
- 15 : 0
- 16 : 0
- 17 : 0
- 18 : 1
- 19 : 40
- 20 : 238
- 21 : 60
- 22 : 176
- 23 : 0
- 24 : 0
- 25 : 0
- 26 : 1
- 27 : 6
- 28 : 5
- 29 : 35
- 30 : 71
- 31 : 86
- 32 : 74
- 33 : 220
- 34 : 92
- 35 : 76
- 36 : 67
- 37 : 63
- 38 : 148
- 39 : 239
- 40 : 197
- 41 : 17
- 42 : 60
- 43 : 209
- 44 : 67
- 45 : 168
- 46 : 0
- 47 : 0
- 48 : 3
- 49 : 0
- 50 : 0
- 51 : 3
- 52 : 0
- 53 : 2
- 54 : 143
- 55 : 92
- 56 : 40
- 57 : 1
- 58 : 221
- 59 : 204
- 60 : 204
- 61 : 221
- 62 : 2
- 63 : 0
- 64 : 76
- 65 : 75
- 66 : 64
- 67 : 128
- 68 : 0
- 69 : 0
- 70 : 0
- 71 : 1
- 72 : 37
- 73 : 184
- 74 : 32
- 75 : 1
- 76 : 223
- 77 : 205
- 78 : 248
- 79 : 30
- 80 : 231
… more
第一个NALU起始代码if (nalu_type == 7)
从15到18的索引是0、0、0、1。下一个0、0、0、1(从23到26)是类型6,类型8 NALU起始代码是从68到71。这就是为什么我修改了for循环以从起始索引(_spsSize + 12)进行扫描,范围为50。
我尚未完全测试您的代码,以确保编码和解码工作正常。但是,希望这一发现对您有所帮助。 顺便说一句,如果有任何误解,我很乐意从您的评论中学习。