mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-06-14 12:05:58 +08:00
实现ps-rtp的发送 #366
This commit is contained in:
70
src/Rtp/PSEncoder.h
Normal file
70
src/Rtp/PSEncoder.h
Normal file
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
||||
*
|
||||
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
||||
*
|
||||
* Use of this source code is governed by MIT 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_PSENCODER_H
|
||||
#define ZLMEDIAKIT_PSENCODER_H
|
||||
#if defined(ENABLE_RTPPROXY)
|
||||
#include "mpeg-ps.h"
|
||||
#include "Common/MediaSink.h"
|
||||
#include "Common/Stamp.h"
|
||||
namespace mediakit{
|
||||
|
||||
//该类实现mpeg-ps容器格式的打包
|
||||
class PSEncoder : public MediaSinkInterface {
|
||||
public:
|
||||
PSEncoder();
|
||||
~PSEncoder() override;
|
||||
|
||||
/**
|
||||
* 添加音视频轨道
|
||||
*/
|
||||
void addTrack(const Track::Ptr &track) override;
|
||||
|
||||
/**
|
||||
* 重置音视频轨道
|
||||
*/
|
||||
void resetTracks() override;
|
||||
|
||||
/**
|
||||
* 输入帧数据
|
||||
*/
|
||||
void inputFrame(const Frame::Ptr &frame) override;
|
||||
|
||||
protected:
|
||||
/**
|
||||
* 输出mpeg-ps的回调函数
|
||||
* @param stamp 时间戳,毫秒
|
||||
* @param packet 数据指针
|
||||
* @param bytes 数据长度
|
||||
*/
|
||||
virtual void onPS(uint32_t stamp, void *packet, size_t bytes) = 0;
|
||||
|
||||
private:
|
||||
void init();
|
||||
//音视频时间戳同步用
|
||||
void stampSync();
|
||||
|
||||
private:
|
||||
struct track_info {
|
||||
int track_id = -1;
|
||||
Stamp stamp;
|
||||
};
|
||||
|
||||
private:
|
||||
uint32_t _timestamp = 0;
|
||||
BufferRaw::Ptr _buffer;
|
||||
List<Frame::Ptr> _frameCached;
|
||||
std::shared_ptr<struct ps_muxer_t> _muxer;
|
||||
unordered_map<int, track_info> _codec_to_trackid;
|
||||
};
|
||||
|
||||
}//namespace mediakit
|
||||
#endif //ENABLE_RTPPROXY
|
||||
#endif //ZLMEDIAKIT_PSENCODER_H
|
||||
Reference in New Issue
Block a user