mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-03 00:06:31 +00:00
36 lines
890 B
Objective-C
36 lines
890 B
Objective-C
//
|
|
// StreamConfiguration.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 10/20/14.
|
|
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
@interface StreamConfiguration : NSObject
|
|
|
|
@property NSString* host;
|
|
@property unsigned short httpsPort;
|
|
@property NSString* appVersion;
|
|
@property NSString* gfeVersion;
|
|
@property NSString* appID;
|
|
@property NSString* appName;
|
|
@property NSString* rtspSessionUrl;
|
|
@property int serverCodecModeSupport;
|
|
@property int width;
|
|
@property int height;
|
|
@property int frameRate;
|
|
@property int bitRate;
|
|
@property int riKeyId;
|
|
@property NSData* riKey;
|
|
@property int gamepadMask;
|
|
@property BOOL optimizeGameSettings;
|
|
@property BOOL playAudioOnPC;
|
|
@property BOOL swapABXYButtons;
|
|
@property int audioConfiguration;
|
|
@property int supportedVideoFormats;
|
|
@property BOOL multiController;
|
|
@property BOOL useFramePacing;
|
|
@property NSData* serverCert;
|
|
|
|
@end
|