Here is the context of my problem. First there is a thread that gets started:
-(void)run_thread: (NSObject* )file_path_NSObject
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSString *local_recordFilePath_NSString = (NSString *)file_path_NSObject;
NSLog(@"run thread : path %@ ", local_recordFilePath_NSString);
printf("Running Thread...\n");
runAllAudioRoutines(local_recordFilePath_NSString);
// more code....
Everything above prints correctly to the console. Then there is the method that gets called:
void runAllAudioRoutines(NSString *file)
{
NSLog(@"running All Audio Routines method...\n");
NSString *truncatedFilePath = [file stringByReplacingOccurrencesOfString:@"LoopExtended.wav"
withString:@"recordedFile.wav"];
NSLog(@"FILE for !!!! --> %@",truncatedFilePath);
const char *location = [truncatedFilePath UTF8String];
const char *write_location = [file UTF8String];
int *vocal_data = read_wav(location, &size_vocal);
// more code....
The strange thing is that none of the NSLogs print at all. Nothing. Nada. Zip. And then the app crashes when it tries to pass the location to the read wav method (presumably because there is something wrong with the string).
This all started to happen when I switched from using NSTemporaryDirectory to NSBundle, but I'm not sure if that has anything to do with it. Any advice?
I've taken a Joetjah's suggestion and started using instead:
[self runAllAudioRoutines:local_recordFilePath_NSString];
-(void)runAllAudioRoutines:(NSString*) file
and now I get this:
Second run with 2nd suggestion from Joetjah
[self runAllAdioRoutines:local_recordFilePath_NSString];and the void-line to-(void) runAllAudioRoutines:(NSString*) file {doesn't work? Just to check ^^ – Joetjah Apr 13 '11 at 14:19run thread : path %@Try to allocate the string with:NSString *local_recordFilePath_NSString = [[NSString alloc] initWithString:file_path_NSObject];instead of your lineNSString *local_recordFilePath_NSString = (NSString *)file_path_NSObject;and see if it has any effect? – Joetjah Apr 13 '11 at 14:51