summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2019-12-09 11:17:52 -0500
committerNicoleYarroch <nicole@livio.io>2019-12-09 11:17:52 -0500
commit46363b2752f8df3a8878fcdd66722c75e16f1d97 (patch)
tree8e214442b56ec814425cd22f439f98f46d0c7436
parentb62c73bb5dc033237674f9209ac88f9a79d9d06c (diff)
downloadsdl_ios-bugfix/issue_1481_video_streaming_does_not_start.tar.gz
-rw-r--r--SmartDeviceLink/SDLStreamingVideoLifecycleManager.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLStreamingVideoLifecycleManager.m b/SmartDeviceLink/SDLStreamingVideoLifecycleManager.m
index 579dcd105..d758b127c 100644
--- a/SmartDeviceLink/SDLStreamingVideoLifecycleManager.m
+++ b/SmartDeviceLink/SDLStreamingVideoLifecycleManager.m
@@ -571,7 +571,7 @@ typedef void(^SDLVideoCapabilityResponseHandler)(SDLVideoStreamingCapability *_N
}
SDLLogD(@"Received Register App Interface");
- SDLRegisterAppInterfaceResponse* registerResponse = (SDLRegisterAppInterfaceResponse*)notification.response;
+ SDLRegisterAppInterfaceResponse *registerResponse = (SDLRegisterAppInterfaceResponse*)notification.response;
SDLLogV(@"Determining whether streaming is supported");
#pragma clang diagnostic push
@@ -589,7 +589,7 @@ typedef void(^SDLVideoCapabilityResponseHandler)(SDLVideoStreamingCapability *_N
}
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated"
- SDLImageResolution* resolution = registerResponse.displayCapabilities.screenParams.resolution;
+ SDLImageResolution *resolution = registerResponse.displayCapabilities.screenParams.resolution;
#pragma clang diagnostic pop
if (resolution != nil) {
self.videoScaleManager.displayViewportResolution = CGSizeMake(resolution.resolutionWidth.floatValue,