mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-05-07 20:12:28 +00:00
14 lines
254 B
Swift
14 lines
254 B
Swift
import HaishinKit
|
|
import libdatachannel
|
|
|
|
extension VideoCodecSettings.Format {
|
|
var cValue: rtcCodec {
|
|
switch self {
|
|
case .h264:
|
|
return RTC_CODEC_H264
|
|
case .hevc:
|
|
return RTC_CODEC_H265
|
|
}
|
|
}
|
|
}
|