mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-12 18:31:37 +00:00
fftools/ffmpeg_filter: clarify error message
This commit is contained in:
parent
e3e66b14af
commit
cefc7d1ff4
@ -1351,8 +1351,10 @@ static int fg_complex_bind_input(FilterGraph *fg, InputFilter *ifilter)
|
||||
} else {
|
||||
ist = ist_find_unused(type);
|
||||
if (!ist) {
|
||||
av_log(fg, AV_LOG_FATAL, "Cannot find a matching stream for "
|
||||
"unlabeled input pad %s\n", ifilter->name);
|
||||
av_log(fg, AV_LOG_FATAL,
|
||||
"Cannot find an unused %s input stream to feed the "
|
||||
"unlabeled input pad %s.\n",
|
||||
av_get_media_type_string(type), ifilter->name);
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user