Commit 3233f666 authored by vitor's avatar vitor

Do not always fail for circular filter chains

Commited in SoC by Vitor Sessak on 2008-02-10 16:52:54


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12050 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4074ff90
...@@ -132,8 +132,8 @@ int avfilter_config_links(AVFilterContext *filter) ...@@ -132,8 +132,8 @@ int avfilter_config_links(AVFilterContext *filter)
case AVLINK_INIT: case AVLINK_INIT:
continue; continue;
case AVLINK_STARTINIT: case AVLINK_STARTINIT:
av_log(filter, AV_LOG_ERROR, "circular filter chain detected\n"); av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
return -1; return 0;
case AVLINK_UNINIT: case AVLINK_UNINIT:
link->init_state = AVLINK_STARTINIT; link->init_state = AVLINK_STARTINIT;
......
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