From: jstebbins Date: Mon, 28 Jan 2013 18:13:19 +0000 (+0000) Subject: libhb: Fix main feature detection for some DVDs (Brave) X-Git-Tag: 0.9.9~146 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4adef217fec09f7975dab840b6f0c7cd6af5045d;p=handbrake libhb: Fix main feature detection for some DVDs (Brave) Some new discs are putting longer leaders before the feauture. So extend how far we search before giving up. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5216 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/libhb/dvdnav.c b/libhb/dvdnav.c index e9cd44053..14d8100c6 100644 --- a/libhb/dvdnav.c +++ b/libhb/dvdnav.c @@ -992,7 +992,7 @@ static int try_button( dvdnav_t * dvdnav, int button, hb_list_t * list_title ) cur_title = title; - for (jj = 0; jj < 5; jj++) + for (jj = 0; jj < 10; jj++) { for (ii = 0; ii < 2000; ii++) {