ZLMediaKit/src/Extension/CommonRtp.h

67 lines
1.6 KiB
C++
Raw Normal View History

2020-08-01 10:24:28 +08:00
/*
2023-12-09 16:23:51 +08:00
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
2020-08-01 10:22:12 +08:00
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
2020-08-01 10:22:12 +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-08-01 10:22:12 +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_COMMONRTP_H
#define ZLMEDIAKIT_COMMONRTP_H
#include "Frame.h"
#include "Rtsp/RtpCodec.h"
namespace mediakit{
/**
* rtp解码类
*/
2021-02-05 11:51:16 +08:00
class CommonRtpDecoder : public RtpCodec {
2020-08-01 10:22:12 +08:00
public:
2022-12-02 14:43:06 +08:00
using Ptr = std::shared_ptr <CommonRtpDecoder>;
2020-08-01 10:22:12 +08:00
/**
*
* @param codec id
2020-09-06 17:50:24 +08:00
* @param max_frame_size
2020-08-01 10:22:12 +08:00
*/
2021-01-19 16:05:38 +08:00
CommonRtpDecoder(CodecId codec, size_t max_frame_size = 2 * 1024);
2020-08-01 10:22:12 +08:00
/**
* rtp并解码
* @param rtp rtp数据包
* @param key_pos false,
*/
bool inputRtp(const RtpPacket::Ptr &rtp, bool key_pos = false) override;
private:
void obtainFrame();
private:
2020-09-06 17:50:24 +08:00
bool _drop_flag = false;
uint16_t _last_seq = 0;
uint64_t _last_stamp = 0;
2021-01-19 16:05:38 +08:00
size_t _max_frame_size;
2020-08-01 10:22:12 +08:00
CodecId _codec;
FrameImp::Ptr _frame;
};
/**
* rtp编码类
*/
2023-12-09 16:23:51 +08:00
class CommonRtpEncoder : public RtpCodec {
2020-08-01 10:22:12 +08:00
public:
2022-12-02 14:43:06 +08:00
using Ptr = std::shared_ptr <CommonRtpEncoder>;
2020-08-01 10:22:12 +08:00
/**
* rtp
*/
bool inputFrame(const Frame::Ptr &frame) override;
2020-08-01 10:22:12 +08:00
};
}//namespace mediakit
#endif //ZLMEDIAKIT_COMMONRTP_H