# iOS mobile app stream not get the full screen view, this error some time occur in random, How to we fix this..? Please any one help us...!

**URL:** https://community.wowza.com/t/ios-mobile-app-stream-not-get-the-full-screen-view-this-error-some-time-occur-in-random-how-to-we-fix-this-please-any-one-help-us/52960
**Category:** Wowza Streaming Engine
**Created:** [March 8, 2019, 4:55pm UTC](https://community.wowza.com/t/ios-mobile-app-stream-not-get-the-full-screen-view-this-error-some-time-occur-in-random-how-to-we-fix-this-please-any-one-help-us/52960 "2019-03-08T16:55:18Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Kumar\_Ramar](https://avatars.discourse-cdn.com/v4/letter/k/db5fbb/32.png) [@Kumar\_Ramar](https://community.wowza.com/u/Kumar_Ramar)
#### Post date: [March 8, 2019, 4:55pm UTC](https://community.wowza.com/t/ios-mobile-app-stream-not-get-the-full-screen-view-this-error-some-time-occur-in-random-how-to-we-fix-this-please-any-one-help-us/52960/1 "2019-03-08T16:55:18Z")

</div>

iOS mobile app stream not get the full screen view, this error some time occur in random, How to we fix this…? Please any one help us…!

1.Stream start working good and we can get the stream is work fine , but Wowza player view not get the full screen in mobile.

2.In iPhone to get the stream if we set the video width and height in app side or set in server or Wowza Stream Engine…,

please give the one better solution as soon as possible…!

---

<div class="post-metadata">

### Author: ![Rose\_Power-Wowza\_Com](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/rose_power-wowza_com/32/431_2.png) [@Rose\_Power-Wowza\_Com](https://community.wowza.com/u/Rose_Power-Wowza_Com)
#### Post date: [March 8, 2019, 5:27pm UTC](https://community.wowza.com/t/ios-mobile-app-stream-not-get-the-full-screen-view-this-error-some-time-occur-in-random-how-to-we-fix-this-please-any-one-help-us/52960/2 "2019-03-08T17:27:08Z")

</div>

Unfortunately the preview size will be chosen by the iOS device and can’t be changed on our side. You can change it on the app side @Kumar Ramar.

If you select 480x720 as an example, iOS will choose the next available supported frame size for your video preview, then we’ll scale the video to the set broadcast size.

e.g. for my iPhone device it selects 1280x720 for my preview size then we will scale down to the broadcast size of 480x720.

019-01-29 16:48:00.327011-0800 iOSSDKBroadcast[16652:9702825] WowzaGoCoderSDK: correctBufferOrientation: transforming frames:  
x-scale = 0.56  
y-scale = 0.56  
x-translate = 437.50  
y-translate = 0.00  
outWidth = 1280  
outHeight = 720  
angle = 0  
broadcast orientation = 0  
2019-01-29 16:48:00.327265-0800 iOSSDKBroadcast[16652:9702825] WowzaGoCoderSDK: correctBufferOrientation: scaling frame for non-canonical config:  
frameScale = 0.56  
outWidth = 480  
outHeight = 720  
x-translate = 0.00  
y-translate = 0.00

You’ll need to set your frame size like this if you want to broadcast 480x720: (Again only as an example).

```auto
    goCoderBroadcastConfig.videoWidth = 480;

```

```auto
    goCoderBroadcastConfig.videoHeight = 720;

```

---

<div class="post-metadata">

### Author: ![Rose\_Power-Wowza\_Com](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/rose_power-wowza_com/32/431_2.png) [@Rose\_Power-Wowza\_Com](https://community.wowza.com/u/Rose_Power-Wowza_Com)
#### Post date: [March 8, 2019, 5:27pm UTC](https://community.wowza.com/t/ios-mobile-app-stream-not-get-the-full-screen-view-this-error-some-time-occur-in-random-how-to-we-fix-this-please-any-one-help-us/52960/3 "2019-03-08T17:27:37Z")

</div>

The iOS device will only allow supported frame sizes for the SDK preview.

e.g. An iPhone 7+ only supports 720p and 1080p.
