Commit cf11e6bc authored by vitor's avatar vitor

Make an invalid use of a default callback implementation return an error.

Commited in SoC by Bobby Bingham on 2007-08-18 01:45:42


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12071 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 648c42b9
......@@ -98,8 +98,7 @@ int avfilter_default_config_output_link(AVFilterLink *link)
} else {
/* XXX: any non-simple filter which would cause this branch to be taken
* really should implement its own config_props() for this link. */
link->w =
link->h = 0;
return -1;
}
return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment