[FFmpeg-devel] [PATCH 1/2] vf_scale: support dynamically changing input parameters.

Michael Niedermayer michaelni at gmx.at
Tue May 15 16:07:42 CEST 2012


Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
---
 libavfilter/vf_scale.c |   17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c
index 810a6d3..3106ccf 100644
--- a/libavfilter/vf_scale.c
+++ b/libavfilter/vf_scale.c
@@ -275,6 +275,23 @@ static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
     AVFilterLink *outlink = link->dst->outputs[0];
     AVFilterBufferRef *outpicref;
 
+    if(   picref->video->w != link->w
+       || picref->video->h != link->h
+       || picref->format   != link->format) {
+        AVFilterLink *out_link;
+        int ret;
+        snprintf(scale->w_expr, sizeof(scale->w_expr)-1, "%d", outlink->w);
+        snprintf(scale->h_expr, sizeof(scale->h_expr)-1, "%d", outlink->h);
+
+        link->dst->inputs[0]->format = picref->format;
+        link->dst->inputs[0]->w      = picref->video->w;
+        link->dst->inputs[0]->h      = picref->video->h;
+
+        if ((ret = config_props(outlink)) < 0)
+            av_assert0(0); //what to do here ?
+    }
+
+
     if (!scale->sws) {
         avfilter_start_frame(outlink, avfilter_ref_buffer(picref, ~0));
         return;
-- 
1.7.9.5



More information about the ffmpeg-devel mailing list