a-zlm/ext-codec/VP8Rtp.h

64 lines
1.5 KiB
C++
Raw Permalink Normal View History

2026-01-14 15:38:20 +08:00
/*
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
*
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
*
* 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_VP8RTPCODEC_H
#define ZLMEDIAKIT_VP8RTPCODEC_H
#include "VP8.h"
// for DtsGenerator
#include "Common/Stamp.h"
#include "Rtsp/RtpCodec.h"
namespace mediakit {
/**
* vp8 rtp解码类
* vp8 over rtsp-rtp VP8Frame
*/
class VP8RtpDecoder : public RtpCodec {
public:
using Ptr = std::shared_ptr<VP8RtpDecoder>;
VP8RtpDecoder();
/**
* vp8 rtp包
* @param rtp rtp包
* @param key_pos
*/
bool inputRtp(const RtpPacket::Ptr &rtp, bool key_pos = true) override;
private:
bool decodeRtp(const RtpPacket::Ptr &rtp);
void outputFrame(const RtpPacket::Ptr &rtp);
void obtainFrame();
private:
bool _gop_dropped = false;
bool _frame_drop = true;
uint16_t _last_seq = 0;
VP8Frame::Ptr _frame;
DtsGenerator _dts_generator;
};
/**
* vp8 rtp打包类
*/
class VP8RtpEncoder : public RtpCodec {
public:
using Ptr = std::shared_ptr<VP8RtpEncoder>;
bool inputFrame(const Frame::Ptr &frame) override;
};
}//namespace mediakit
#endif //ZLMEDIAKIT_VP8RTPCODEC_H