我正致力于将我们的应用程序从某些专有编解码器转移到iOS本机h264编码器(VideoToolbox.framework),并且有疑问:
是否存在为压缩数据设置比特率或数据速率的方法?
以下是我创建编码器会话的方法:
CFMutableDictionaryRef sessionAttributes = CFDictionaryCreateMutable(
NULL,
0,
&kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks);
//** bitrate
int fixedBitrate = bitrate; // 2000 * 1024 -> assume 2 Mbits/s
CFNumberRef bitrateNum = CFNumberCreate(NULL, kCFNumberSInt32Type, &fixedBitrate);
CFDictionarySetValue(sessionAttributes, kVTCompressionPropertyKey_AverageBitRate, bitrateNum);
CFRelease(bitrateNum);
CFDictionarySetValue(sessionAttributes, kVTCompressionPropertyKey_ProfileLevel, kVTProfileLevel_H264_High_AutoLevel);
CFDictionarySetValue(sessionAttributes, kVTCompressionPropertyKey_RealTime, kCFBooleanTrue);
OSStatus error = VTCompressionSessionCreate(kCFAllocatorDefault,
width,
height,
kCMVideoCodecType_H264,
sessionAttributes,
NULL,
kCFAllocatorDefault,
&EncoderCallback,
this, *outputCallbackRefCon,
&m_EncoderSession);
我使用kVTCompressionPropertyKey_AverageBitRate
的不同值玩了很多但是这对我没有任何作用,我也尝试kVTCompressionPropertyKey_DataRateLimits
使用不同的值,但也没有任何运气。
欢迎任何想法和建议
答案 0 :(得分:7)
简短的故事是,您需要在创建会话后使用VTSessionSetProperty
。
您传入的字典作为第五个参数实际上用于指定要使用的编码器而不是编码器设置。这有点令人困惑,但Apple文档指出:
在创建压缩时指定特定的视频编码器 会议,通过 encoderSpecification CFDictionary包含此键和EncoderID作为其值。 可以从kVTVideoEncoderList_EncoderID条目获得EncoderID CFString 在VTCopyVideoEncoderList返回的数组中。
使用kVTCompressionPropertyKey_AverageBitRate
功能创建会话后,您需要设置kVTCompressionPropertyKey_DataRateLimits
和VTSessionSetProperty
属性。
例如:
status = VTSessionSetProperty(session, kVTCompressionPropertyKey_AverageBitRate, (__bridge CFTypeRef)@(600 * 1024));
status = VTSessionSetProperty(session, kVTCompressionPropertyKey_DataRateLimits, (__bridge CFArrayRef)@[800 * 1024 / 8, 1]);
请记住,kVTCompressionPropertyKey_AverageBitRate
需要位,kVTCompressionPropertyKey_DataRateLimits
需要字节和秒。