OSDN Git Service

libavfilter/buffersrc: Do not fail hard on changes of input parameters.
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 16 Oct 2012 21:52:53 +0000 (23:52 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 16 Oct 2012 22:06:12 +0000 (00:06 +0200)
Several filters support this already.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavfilter/buffersrc.c

index b4b502a..a88cc46 100644 (file)
@@ -64,8 +64,7 @@ typedef struct {
 
 #define CHECK_VIDEO_PARAM_CHANGE(s, c, width, height, format)\
     if (c->w != width || c->h != height || c->pix_fmt != format) {\
-        av_log(s, AV_LOG_ERROR, "Changing frame properties on the fly is not supported.\n");\
-        return AVERROR(EINVAL);\
+        av_log(s, AV_LOG_INFO, "Changing frame properties on the fly is not supported by all filters.\n");\
     }
 
 #define CHECK_AUDIO_PARAM_CHANGE(s, c, srate, ch_layout, format)\