summaryrefslogtreecommitdiff
authorMichael Niedermayer <michaelni@gmx.at>2013-10-07 09:54:03 (GMT)
committer Michael Niedermayer <michaelni@gmx.at>2013-10-07 11:28:13 (GMT)
commitb8866783c6a855643a3869020ac5241b12f7d97a (patch)
tree7ab8f3b6fcfa6f5fe64407a70937f071018b2b09
parentc21be5845fa6f0366ea221a9df8484fcc8f03a9f (diff)
downloadffmpeg-b8866783c6a855643a3869020ac5241b12f7d97a.zip
ffmpeg-b8866783c6a855643a3869020ac5241b12f7d97a.tar.gz
ffmpeg-b8866783c6a855643a3869020ac5241b12f7d97a.tar.bz2
avfilter/lswsutils: dont override the default scaler
This should make no difference as this code is only used by removelogo which seems to refuse to use masks of different size. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat
-rw-r--r--libavfilter/lswsutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/lswsutils.c b/libavfilter/lswsutils.c
index 6902ee9..ebb4f93 100644
--- a/libavfilter/lswsutils.c
+++ b/libavfilter/lswsutils.c
@@ -28,7 +28,7 @@ int ff_scale_image(uint8_t *dst_data[4], int dst_linesize[4],
int ret;
struct SwsContext *sws_ctx = sws_getContext(src_w, src_h, src_pix_fmt,
dst_w, dst_h, dst_pix_fmt,
- SWS_BILINEAR, NULL, NULL, NULL);
+ 0, NULL, NULL, NULL);
if (!sws_ctx) {
av_log(log_ctx, AV_LOG_ERROR,
"Impossible to create scale context for the conversion "