diff options
author | jstebbins <[email protected]> | 2009-11-25 21:14:44 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-11-25 21:14:44 +0000 |
commit | 009238a822971a933d0b7642fd04c15bf8e404a2 (patch) | |
tree | 0979d88ba5116f4ad7e41f55bc7f93a1a82040b9 /libhb/decmetadata.c | |
parent | 08483929dd5352012eb8b1f1143f138e3d5f19f0 (diff) |
batch file scanning and scan cancel
When a directory is specified as the source, first we attempt to open as a dvd,
then if that fails, we attempt to open each file in the directory as a stream
source. Since opening a large directory of files can take a really long time,
you can also now cancel a scan.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2980 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/decmetadata.c')
-rw-r--r-- | libhb/decmetadata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decmetadata.c b/libhb/decmetadata.c index e377f8c25..bd848a95a 100644 --- a/libhb/decmetadata.c +++ b/libhb/decmetadata.c @@ -13,7 +13,7 @@ static void decmp4metadata( hb_title_t *title ) MP4FileHandle input_file; hb_deep_log( 2, "Got an MP4 input, read the metadata"); - input_file = MP4Read( title->dvd, 0 ); + input_file = MP4Read( title->path, 0 ); if( input_file != MP4_INVALID_FILE_HANDLE ) { |