1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-13 14:13:32 +02:00

Reviewed uses of InconsistencyException outside Sequence.cpp

This commit is contained in:
Paul Licameli
2017-11-18 22:18:49 -05:00
parent 2f40c1c77e
commit f136b5c530
6 changed files with 28 additions and 7 deletions

View File

@@ -557,7 +557,7 @@ ProgressResult FFmpegImportFileHandle::Import(TrackFactory *trackFactory,
stream_delay = sc->m_stream->start_time;
wxLogDebug(wxT("Stream %d start_time = %lld, that would be %f milliseconds."), s, (long long) sc->m_stream->start_time, double(sc->m_stream->start_time)/AV_TIME_BASE*1000);
}
if (stream_delay != 0)
if (stream_delay > 0)
{
int c = -1;
for (auto &channel : stream)