mirror of https://github.com/procxx/kepka.git
Read after AVERROR_INVALIDDATA in video sound.
Partially reverse c1c3e4af5b
that stopped on error in such cases.
This commit is contained in:
parent
e24b0559d3
commit
6148b78745
|
@ -157,9 +157,9 @@ AudioPlayerLoader::ReadResult ChildFFMpegLoader::readMore(QByteArray &result, in
|
||||||
LOG(("Audio Error: Unable to avcodec_send_packet() file '%1', data size '%2', error %3, %4").arg(_file.name()).arg(_data.size()).arg(res).arg(av_make_error_string(err, sizeof(err), res)));
|
LOG(("Audio Error: Unable to avcodec_send_packet() file '%1', data size '%2', error %3, %4").arg(_file.name()).arg(_data.size()).arg(res).arg(av_make_error_string(err, sizeof(err), res)));
|
||||||
// There is a sample voice message where skipping such packet
|
// There is a sample voice message where skipping such packet
|
||||||
// results in a crash (read_access to nullptr) in swr_convert().
|
// results in a crash (read_access to nullptr) in swr_convert().
|
||||||
//if (res == AVERROR_INVALIDDATA) {
|
if (res == AVERROR_INVALIDDATA) {
|
||||||
// return ReadResult::NotYet; // try to skip bad packet
|
return ReadResult::NotYet; // try to skip bad packet
|
||||||
//}
|
}
|
||||||
return ReadResult::Error;
|
return ReadResult::Error;
|
||||||
}
|
}
|
||||||
FFMpeg::freePacket(&packet);
|
FFMpeg::freePacket(&packet);
|
||||||
|
|
Loading…
Reference in New Issue