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 550e1ff commit 94d4600Copy full SHA for 94d4600
src/AvTranscoder/file/InputFile.cpp
@@ -68,7 +68,7 @@ bool InputFile::readNextPacket(CodedData& data, const size_t streamIndex)
68
const int ret = av_read_frame(&_formatContext.getAVFormatContext(), &data.getAVPacket());
69
if(ret < 0) // error or end of file
70
{
71
- LOG_INFO("No more data to read on file '" << _filename << "' for stream " << streamIndex)
+ LOG_INFO("Stop reading the next frame of file '" << _filename << "', stream " << streamIndex << " (" << getDescriptionFromErrorCode(ret) << ")")
72
return false;
73
}
74
0 commit comments