ZLMediaKit/src/Extension/Opus.cpp

54 lines
1.5 KiB
C++
Raw Normal View History

/*
2023-12-09 16:23:51 +08:00
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
2020-05-12 11:48:15 +08:00
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
2020-05-12 11:48:15 +08:00
*
2023-12-09 16:23:51 +08:00
* Use of this source code is governed by MIT-like license that can be found in the
2020-05-12 11:48:15 +08:00
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
*/
#include "Opus.h"
using namespace std;
using namespace toolkit;
2020-05-12 11:48:15 +08:00
namespace mediakit{
2021-02-05 11:51:16 +08:00
/**
* Opus类型SDP
*/
class OpusSdp : public Sdp {
public:
/**
* opus sdp
2023-12-09 16:23:51 +08:00
* @param payload_type rtp payload type
2021-02-05 11:51:16 +08:00
* @param sample_rate
2023-12-09 16:23:51 +08:00
* @param channels
2021-02-05 11:51:16 +08:00
* @param bitrate
*/
2023-12-09 16:23:51 +08:00
OpusSdp(int payload_type, int sample_rate, int channels, int bitrate) : Sdp(sample_rate, payload_type) {
2021-02-05 11:51:16 +08:00
_printer << "m=audio 0 RTP/AVP " << payload_type << "\r\n";
if (bitrate) {
_printer << "b=AS:" << bitrate << "\r\n";
}
2023-12-09 16:23:51 +08:00
_printer << "a=rtpmap:" << payload_type << " " << getCodecName(CodecOpus) << "/" << sample_rate << "/" << channels << "\r\n";
2021-02-05 11:51:16 +08:00
}
string getSdp() const override {
return _printer;
}
private:
_StrPrinter _printer;
};
2023-12-09 16:23:51 +08:00
Sdp::Ptr OpusTrack::getSdp(uint8_t payload_type) const {
if (!ready()) {
2020-05-12 11:48:15 +08:00
WarnL << getCodecName() << " Track未准备好";
return nullptr;
}
2023-12-09 16:23:51 +08:00
return std::make_shared<OpusSdp>(payload_type, getAudioSampleRate(), getAudioChannel(), getBitRate() / 1024);
2020-05-12 11:48:15 +08:00
}
}//namespace mediakit