diff options
author | Rodeo <[email protected]> | 2012-10-20 23:16:47 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-10-20 23:16:47 +0000 |
commit | 4916c07f34cf97a79ca76f8163a9e7e258491bce (patch) | |
tree | 6b1779f10e0cb6e2a67957bdd27fb35af6d3b6f2 | |
parent | 44a426074f1bdc8bc5303a18fed2aa194e126a63 (diff) |
Bump libbluray to version 0.2.3.
Miscellaneous fixes and improvements.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5022 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | contrib/libbluray/module.defs | 2 | ||||
-rw-r--r-- | libhb/bd.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libbluray/module.defs b/contrib/libbluray/module.defs index d3371d089..df51564c9 100644 --- a/contrib/libbluray/module.defs +++ b/contrib/libbluray/module.defs @@ -1,7 +1,7 @@ $(eval $(call import.MODULE.defs,LIBBLURAY,libbluray,LIBXML2)) $(eval $(call import.CONTRIB.defs,LIBBLURAY)) -LIBBLURAY.FETCH.url = http://download.handbrake.fr/handbrake/contrib/libbluray-0.0.1-pre-213-ga869da8.tar.gz +LIBBLURAY.FETCH.url = http://download.handbrake.fr/handbrake/contrib/libbluray-0.2.3.tar.bz2 LIBBLURAY.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache; ./bootstrap; diff --git a/libhb/bd.c b/libhb/bd.c index 8ec0fcb49..208782674 100644 --- a/libhb/bd.c +++ b/libhb/bd.c @@ -54,7 +54,7 @@ hb_bd_t * hb_bd_init( char * path ) goto fail; } - d->title_count = bd_get_titles( d->bd, TITLES_RELEVANT ); + d->title_count = bd_get_titles( d->bd, TITLES_RELEVANT, 0 ); if ( d->title_count == 0 ) { hb_log( "bd: not a bd - trying as a stream/file instead" ); @@ -63,7 +63,7 @@ hb_bd_t * hb_bd_init( char * path ) d->title_info = calloc( sizeof( BLURAY_TITLE_INFO* ) , d->title_count ); for ( ii = 0; ii < d->title_count; ii++ ) { - d->title_info[ii] = bd_get_title_info( d->bd, ii ); + d->title_info[ii] = bd_get_title_info( d->bd, ii, 0 ); } qsort(d->title_info, d->title_count, sizeof( BLURAY_TITLE_INFO* ), title_info_compare_mpls ); d->path = strdup( path ); |