Merge commit '9a5e4fbec870c7d466b7a0aec92c70778efc96b5'
* commit '9a5e4fbec870c7d466b7a0aec92c70778efc96b5': avconv: do not stop processing the input packet on decoding error Conflicts: ffmpeg.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
17
ffmpeg.c
17
ffmpeg.c
@ -2268,8 +2268,13 @@ static int process_input_packet(InputStream *ist, const AVPacket *pkt)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ret < 0 && !(!pkt && ist->decoding_needed))
|
if (ret < 0) {
|
||||||
return ret;
|
av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
|
||||||
|
ist->file_index, ist->st->index, av_err2str(ret));
|
||||||
|
if (exit_on_error)
|
||||||
|
exit_program(1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
avpkt.dts=
|
avpkt.dts=
|
||||||
avpkt.pts= AV_NOPTS_VALUE;
|
avpkt.pts= AV_NOPTS_VALUE;
|
||||||
@ -3772,13 +3777,7 @@ static int process_input(int file_index)
|
|||||||
|
|
||||||
sub2video_heartbeat(ist, pkt.pts);
|
sub2video_heartbeat(ist, pkt.pts);
|
||||||
|
|
||||||
ret = process_input_packet(ist, &pkt);
|
process_input_packet(ist, &pkt);
|
||||||
if (ret < 0) {
|
|
||||||
av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
|
|
||||||
ist->file_index, ist->st->index, av_err2str(ret));
|
|
||||||
if (exit_on_error)
|
|
||||||
exit_program(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
discard_packet:
|
discard_packet:
|
||||||
av_free_packet(&pkt);
|
av_free_packet(&pkt);
|
||||||
|
Reference in New Issue
Block a user