summaryrefslogtreecommitdiff
path: root/libavfilter/vf_scale.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-09-30 23:44:06 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-10-06 11:00:48 +0200
commit931a4b433dcec3b8e58fe1ae59883e871cd32eaf (patch)
tree7f4c289415ba55c1d9b42a65e12a57364f00e511 /libavfilter/vf_scale.c
parentccf96f8c642d396daedfc3fcffa1c0619722d4d3 (diff)
avfilter/vf_scale: change the default scaler to bicubic
See: [FFmpeg-devel] [PATCH] swscale/options: switch default to bicubic Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_scale.c')
-rw-r--r--libavfilter/vf_scale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c
index 21c9d13e0b..f808fcc7e7 100644
--- a/libavfilter/vf_scale.c
+++ b/libavfilter/vf_scale.c
@@ -140,7 +140,7 @@ static av_cold int init_dict(AVFilterContext *ctx, AVDictionary **opts)
av_log(ctx, AV_LOG_VERBOSE, "w:%s h:%s flags:'%s' interl:%d\n",
scale->w_expr, scale->h_expr, (char *)av_x_if_null(scale->flags_str, ""), scale->interlaced);
- scale->flags = SWS_BILINEAR;
+ scale->flags = SWS_BICUBIC;
if (scale->flags_str) {
const AVClass *class = sws_get_class();