mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-29 06:20:29 +00:00
Do not always fail for circular filter chains
Commited in SoC by Vitor Sessak on 2008-02-10 16:52:54 Originally committed as revision 12050 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5b7c403353
commit
7a9fd2a03c
@ -132,8 +132,8 @@ int avfilter_config_links(AVFilterContext *filter)
|
||||
case AVLINK_INIT:
|
||||
continue;
|
||||
case AVLINK_STARTINIT:
|
||||
av_log(filter, AV_LOG_ERROR, "circular filter chain detected\n");
|
||||
return -1;
|
||||
av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
|
||||
return 0;
|
||||
case AVLINK_UNINIT:
|
||||
link->init_state = AVLINK_STARTINIT;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user