ZLMediaKit/src/Rtp/RawEncoder.h

59 lines
1.4 KiB
C++
Raw Normal View History

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.
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
*
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
* 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"
namespace mediakit {
2022-12-02 14:43:06 +08:00
class RawEncoderImp : public MediaSinkInterface {
public:
RawEncoderImp(uint32_t ssrc, uint8_t payload_type = 96, bool send_audio = true);
~RawEncoderImp() override;
/**
*
*/
bool addTrack(const Track::Ptr &track) override;
/**
*
*/
void resetTracks() override;
/**
*
*/
bool inputFrame(const Frame::Ptr &frame) override;
protected:
// rtp打包后回调
virtual void onRTP(toolkit::Buffer::Ptr rtp, bool is_key = false) = 0;
private:
std::shared_ptr<RtpCodec> createRtpEncoder(const Track::Ptr &track);
private:
bool _send_audio;
uint8_t _payload_type;
uint32_t _ssrc;
2022-12-02 14:43:06 +08:00
RtpCodec::Ptr _rtp_encoder;
};
} // namespace mediakit
#endif // ENABLE_RTPPROXY
#endif // ZLMEDIAKIT_RAWENCODER_H