mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
Print a warning and fail if the graph description cannot be
parsed. Originally committed as revision 16648 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
439c650301
commit
784712343c
@ -376,6 +376,13 @@ int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
|
||||
index++;
|
||||
} while(chr == ',' || chr == ';');
|
||||
|
||||
if (*filters) {
|
||||
av_log(log_ctx, AV_LOG_ERROR,
|
||||
"Unable to parse graph description substring: \"%s\"\n",
|
||||
filters - 1);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if(open_inputs && !strcmp(open_inputs->name, "out") && curr_inputs) {
|
||||
/* Last output can be omitted if it is "[out]" */
|
||||
const char *tmp = "[out]";
|
||||
|
Loading…
Reference in New Issue
Block a user