diff options
author | Damiano Galassi <[email protected]> | 2016-12-27 11:42:27 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-12-27 11:42:27 +0100 |
commit | ec1553108f3881a380904bcc8be7c19a626cb69a (patch) | |
tree | 27529c561dacc161c532f4cfea0185b3a6feb090 /macosx/HBAudio.m | |
parent | 5b8ac227c6ae46a7f58319ca9c0aa73f775e4ee1 (diff) |
MacGui: fix audio and subtitles tracks when reloading a job from the queue.
Diffstat (limited to 'macosx/HBAudio.m')
-rw-r--r-- | macosx/HBAudio.m | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/macosx/HBAudio.m b/macosx/HBAudio.m index 20862938c..1faae116e 100644 --- a/macosx/HBAudio.m +++ b/macosx/HBAudio.m @@ -244,16 +244,18 @@ NSString *HBAudioChangedNotification = @"HBAudioChangedNotification"; if (copy) { copy->_container = _container; - copy->_sourceTracks = [_sourceTracks mutableCopy]; + copy->_sourceTracks = [_sourceTracks copy]; copy->_tracks = [[NSMutableArray alloc] init]; - [_tracks enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) { - if (idx < _tracks.count) - { - id trackCopy = [obj copy]; - [copy->_tracks addObject:trackCopy]; - } - }]; + + for (HBAudioTrack *track in _tracks) + { + HBAudioTrack *trackCopy = [track copy]; + [copy->_tracks addObject:trackCopy]; + + trackCopy.dataSource = copy; + trackCopy.delegate = copy; + } copy->_defaults = [_defaults copy]; } |