From 704d00183fce041708d167f0468ce871494d65e7 Mon Sep 17 00:00:00 2001
From: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com>
Date: Fri, 3 Jan 2014 12:04:42 -0500
Subject: [PATCH] video: use fast bilinear scaling method than bicubic

---
 daemon/src/video/video_scaler.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/daemon/src/video/video_scaler.cpp b/daemon/src/video/video_scaler.cpp
index 15b6a94a37..30ff53b620 100644
--- a/daemon/src/video/video_scaler.cpp
+++ b/daemon/src/video/video_scaler.cpp
@@ -35,7 +35,7 @@
 
 namespace sfl_video {
 
-VideoScaler::VideoScaler() : ctx_(0), mode_(SWS_BICUBIC) {}
+VideoScaler::VideoScaler() : ctx_(0), mode_(SWS_FAST_BILINEAR) {}
 
 VideoScaler::~VideoScaler() { sws_freeContext(ctx_); }
 
-- 
GitLab