[vlc-commits] vout iOS: compilation fix

Felix Paul Kühne git at videolan.org
Fri Jul 31 14:34:56 CEST 2015


vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Fri Jul 31 14:23:24 2015 +0200| [9fcd480fae98fede0f90001ba73d9339e33c2d60] | committer: Felix Paul Kühne

vout iOS: compilation fix

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9fcd480fae98fede0f90001ba73d9339e33c2d60
---

 modules/video_output/ios2.m |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/video_output/ios2.m b/modules/video_output/ios2.m
index 52bfab7..73349c2 100644
--- a/modules/video_output/ios2.m
+++ b/modules/video_output/ios2.m
@@ -210,7 +210,7 @@ static int Open(vlc_object_t *this)
     CGFloat scaleFactor = sys->viewContainer.contentScaleFactor;
     CGSize viewSize = sys->viewContainer.bounds.size;
     vout_display_SendEventFullscreen(vd, false);
-    vout_display_SendEventDisplaySize(vd, viewSize.width * scaleFactor, viewSize.height * scaleFactor, false);
+    vout_display_SendEventDisplaySize(vd, viewSize.width * scaleFactor, viewSize.height * scaleFactor);
 
     /* */
     [[NSNotificationCenter defaultCenter] addObserver:sys->glESView



More information about the vlc-commits mailing list