We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e9401 commit 61c0ca9Copy full SHA for 61c0ca9
src/AvTranscoder/transcoder/StreamTranscoder.cpp
@@ -320,14 +320,13 @@ void StreamTranscoder::preProcessCodecLatency()
320
if( ! _outputEncoder )
321
{
322
std::stringstream os;
323
- os << "No output encoder found for stream ";
+ os << "No encoder found for stream ";
324
if( getProcessCase() == eProcessCaseGenerator )
325
os << "generator";
326
else
327
os << _inputStream->getStreamIndex();
328
os << ": will not preProcessCodecLatency.";
329
- LOG_INFO( os.str() )
330
-
+ LOG_WARN( os.str() )
331
return;
332
}
333
0 commit comments