fixed timeoffset
This commit is contained in:
parent
282c736746
commit
fca96eaeb1
1 changed files with 4 additions and 4 deletions
|
@ -790,7 +790,7 @@ namespace Mist{
|
||||||
}
|
}
|
||||||
tag.DTSCMetaInit(meta, selectedTracks);
|
tag.DTSCMetaInit(meta, selectedTracks);
|
||||||
if (tag.len){
|
if (tag.len){
|
||||||
tag.tagTime(currentTime());
|
tag.tagTime(currentTime() - rtmpOffset);
|
||||||
myConn.SendNow(RTMPStream::SendMedia(tag));
|
myConn.SendNow(RTMPStream::SendMedia(tag));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -798,13 +798,13 @@ namespace Mist{
|
||||||
std::string type = M.getType(*it);
|
std::string type = M.getType(*it);
|
||||||
if (type == "video"){
|
if (type == "video"){
|
||||||
if (tag.DTSCVideoInit(meta, *it)){
|
if (tag.DTSCVideoInit(meta, *it)){
|
||||||
tag.tagTime(currentTime());
|
tag.tagTime(currentTime() - rtmpOffset);
|
||||||
myConn.SendNow(RTMPStream::SendMedia(tag));
|
myConn.SendNow(RTMPStream::SendMedia(tag));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (type == "audio"){
|
if (type == "audio"){
|
||||||
if (tag.DTSCAudioInit(meta.getCodec(*it), meta.getRate(*it), meta.getSize(*it), meta.getChannels(*it), meta.getInit(*it))){
|
if (tag.DTSCAudioInit(meta.getCodec(*it), meta.getRate(*it), meta.getSize(*it), meta.getChannels(*it), meta.getInit(*it))){
|
||||||
tag.tagTime(currentTime());
|
tag.tagTime(currentTime() - rtmpOffset);
|
||||||
myConn.SendNow(RTMPStream::SendMedia(tag));
|
myConn.SendNow(RTMPStream::SendMedia(tag));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -855,7 +855,7 @@ namespace Mist{
|
||||||
// Type -sample-chnl-000
|
// Type -sample-chnl-000
|
||||||
// AACLC-44100 -2 -000
|
// AACLC-44100 -2 -000
|
||||||
INFO_MSG("Inserting silence track init data");
|
INFO_MSG("Inserting silence track init data");
|
||||||
tag.tagTime(currentTime());
|
tag.tagTime(currentTime() - rtmpOffset);
|
||||||
myConn.SendNow(RTMPStream::SendMedia(tag));
|
myConn.SendNow(RTMPStream::SendMedia(tag));
|
||||||
}
|
}
|
||||||
if (hasCustomAudio){
|
if (hasCustomAudio){
|
||||||
|
|
Loading…
Add table
Reference in a new issue