ZLMediaKit/ext-codec/Opus.cpp

102 lines
2.9 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"
2023-12-10 10:21:40 +08:00
#include "Extension/Factory.h"
#include "Extension/CommonRtp.h"
#include "Extension/CommonRtmp.h"
2020-05-12 11:48:15 +08:00
using namespace std;
using namespace toolkit;
2023-12-10 10:21:40 +08:00
namespace mediakit {
2020-05-12 11:48:15 +08:00
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
}
2023-12-10 10:21:40 +08:00
namespace {
CodecId getCodec() {
return CodecOpus;
}
Track::Ptr getTrackByCodecId(int sample_rate, int channels, int sample_bit) {
return std::make_shared<OpusTrack>();
}
Track::Ptr getTrackBySdp(const SdpTrack::Ptr &track) {
return std::make_shared<OpusTrack>();
}
RtpCodec::Ptr getRtpEncoderByCodecId(uint8_t pt) {
return std::make_shared<CommonRtpEncoder>();
}
RtpCodec::Ptr getRtpDecoderByCodecId() {
return std::make_shared<CommonRtpDecoder>(CodecOpus);
}
RtmpCodec::Ptr getRtmpEncoderByTrack(const Track::Ptr &track) {
return std::make_shared<CommonRtmpEncoder>(track);
}
RtmpCodec::Ptr getRtmpDecoderByTrack(const Track::Ptr &track) {
return std::make_shared<CommonRtmpDecoder>(track);
}
Frame::Ptr getFrameFromPtr(const char *data, size_t bytes, uint64_t dts, uint64_t pts) {
return std::make_shared<FrameFromPtr>(CodecOpus, (char *)data, bytes, dts, pts);
}
} // namespace
CodecPlugin opus_plugin = { getCodec,
getTrackByCodecId,
getTrackBySdp,
getRtpEncoderByCodecId,
getRtpDecoderByCodecId,
getRtmpEncoderByTrack,
getRtmpDecoderByTrack,
getFrameFromPtr };
2020-05-12 11:48:15 +08:00
}//namespace mediakit