|
From: Martin R. <ru...@us...> - 2004-08-30 14:35:30
|
Update of /cvsroot/foo/foo/libfoo/FOO In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11248 Modified Files: FOOSoundFile.h Log Message: added reopen method, comment support Index: FOOSoundFile.h =================================================================== RCS file: /cvsroot/foo/foo/libfoo/FOO/FOOSoundFile.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FOOSoundFile.h 13 Aug 2004 21:36:50 -0000 1.3 --- FOOSoundFile.h 30 Aug 2004 14:35:18 -0000 1.4 *************** *** 74,77 **** --- 74,78 ---- { NSString *_fileName; + NSString *_fileComment; SNDFILE *_file; SF_INFO _fileInfo; *************** *** 87,90 **** --- 88,92 ---- - (FOOSoundFile *) initWithFile: (NSString *)name; - (BOOL) open: (NSString *)name mode: (int)sndmode; + - (BOOL) reopenWithMode: (int)sndmode; - (BOOL) isOpen; - (BOOL) close; *************** *** 112,115 **** --- 114,120 ---- - (long) size; + - (NSString *) getFileComment; + - (int) setFileCommentFromString: (NSString *)fileComment; + - setCacheCapacity: (sf_count_t)frames; - prepareCache: (sf_count_t)fromFrame; |