UHD Fix to muxerManager.cpp

Patch needed due to change from "--blu-ray v3" to "--blu-ray-v3"
(same as patch for tsMuxer.cpp already merged)
master
jcdr428 2019-12-03 00:00:50 +02:00 committed by GitHub
parent eacb70c003
commit 26a15b1446
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ void MuxerManager::parseMuxOpt(const string& opts)
else if (paramPair[0] == "--extra-iso-space") {
m_extraIsoBlocks = strToInt32(paramPair[1]);
}
else if (paramPair[0] == "--blu-ray" || paramPair[0] == "--avchd") {
else if (paramPair[0] == "--blu-ray" || paramPair[0] == "--blu-ray-v3" || paramPair[0] == "--avchd") {
m_bluRayMode = true;
}
else if (paramPair[0] == "--demux") {