Open obrhoff opened 9 years ago
+1 same here
+1
I will try to look into it over the weekend.
+1
This commit may have fixed this: b504080a03a33c42a25917a8babb986ccce4c52c
Tried add
[_input removeObserver:self forKeyPath:@"endOfInput"];
after
[self removeObserver:self forKeyPath:@"currentState"];
in ORGMEngine.m and works
+1
Resolved by adding:
[self.output release];
In class ORGMEngine
at function - (void)playUrl:(NSURL *)url withOutputUnitClass:(Class)outputUnitClass
:
ORGMOutputUnit *output = [[outputUnitClass alloc] initWithConverter:_converter]; output.outputFormat = _outputFormat; [self.output release]; self.output = output; [output release];
Sometimes Origiami Crashes because an KVO hasn't been unsubscribed while dealloc.