[FFmpeg-devel] [PATCH] libavfilter-soc: make scale algorithm configurable

Stefano Sabatini stefano.sabatini-lala
Sun Feb 22 22:46:16 CET 2009


On date Sunday 2009-02-22 20:43:14 +0100, Michael Niedermayer encoded:
> On Sun, Feb 22, 2009 at 07:32:19PM +0100, Stefano Sabatini wrote:
> > On date Tuesday 2009-02-17 01:40:47 +0100, Stefano Sabatini encoded:
> > [...]
> > > New round, no hurry to review it since I want to think something more
> > > about it.
> > 
> > Patches cleaned-up, some bug fixed, choosen a better name for
> > AVFilterGraph::sws_opts (now is scale_sws_opts).
> > 
> > Summary:
> > * vf-scale-use-getcached-ctx.patch
> >   Use sws_getCacehdContext() in config_props, the context is alloced
> >   in the first place in init(), while the srcSlice h/w, dst h/w are
> >   set in config_props.
> > 
> >   This allows to avoid to create a context just to store the
> >   sws_flags.
> > 
> > * vf-scale-cosmetics.patch
> >   Reindent + minor cosmetics.
> > 
> > * vf-scale-set-scale-sws-opts.patch
> > 
> >   Implement the sws-opts parsing, in particular parse the sws_flags
> >   option in the sws_opts eventually provided in the args (mmh, maybe
> >   this should be split).
> > 
> >   The sws_flags is set in the context, this value is re-set in
> >   config_props() when sws_getCachedContext() is used to create the new
> >   sws context with the srcSlice h/w, dst h/w parameters.
> > 
> > * filtergraph-scale-sws-opts.patch
> >   Implement the scale_sws_opts in the graph, the scale_sws_opts will
> >   be appended to the args to pass to the auto-inserted scale filters.
> > 
> > * ffmpeg-send-scale-sws-opts.patch
> >   Make possible to set in ffmpeg the scale_sws_opts to use for the
> >   auto-inserted scale filters, and set the sws_flags CLI option in the
> >   filters graph.
> > 
> >   Fixes regressions test.
> > 
> > * ffplay-send-sws-flags.patch
> >   Set the scale_sws_opts value to use in the auto-inserted scale filters,
> >   setting it in the graph.
> > 
> >   IMO it should be possible for the user to set this value in some way
> >   similar to what ffmpeg does after the last patch, now it is
> >   currently hardcoded.
[...]
> 
> > Index: libavfilter-soc/ffmpeg/libavfilter/avfiltergraph.c
> > ===================================================================
> > --- libavfilter-soc.orig/ffmpeg/libavfilter/avfiltergraph.c	2009-02-22 19:11:44.000000000 +0100
> > +++ libavfilter-soc/ffmpeg/libavfilter/avfiltergraph.c	2009-02-22 19:14:12.000000000 +0100
> > @@ -111,13 +111,15 @@
> >                  if(!avfilter_merge_formats(link->in_formats,
> >                                             link->out_formats)) {
> >                      AVFilterContext *scale;
> > +                    char scale_args[256];
> >                      /* couldn't merge format lists. auto-insert scale filter */
> >                      snprintf(inst_name, sizeof(inst_name), "auto-inserted scaler %d",
> >                               scaler_count);
> >                      scale =
> >                          avfilter_open(avfilter_get_by_name("scale"),inst_name);
> >  
> > -                    if(!scale || scale->filter->init(scale, NULL, NULL) ||
> > +                    snprintf(scale_args, sizeof(scale_args), "0:0:%s", graph->scale_sws_opts);
> > +                    if(!scale || scale->filter->init(scale, scale_args, NULL) ||
> >                                   avfilter_insert_filter(link, scale, 0, 0)) {
> >                          avfilter_destroy(scale);
> >                          return -1;
> > Index: libavfilter-soc/ffmpeg/libavfilter/avfiltergraph.h
> > ===================================================================
> > --- libavfilter-soc.orig/ffmpeg/libavfilter/avfiltergraph.h	2009-02-22 19:11:44.000000000 +0100
> > +++ libavfilter-soc/ffmpeg/libavfilter/avfiltergraph.h	2009-02-22 19:13:12.000000000 +0100
> > @@ -27,6 +27,8 @@
> >  typedef struct AVFilterGraph {
> >      unsigned filter_count;
> >      AVFilterContext **filters;
> > +
> > +    const char *scale_sws_opts; ///< sws options to use for the auto-inserted scale filters
> >  } AVFilterGraph;
> >  
> >  /**
> 
> ok

Changed from const char * to char *, the string is freed when
destroying the graph.
 
> > Index: libavfilter-soc/ffmpeg/ffmpeg.c
> > ===================================================================
> > --- libavfilter-soc.orig/ffmpeg/ffmpeg.c	2009-02-22 19:11:44.000000000 +0100
> > +++ libavfilter-soc/ffmpeg/ffmpeg.c	2009-02-22 19:16:45.000000000 +0100
[...]
> > @@ -473,6 +474,12 @@
> >              return -1;
> >      }
> >  
> > +    {
> > +        char scale_sws_opts[128];
> > +        snprintf(scale_sws_opts, sizeof(scale_sws_opts), "sws_flags=%d", (int)av_get_int(sws_opts, "sws_flags", NULL));
> > +        filt_graph_all->scale_sws_opts = scale_sws_opts;
> > +    }
> > +
> >      /* configure all the filter links */
> >      if(avfilter_graph_check_validity(filt_graph_all, NULL))
> >          return -1;
> 
> ehm, you are storing a pointer to the stack in the context ...

Ugh, now is strdup()ed.

Regards.
-- 
FFmpeg = Friendly and Fostering Miracolous Philosofic Enhanced Gem
-------------- next part --------------
A non-text attachment was scrubbed...
Name: vf-scale-set-sws-opts.patch
Type: text/x-diff
Size: 907 bytes
Desc: not available
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20090222/a19841ce/attachment.patch>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: vf-scale-set-sws-flags.patch
Type: text/x-diff
Size: 1845 bytes
Desc: not available
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20090222/a19841ce/attachment-0001.patch>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: filtergraph-scale-sws-opts.patch
Type: text/x-diff
Size: 2057 bytes
Desc: not available
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20090222/a19841ce/attachment-0002.patch>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ffmpeg-send-scale-sws-opts.patch
Type: text/x-diff
Size: 1304 bytes
Desc: not available
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20090222/a19841ce/attachment-0003.patch>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: ffplay-send-scale-sws-opts.patch
Type: text/x-diff
Size: 515 bytes
Desc: not available
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20090222/a19841ce/attachment-0004.patch>



More information about the ffmpeg-devel mailing list