Had to change this
Code:
diff --git a/xbmc/osx/ios/XBMCController.mm b/xbmc/osx/ios/XBMCController.mm
index 269b1ec..e11dfcc 100644
--- a/xbmc/osx/ios/XBMCController.mm
+++ b/xbmc/osx/ios/XBMCController.mm
@@ -58,9 +58,10 @@ extern NSString* kBRScreenSaverDismissed;
//--------------------------------------------------------------
//
-@interface XBMCController ()
-UIWindow *m_window;
-IOSEAGLView *m_glView;
+@interface XBMCController () {
+ UIWindow *m_window;
+ IOSEAGLView *m_glView;
+}
@end
@interface UIApplication (extended)
@@ -159,7 +160,7 @@ IOSEAGLView *m_glView;
[doubleFingerSingleTap release];
//1 finger single long tab - right mouse - alernative
- UITapGestureRecognizer *singleFingerSingleLongTap = [[UILongPressGestureRecognizer alloc]
+ UILongPressGestureRecognizer *singleFingerSingleLongTap = [[UILongPressGestureRecognizer alloc]
initWithTarget:self action:@selector(handleSingleFingerSingleLongTap:)];
singleFingerSingleLongTap.delaysTouchesBegan = YES;
singleFingerSingleLongTap.delaysTouchesEnded = YES;
Also changed code signing settings to use some profile, was too lazy to search for how to bypass apple signing, last time I did it took hours patching some Xcode binaries...
VTB... hmm no idea of what it is... searching... SD renders fine at 40% CPU.
EDIT:
VideoToolBoxDecoder maybe? :
Code:
04:25:56 T:218415104 DEBUG: CDVDFactoryCodec: compiled in hardware support: VDADecoder:no VideoToolBoxDecoder:yes CrystalHD:no OpenMax:no
04:25:56 T:218415104 DEBUG: FactoryCodec - Video: - Opening
04:25:56 T:218415104 DEBUG: DllAvUtilBase: Using libavutil system library
04:25:56 T:218415104 DEBUG: DllAvCodec: Using libavcodec system library
04:25:56 T:218415104 DEBUG: DllSwScale: Using libswscale system library
04:25:56 T:218415104 DEBUG: DllAvFilter: Using libavfilter system library
04:25:56 T:218415104 NOTICE: CDVDVideoCodecFFmpeg::Open() Using codec: H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
04:25:56 T:218415104 DEBUG: FactoryCodec - Video: ff-h264 - Opened
04:25:56 T:218415104 NOTICE: Creating video thread
04:25:56 T:273862656 NOTICE: running thread: video_thread
04:25:56 T:218415104 NOTICE: Opening audio stream: 1 source: 256
04:25:56 T:218415104 NOTICE: Finding audio codec for: 86019
EDIT2: Read some forums threads, I've basically followed README.ios instructions and (dumbly since there is no instructions about this in readme) hit run&build in Xcode.
So I guess I'm running it under mobile user and from what I've read it is probably sandboxed = not using VTB.