[FFmpeg-devel] [PATCH] sws flags for ffmpeg

mark cox markcox
Tue May 22 07:32:10 CEST 2007


>
> [...]
> > +static void opt_sws_type(const char *arg) {
> > +    struct sws_flags_list sws_type_list[] = {
> > +        { "fast_bilinear",      SWS_FAST_BILINEAR },
> > +        { "bilinear",           SWS_BILINEAR      },
> > +        { "bicubic",            SWS_BICUBIC       },
> > +        { "experimental",       SWS_X             },
> > +        { "neighbor",           SWS_POINT         },
> > +        { "area",               SWS_AREA          },
> > +        { "bicubic_bilinear",   SWS_BICUBLIN      },
> > +        { "gauss",              SWS_GAUSS         },
> > +        { "sinc",               SWS_SINC          },
> > +        { "lanczos",            SWS_LANCZOS       },
> > +        { "spline",             SWS_SPLINE        },
> > +        { NULL,                 0                 }
> > +    };


Is it possible to add a 'none' option so that the regression tests will pass
when swscale is used?
mark




More information about the ffmpeg-devel mailing list