mirror of https://git.ffmpeg.org/ffmpeg.git
ffmpeg: Print an error if avfilter_graph_queue_command() failed
Fixes CID1271809 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
da2f156843
commit
670702f91d
2
ffmpeg.c
2
ffmpeg.c
|
@ -3337,6 +3337,8 @@ static int check_keyboard_interaction(int64_t cur_time)
|
|||
ret = AVERROR_PATCHWELCOME;
|
||||
} else {
|
||||
ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
|
||||
if (ret < 0)
|
||||
fprintf(stderr, "Queing command failed with error %s\n", av_err2str(ret));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue