Merge branch 'master' into plugin_support_test
This commit is contained in:
commit
b1dbb23f13
|
@ -440,7 +440,11 @@ int RtspThread::run()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if ( *trackUrl.rbegin() != '/') {
|
||||||
trackUrl += "/" + controlUrl;
|
trackUrl += "/" + controlUrl;
|
||||||
|
} else {
|
||||||
|
trackUrl += controlUrl;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
rtpClock = mediaDesc->getClock();
|
rtpClock = mediaDesc->getClock();
|
||||||
codecId = mFormatContext->streams[i]->codec->codec_id;
|
codecId = mFormatContext->streams[i]->codec->codec_id;
|
||||||
|
|
Loading…
Reference in New Issue