兼容安卓平台,to_string模板处理pt值

This commit is contained in:
gongluck 2022-08-18 19:13:22 +08:00 committed by GitHub
parent 30984d2076
commit 0764e48f6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -556,7 +556,7 @@ void SdpAttrRtpMap::parse(const string &str) {
string SdpAttrRtpMap::toString() const {
if (value.empty()) {
value = to_string(pt) + " " + codec + "/" + to_string(sample_rate);
value = to_string((int)pt) + " " + codec + "/" + to_string(sample_rate);
if (channel) {
value += '/';
value += to_string(channel);
@ -574,7 +574,7 @@ void SdpAttrRtcpFb::parse(const string &str_in) {
string SdpAttrRtcpFb::toString() const {
if (value.empty()) {
value = to_string(pt) + " " + rtcp_type;
value = to_string((int)pt) + " " + rtcp_type;
}
return SdpItem::toString();
}
@ -598,7 +598,7 @@ void SdpAttrFmtp::parse(const string &str) {
string SdpAttrFmtp::toString() const {
if (value.empty()) {
value = to_string(pt);
value = to_string((int)pt);
int i = 0;
for (auto &pr : fmtp) {
value += (i++ ? ';' : ' ');
@ -1070,7 +1070,7 @@ RtcSessionSdp::Ptr RtcSession::toRtcSessionSdp() const{
mline->port = m.port;
mline->proto = m.proto;
for (auto &p : m.plan) {
mline->fmts.emplace_back(to_string(p.pt));
mline->fmts.emplace_back(to_string((int)p.pt));
}
if (m.type == TrackApplication) {
mline->fmts.emplace_back("webrtc-datachannel");