diff options
author | superdump <[email protected]> | 2007-09-05 03:51:41 +0000 |
---|---|---|
committer | superdump <[email protected]> | 2007-09-05 03:51:41 +0000 |
commit | a963935e4d220ec9153573cef8f9f1b12654f0c3 (patch) | |
tree | 39e842caed17225d2530ab678745f6cd0275fe7b /libhb/hb.c | |
parent | 8c6e8bf021c2ee2bc3278868c2c64b61efad0e92 (diff) |
- Add the accurate rounding flag for software scaling to avoid scaling artifacts that were especially noticable on flat colour or slight gradients.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@924 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.c')
-rw-r--r-- | libhb/hb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/hb.c b/libhb/hb.c index 7b75e8511..94206e053 100644 --- a/libhb/hb.c +++ b/libhb/hb.c @@ -364,7 +364,7 @@ void hb_get_preview( hb_handle_t * h, hb_title_t * title, int picture, title->height - (job->crop[0] + job->crop[1]), PIX_FMT_YUV420P, job->width, job->height, PIX_FMT_YUV420P, - SWS_LANCZOS, NULL, NULL, NULL); + SWS_LANCZOS|SWS_ACCURATE_RND, NULL, NULL, NULL); // Scale sws_scale(context, @@ -378,7 +378,7 @@ void hb_get_preview( hb_handle_t * h, hb_title_t * title, int picture, // Get preview context context = sws_getContext(job->width, job->height, PIX_FMT_YUV420P, job->width, job->height, PIX_FMT_RGBA32, - SWS_LANCZOS, NULL, NULL, NULL); + SWS_LANCZOS|SWS_ACCURATE_RND, NULL, NULL, NULL); // Create preview sws_scale(context, |