diff options
author | jbrjake <[email protected]> | 2008-03-07 15:28:52 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2008-03-07 15:28:52 +0000 |
commit | 8463a0b011665a2da7ef549f155d9f935971a94a (patch) | |
tree | c7f195d602f9831b65c7eca22a1a33837b823e21 /contrib/Jamfile | |
parent | 8cf6e82be22656e77e8c4a723b1507a187fa924b (diff) |
Applies Dark_Shikari's Variable Adaptive Quantization patch v0.48 to libhb's copy of libx264. This major change to x264 drastically reduces blockiness on flat parts of the picture as well as blurring. It is on by default; to disable it, add "aq-strength=0" to your x264 options string. For now, it's only applied to jam builds. Make will come later.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1333 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/Jamfile')
-rw-r--r-- | contrib/Jamfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/Jamfile b/contrib/Jamfile index 262ed0b0c..06cb557ec 100644 --- a/contrib/Jamfile +++ b/contrib/Jamfile @@ -348,7 +348,7 @@ rule LibX264 { LIBX264_PATCH += " $(PATCH) -p1 < ../patch-x264-solaris.patch && " ; } - # AQ is temporarily disabled LIBX264_PATCH += "$(PATCH) -p0 < ../patch-x264-aq.patch && " ; + LIBX264_PATCH += "$(PATCH) -p0 < ../patch-x264-aq.patch && " ; LIBX264_PATCH += "$(PATCH) -p0 < ../patch-x264-idr.patch && " ; LIBX264_PATCH += "$(PATCH) -p0 < ../patch-x264-vbv-1pass.patch && " ; LIBX264_PATCH += "$(PATCH) -p0 < ../patch-x264-vbv-2pass.patch && " ; |