mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-05 19:47:05 +00:00
ffmpeg: be more verbose when printing an error in transcode()
Helps debuggability.
This commit is contained in:
parent
6a9854e8f4
commit
f1add01d98
8
ffmpeg.c
8
ffmpeg.c
@ -3577,10 +3577,12 @@ static int transcode(void)
|
||||
}
|
||||
|
||||
// fprintf(stderr,"read #%d.%d size=%d\n", ist->file_index, ist->st->index, pkt.size);
|
||||
if (output_packet(ist, &pkt) < 0 ||
|
||||
if ((ret = output_packet(ist, &pkt)) < 0 ||
|
||||
((ret = poll_filters()) < 0 && ret != AVERROR_EOF)) {
|
||||
av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d\n",
|
||||
ist->file_index, ist->st->index);
|
||||
char buf[128];
|
||||
av_strerror(ret, buf, sizeof(buf));
|
||||
av_log(NULL, AV_LOG_ERROR, "Error while decoding stream #%d:%d: %s\n",
|
||||
ist->file_index, ist->st->index, buf);
|
||||
if (exit_on_error)
|
||||
exit_program(1);
|
||||
av_free_packet(&pkt);
|
||||
|
Loading…
x
Reference in New Issue
Block a user