Skip to content

Commit

Permalink
clang format check
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed Aug 8, 2023
1 parent 7744ccb commit f3db671
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions tsMuxer/matroskaDemuxer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2471,8 +2471,7 @@ int MatroskaDemuxer::getTrackType(MatroskaTrack *track)
std::vector<AVChapter> MatroskaDemuxer::getChapters()
{
std::vector<AVChapter> rez;
for (const auto& chapter : chapters)
rez.push_back(chapter.second);
for (const auto &chapter : chapters) rez.push_back(chapter.second);
std::sort(rez.begin(), rez.end());
return rez;
}
2 changes: 1 addition & 1 deletion tsMuxer/srtStreamReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ bool SRTStreamReader::parseTime(const string& text)
if (c == ',')
c = '.';
}

m_inTime = timeToFloat(first);
m_outTime = timeToFloat(second);
return true;
Expand Down

0 comments on commit f3db671

Please sign in to comment.