Skip to content

Commit 61c0ca9

Browse files
author
Clement Champetier
committed
StreamTranscoder: log msg as warning when cannot preprocess codec latency
1 parent 90e9401 commit 61c0ca9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/AvTranscoder/transcoder/StreamTranscoder.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -320,14 +320,13 @@ void StreamTranscoder::preProcessCodecLatency()
320320
if( ! _outputEncoder )
321321
{
322322
std::stringstream os;
323-
os << "No output encoder found for stream ";
323+
os << "No encoder found for stream ";
324324
if( getProcessCase() == eProcessCaseGenerator )
325325
os << "generator";
326326
else
327327
os << _inputStream->getStreamIndex();
328328
os << ": will not preProcessCodecLatency.";
329-
LOG_INFO( os.str() )
330-
329+
LOG_WARN( os.str() )
331330
return;
332331
}
333332

0 commit comments

Comments
 (0)