projects
/
handbrake
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a48476
)
dvdnav: fix title scanning issue
author
jstebbins
<jstebbins.hb@gmail.com>
Sat, 13 Jun 2009 18:07:38 +0000
(18:07 +0000)
committer
jstebbins
<jstebbins.hb@gmail.com>
Sat, 13 Jun 2009 18:07:38 +0000
(18:07 +0000)
d->chapter needs to be initialized in hb_dvdnav_start. chapter loop detection
was triggering on chapters from previous title scans
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2527
b64f7644
-9d1e-0410-96f1-
a4d463321fa5
libhb/dvdnav.c
patch
|
blob
|
history
diff --git
a/libhb/dvdnav.c
b/libhb/dvdnav.c
index 4c6fd9a39c27321c396ad0737ca7ffe5f1894ddf..2a161d4d089f2b950f2edeebe49d22fda92c4bcf 100644
(file)
--- a/
libhb/dvdnav.c
+++ b/
libhb/dvdnav.c
@@
-842,6
+842,7
@@
static int hb_dvdnav_start( hb_dvd_t * e, hb_title_t *title, int c )
}
d->title = t;
d->stopped = 0;
+ d->chapter = c;
return 1;
}