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 61c0ca9 commit aba5ff4Copy full SHA for aba5ff4
src/AvTranscoder/transcoder/StreamTranscoder.cpp
@@ -319,14 +319,14 @@ void StreamTranscoder::preProcessCodecLatency()
319
{
320
if( ! _outputEncoder )
321
322
- std::stringstream os;
323
- os << "No encoder found for stream ";
+ std::stringstream msg;
+ msg << "No encoder found for input stream ";
324
if( getProcessCase() == eProcessCaseGenerator )
325
- os << "generator";
+ msg << "generator";
326
else
327
- os << _inputStream->getStreamIndex();
328
- os << ": will not preProcessCodecLatency.";
329
- LOG_WARN( os.str() )
+ msg << _inputStream->getStreamIndex();
+ msg << ": will not preProcessCodecLatency.";
+ LOG_WARN( msg.str() )
330
return;
331
}
332
0 commit comments