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 bc67a2f commit 499097aCopy full SHA for 499097a
src/AvTranscoder/properties/FileProperties.cpp
@@ -228,10 +228,10 @@ const avtranscoder::StreamProperties& FileProperties::getStreamPropertiesWithInd
228
avtranscoder::StreamProperties* properties = _streamsProperties.find(streamIndex)->second;
229
if(properties)
230
return *properties;
231
- std::stringstream os;
232
- os << "No stream properties correspond to stream at index ";
233
- os << streamIndex;
234
- throw std::runtime_error(os.str());
+ std::stringstream msg;
+ msg << "No stream properties correspond to stream at index ";
+ msg << streamIndex;
+ throw std::runtime_error(msg.str());
235
}
236
237
const std::vector<avtranscoder::StreamProperties*> FileProperties::getStreamProperties() const
0 commit comments