2022-04-03 18:38:07 +08:00
|
|
|
|
/*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
|
2022-04-01 18:28:09 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
2022-04-01 18:28:09 +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
|
2022-04-01 18:28:09 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef ZLMEDIAKIT_RAWENCODER_H
|
|
|
|
|
#define ZLMEDIAKIT_RAWENCODER_H
|
|
|
|
|
|
|
|
|
|
#if defined(ENABLE_RTPPROXY)
|
|
|
|
|
|
|
|
|
|
#include "Common/MediaSink.h"
|
2022-12-02 14:43:06 +08:00
|
|
|
|
#include "Rtsp/RtpCodec.h"
|
2022-04-01 18:28:09 +08:00
|
|
|
|
|
2022-08-05 17:36:51 +08:00
|
|
|
|
namespace mediakit {
|
2022-12-02 14:43:06 +08:00
|
|
|
|
|
2022-08-05 17:36:51 +08:00
|
|
|
|
class RawEncoderImp : public MediaSinkInterface {
|
2022-04-01 18:28:09 +08:00
|
|
|
|
public:
|
2022-08-05 17:36:51 +08:00
|
|
|
|
RawEncoderImp(uint32_t ssrc, uint8_t payload_type = 96, bool send_audio = true);
|
2022-04-01 18:28:09 +08:00
|
|
|
|
~RawEncoderImp() override;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 添加音视频轨道
|
|
|
|
|
*/
|
|
|
|
|
bool addTrack(const Track::Ptr &track) override;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 重置音视频轨道
|
|
|
|
|
*/
|
|
|
|
|
void resetTracks() override;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 输入帧数据
|
|
|
|
|
*/
|
|
|
|
|
bool inputFrame(const Frame::Ptr &frame) override;
|
|
|
|
|
|
|
|
|
|
protected:
|
2022-08-05 17:36:51 +08:00
|
|
|
|
// rtp打包后回调
|
2022-07-09 22:30:43 +08:00
|
|
|
|
virtual void onRTP(toolkit::Buffer::Ptr rtp, bool is_key = false) = 0;
|
2022-08-05 17:36:51 +08:00
|
|
|
|
|
2022-04-01 18:28:09 +08:00
|
|
|
|
private:
|
2022-11-29 11:07:13 +08:00
|
|
|
|
std::shared_ptr<RtpCodec> createRtpEncoder(const Track::Ptr &track);
|
2022-08-05 17:36:51 +08:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool _send_audio;
|
2022-04-01 18:28:09 +08:00
|
|
|
|
uint8_t _payload_type;
|
2022-08-05 17:36:51 +08:00
|
|
|
|
uint32_t _ssrc;
|
2022-12-02 14:43:06 +08:00
|
|
|
|
RtpCodec::Ptr _rtp_encoder;
|
2022-04-01 18:28:09 +08:00
|
|
|
|
};
|
|
|
|
|
|
2022-08-05 17:36:51 +08:00
|
|
|
|
} // namespace mediakit
|
2022-04-01 18:28:09 +08:00
|
|
|
|
|
2022-08-05 17:36:51 +08:00
|
|
|
|
#endif // ENABLE_RTPPROXY
|
|
|
|
|
#endif // ZLMEDIAKIT_RAWENCODER_H
|