Skip to content

Commit

Permalink
Fix for .mts AVCHD files
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed Oct 19, 2023
1 parent bb60714 commit 541204a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsMuxer/tsDemuxer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using namespace std;
bool isM2TSExt(const std::string& streamName)
{
const string sName = strToLowerCase(unquoteStr(streamName));
return strEndWith(sName, ".m2ts") || strEndWith(sName, ".mts") || strEndWith(sName, ".ssif");
return strEndWith(sName, ".m2ts") || strEndWith(sName, ".ssif");
}

TSDemuxer::TSDemuxer(const BufferedReaderManager& readManager, const char* streamName)
Expand Down

0 comments on commit 541204a

Please sign in to comment.