mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
rtp代理防止时间戳回环
This commit is contained in:
parent
fbf0f63503
commit
bd8a9a78e8
@ -183,6 +183,9 @@ void RtpProcess::onPSDecode(int stream,
|
|||||||
int64_t dts,
|
int64_t dts,
|
||||||
const void *data,
|
const void *data,
|
||||||
int bytes) {
|
int bytes) {
|
||||||
|
pts /= 90;
|
||||||
|
dts /= 90;
|
||||||
|
_stamps[codecid].revise(dts,pts,dts,pts,false);
|
||||||
|
|
||||||
switch (codecid) {
|
switch (codecid) {
|
||||||
case STREAM_VIDEO_H264: {
|
case STREAM_VIDEO_H264: {
|
||||||
@ -202,7 +205,7 @@ void RtpProcess::onPSDecode(int stream,
|
|||||||
if(_save_file_video){
|
if(_save_file_video){
|
||||||
fwrite((uint8_t *)data,bytes, 1, _save_file_video.get());
|
fwrite((uint8_t *)data,bytes, 1, _save_file_video.get());
|
||||||
}
|
}
|
||||||
auto frame = std::make_shared<H264FrameNoCacheAble>((char *) data, bytes, dts / 90, pts / 90,0);
|
auto frame = std::make_shared<H264FrameNoCacheAble>((char *) data, bytes, dts, pts,0);
|
||||||
_merger->inputFrame(frame,[this](uint32_t dts, uint32_t pts, const Buffer::Ptr &buffer) {
|
_merger->inputFrame(frame,[this](uint32_t dts, uint32_t pts, const Buffer::Ptr &buffer) {
|
||||||
_muxer->inputFrame(std::make_shared<H264FrameNoCacheAble>(buffer->data(), buffer->size(), dts, pts,4));
|
_muxer->inputFrame(std::make_shared<H264FrameNoCacheAble>(buffer->data(), buffer->size(), dts, pts,4));
|
||||||
});
|
});
|
||||||
@ -224,7 +227,7 @@ void RtpProcess::onPSDecode(int stream,
|
|||||||
if(_save_file_video){
|
if(_save_file_video){
|
||||||
fwrite((uint8_t *)data,bytes, 1, _save_file_video.get());
|
fwrite((uint8_t *)data,bytes, 1, _save_file_video.get());
|
||||||
}
|
}
|
||||||
auto frame = std::make_shared<H265FrameNoCacheAble>((char *) data, bytes, dts / 90, pts / 90, 0);
|
auto frame = std::make_shared<H265FrameNoCacheAble>((char *) data, bytes, dts, pts, 0);
|
||||||
_merger->inputFrame(frame,[this](uint32_t dts, uint32_t pts, const Buffer::Ptr &buffer) {
|
_merger->inputFrame(frame,[this](uint32_t dts, uint32_t pts, const Buffer::Ptr &buffer) {
|
||||||
_muxer->inputFrame(std::make_shared<H265FrameNoCacheAble>(buffer->data(), buffer->size(), dts, pts, 4));
|
_muxer->inputFrame(std::make_shared<H265FrameNoCacheAble>(buffer->data(), buffer->size(), dts, pts, 4));
|
||||||
});
|
});
|
||||||
@ -244,7 +247,7 @@ void RtpProcess::onPSDecode(int stream,
|
|||||||
WarnL << "audio track change to AAC from codecid:" << _codecid_audio;
|
WarnL << "audio track change to AAC from codecid:" << _codecid_audio;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_muxer->inputFrame(std::make_shared<AACFrameNoCacheAble>((char *) data, bytes, dts / 90, 7));
|
_muxer->inputFrame(std::make_shared<AACFrameNoCacheAble>((char *) data, bytes, dts, 7));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
#include "RtpDecoder.h"
|
#include "RtpDecoder.h"
|
||||||
#include "PSDecoder.h"
|
#include "PSDecoder.h"
|
||||||
#include "Common/Device.h"
|
#include "Common/Device.h"
|
||||||
|
#include "Common/Stamp.h"
|
||||||
using namespace mediakit;
|
using namespace mediakit;
|
||||||
|
|
||||||
namespace mediakit{
|
namespace mediakit{
|
||||||
@ -72,6 +73,7 @@ private:
|
|||||||
MultiMediaSourceMuxer::Ptr _muxer;
|
MultiMediaSourceMuxer::Ptr _muxer;
|
||||||
std::shared_ptr<FrameMerger> _merger;
|
std::shared_ptr<FrameMerger> _merger;
|
||||||
Ticker _last_rtp_time;
|
Ticker _last_rtp_time;
|
||||||
|
map<int,Stamp> _stamps;
|
||||||
};
|
};
|
||||||
|
|
||||||
}//namespace mediakit
|
}//namespace mediakit
|
||||||
|
Loading…
Reference in New Issue
Block a user