mamburu: Some more fixes
parent
1b818bcaa7
commit
c088011fd5
|
@ -122,6 +122,7 @@
|
||||||
|
|
||||||
- (void)dealloc
|
- (void)dealloc
|
||||||
{
|
{
|
||||||
|
[inputNode setShouldContinue:NO];
|
||||||
[[inputNode exitAtTheEndOfTheStream] signal];
|
[[inputNode exitAtTheEndOfTheStream] signal];
|
||||||
[[inputNode semaphore] signal];
|
[[inputNode semaphore] signal];
|
||||||
[[inputNode exitAtTheEndOfTheStream] wait]; // wait for decoder to be closed (see InputNode's -(void)process )
|
[[inputNode exitAtTheEndOfTheStream] wait]; // wait for decoder to be closed (see InputNode's -(void)process )
|
||||||
|
@ -198,8 +199,8 @@
|
||||||
|
|
||||||
- (BOOL)isRunning
|
- (BOOL)isRunning
|
||||||
{
|
{
|
||||||
InputNode *theInputNode = [self inputNode];
|
InputNode *node = [self inputNode];
|
||||||
if (nil != theInputNode && [theInputNode shouldContinue] && ![theInputNode endOfStream])
|
if (nil != node && [node shouldContinue] && ![node endOfStream])
|
||||||
{
|
{
|
||||||
return YES;
|
return YES;
|
||||||
}
|
}
|
||||||
|
|
|
@ -101,7 +101,7 @@
|
||||||
if ([keyPath isEqual:@"properties"]) {
|
if ([keyPath isEqual:@"properties"]) {
|
||||||
//Setup converter!
|
//Setup converter!
|
||||||
//Inform something of properties change
|
//Inform something of properties change
|
||||||
//Disable support until it is properly implimented.
|
//Disable support until it is properly implemented.
|
||||||
//[controller inputFormatDidChange: propertiesToASBD([decoder properties])];
|
//[controller inputFormatDidChange: propertiesToASBD([decoder properties])];
|
||||||
}
|
}
|
||||||
else if ([keyPath isEqual:@"metadata"]) {
|
else if ([keyPath isEqual:@"metadata"]) {
|
||||||
|
|
Loading…
Reference in New Issue