From: Damiano Galassi Date: Tue, 27 Dec 2016 10:42:27 +0000 (+0100) Subject: MacGui: fix audio and subtitles tracks when reloading a job from the queue. X-Git-Tag: 1.0.1~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1040fe1f589834fcebf052b9bc48fda34af4b57a;p=handbrake MacGui: fix audio and subtitles tracks when reloading a job from the queue. (cherry picked from commit ec1553108f3881a380904bcc8be7c19a626cb69a) --- 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]; } diff --git a/macosx/HBSubtitles.m b/macosx/HBSubtitles.m index 44113974d..549d06647 100644 --- a/macosx/HBSubtitles.m +++ b/macosx/HBSubtitles.m @@ -405,16 +405,18 @@ extern NSString *keySubTrackSrtFileURL; 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 (HBSubtitlesTrack *track in _tracks) + { + HBSubtitlesTrack *trackCopy = [track copy]; + [copy->_tracks addObject:trackCopy]; + + trackCopy.dataSource = copy; + trackCopy.delegate = copy; + } copy->_defaults = [_defaults copy]; }