diff options
author | dynaflash <[email protected]> | 2008-02-27 16:32:15 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2008-02-27 16:32:15 +0000 |
commit | 818c2cf0e27b914bb031fc5ee00bd3f80a29b497 (patch) | |
tree | c72fc935e3174630628bb19b78ebd6a1b083c830 /contrib/Jamfile | |
parent | ed5556d6bc9f5f7c22a1068f55867881df046869 (diff) |
Adds Dark_Shikari's vbv 1 pass patch for x264
- While not optimal by any means according to Dark_Shikari over at x264, it definitely seems to help with the borked I frames we have been seeing using vbv 1 pass over x264 standard vbv.
- Rumors are that a more comprehensive fix is in the works for x264. But who wants to hold their breath. HB presets rely on vbv too much to have squashed I frames in the meantime.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1319 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/Jamfile')
-rw-r--r-- | contrib/Jamfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/Jamfile b/contrib/Jamfile index 5bdcd3518..262ed0b0c 100644 --- a/contrib/Jamfile +++ b/contrib/Jamfile @@ -348,8 +348,9 @@ rule LibX264 { LIBX264_PATCH += " $(PATCH) -p1 < ../patch-x264-solaris.patch && " ; } -# AQ is temporarily disabled LIBX264_PATCH += "$(PATCH) -p0 < ../patch-x264-aq.patch && " ; + # AQ is temporarily disabled 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 && " ; Depends $(<) : $(>) ; Depends lib : $(<) ; |