diff options
author | jstebbins <[email protected]> | 2010-09-08 16:51:59 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-09-08 16:51:59 +0000 |
commit | a007891bf9f7e53d3705c51b5b41f9e56a144031 (patch) | |
tree | b7a532c24a458d549afb0174c374e631b896a46e /contrib | |
parent | 772c3574758e9bc29cb76bbc86343cf9ad5ddd71 (diff) |
Add Bluray support
Unencrypted BD directory trees only. Doesn't support iso images.
Also, no PGS subtitle support yet.
Chapters and angles are supported.
Adds a new contrib libbluray.
Adds new option to hb_scan() for duration of short titles to filter.
This applies to BD and DVD multi-title scans only. Does not apply
to any single title scans.
Fixes memory leak during scan. hb_buffer_close() was not freeing
all buffers in a chain of buffers passed to it.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3510 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libbluray/module.defs | 8 | ||||
-rw-r--r-- | contrib/libbluray/module.rules | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/contrib/libbluray/module.defs b/contrib/libbluray/module.defs new file mode 100644 index 000000000..8ec5d1f3f --- /dev/null +++ b/contrib/libbluray/module.defs @@ -0,0 +1,8 @@ +$(eval $(call import.MODULE.defs,LIBBLURAY,libbluray)) +$(eval $(call import.CONTRIB.defs,LIBBLURAY)) + +LIBBLURAY.FETCH.url = http://download.m0k.org/handbrake/contrib/libbluray-0.0.1-pre-7-g8621bd8.tar.gz + +LIBBLURAY.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache; ./bootstrap; + +LIBBLURAY.CONFIGURE.extra += --disable-optimizations --enable-debug diff --git a/contrib/libbluray/module.rules b/contrib/libbluray/module.rules new file mode 100644 index 000000000..ddea0211f --- /dev/null +++ b/contrib/libbluray/module.rules @@ -0,0 +1,2 @@ +$(eval $(call import.MODULE.rules,LIBBLURAY)) +$(eval $(call import.CONTRIB.rules,LIBBLURAY)) |