diff options
author | handbrake <[email protected]> | 2006-01-14 12:48:06 +0000 |
---|---|---|
committer | handbrake <[email protected]> | 2006-01-14 12:48:06 +0000 |
commit | d8e695069746e98fb763392943e4de4ad072a3b9 (patch) | |
tree | 35c24269772069dcbd98942c86de1fd192088c39 | |
parent | be63e88ea3080ae0323e55a486474612db5db214 (diff) |
HandBrake 0.1.1
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | HBCommon.cpp | 5 | ||||
-rw-r--r-- | HBManager.cpp | 4 | ||||
-rw-r--r-- | Jamfile | 4 | ||||
-rw-r--r-- | NEWS | 9 |
4 files changed, 14 insertions, 8 deletions
diff --git a/HBCommon.cpp b/HBCommon.cpp index e0e17a43b..9a88cb529 100644 --- a/HBCommon.cpp +++ b/HBCommon.cpp @@ -1,4 +1,4 @@ -/* $Id: HBCommon.cpp,v 1.5 2003/08/24 20:25:49 titer Exp $ */ +/* $Id: HBCommon.cpp,v 1.6 2003/08/24 21:56:03 titer Exp $ */ #include "HBCommon.h" #include "HBFifo.h" @@ -262,7 +262,8 @@ HBVolumeInfo::HBVolumeInfo( char * name, char * device ) vmg = dvdplay_open( device, NULL, NULL ); if( !vmg ) { - Log( "VolumeInfo::DetectTitles: dvdplay_open() failed" ); + Log( "VolumeInfo::DetectTitles: dvdplay_open() failed (%s)", + device ); return; } diff --git a/HBManager.cpp b/HBManager.cpp index 159d52348..528a58afe 100644 --- a/HBManager.cpp +++ b/HBManager.cpp @@ -1,4 +1,4 @@ -/* $Id: HBManager.cpp,v 1.27 2003/08/24 20:25:49 titer Exp $ */ +/* $Id: HBManager.cpp,v 1.28 2003/08/24 21:56:03 titer Exp $ */ #include "HBCommon.h" #include "HBManager.h" @@ -289,7 +289,7 @@ void HBManager::DetectVolumes() BEntry entry, parentEntry; BPath path; - while( query->GetNextEntry( &entry ) != B_ENTRY_NOT_FOUND ) + while( query->GetNextEntry( &entry ) == B_OK ) { entry.GetParent( &parentEntry ); parentEntry.GetPath( &path ); @@ -1,6 +1,6 @@ -# $Id: Jamfile,v 1.13 2003/08/24 21:04:14 titer Exp $ +# $Id: Jamfile,v 1.15 2003/08/24 22:25:21 titer Exp $ -HB_VERSION = 0.1 ; +HB_VERSION = 0.1.1 ; C++FLAGS = $(CPPFLAGS) ; C++FLAGS += -g -Wall -Werror -Wno-multichar -O3 -funroll-loops ; @@ -1,10 +1,15 @@ -$Id: NEWS,v 1.4 2003/08/24 20:25:49 titer Exp $ +$Id: NEWS,v 1.5 2003/08/24 22:25:21 titer Exp $ + +Changes between 0.1 and 0.1.1 + - Fixed a stupid bug that prevented to scan volumes correctly if + FAT/NTFS/etc volumes were mounted Changes between 0.1-alpha2 and 0.1 : - Automatically detect ripped DVDs on BFS volumes - Allow picture cropping and resizing - Allow dual-audio encoding - - Created files are quite compliant now (tested with OSX/Quicktime and BSPlayer) + - Created files are quite compliant now (tested with OSX/Quicktime + and BSPlayer) - Better A/V sync with some DVDs Changes between 0.1-alpha and 0.1-alpha2 : |