summaryrefslogtreecommitdiffstats
path: root/libhb/render.c
diff options
context:
space:
mode:
authorsaintdev <[email protected]>2009-03-02 02:30:10 +0000
committersaintdev <[email protected]>2009-03-02 02:30:10 +0000
commit237081eafa3234411e138b0c9a25c701ad0c835d (patch)
tree66922cb75353a62cfa7b54a58da5b9236d62f6c8 /libhb/render.c
parent9389c53890e05723c97f2587a5b4a5bfa7fe70d5 (diff)
Re-enable libswscale accurate rounding on x86_64.
The libswscale bug causing crashes was fixed a while ago. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2191 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/render.c')
-rw-r--r--libhb/render.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libhb/render.c b/libhb/render.c
index 3dd239dae..55295a4c2 100644
--- a/libhb/render.c
+++ b/libhb/render.c
@@ -531,10 +531,7 @@ int renderInit( hb_work_object_t * w, hb_job_t * job )
w->private_data = pv;
uint32_t swsflags;
- swsflags = SWS_LANCZOS;
-#ifndef __x86_64__
- swsflags |= SWS_ACCURATE_RND;
-#endif /* __x86_64__ */
+ swsflags = SWS_LANCZOS | SWS_ACCURATE_RND;
/* Get title and title size */
hb_title_t * title = job->title;