From a30cc8930e25789c8e4aba6b09c76a8dd921a0fd Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Thu, 11 Oct 2012 00:52:10 +0000 Subject: [PATCH] Gale Andrews fix for bug 338 --- src/import/ImportFFmpeg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import/ImportFFmpeg.cpp b/src/import/ImportFFmpeg.cpp index 2124572dd..7d63696aa 100644 --- a/src/import/ImportFFmpeg.cpp +++ b/src/import/ImportFFmpeg.cpp @@ -539,7 +539,7 @@ int FFmpegImportFileHandle::Import(TrackFactory *trackFactory, if (mScs[s]->m_stream->start_time != int64_t(AV_NOPTS_VALUE) && mScs[s]->m_stream->start_time > 0) { stream_delay = mScs[s]->m_stream->start_time; - wxLogError(wxT("Stream %d start_time = %d, that would be %f milliseconds."), s, mScs[s]->m_stream->start_time, double(mScs[s]->m_stream->start_time)/AV_TIME_BASE*1000); + wxLogDebug(wxT("Stream %d start_time = %d, that would be %f milliseconds."), s, mScs[s]->m_stream->start_time, double(mScs[s]->m_stream->start_time)/AV_TIME_BASE*1000); } if (stream_delay != 0) {