WowzaConfig

Conforms to:
NSMutableCopying, NSCopying, NSCoding
Superclass:
Declared In:

Introduction

Applications use the top-level WowzaConfig class to configure various GoCoder SDK components.

@code // Example: WowzaConfig *goCoderConfig = [[WowzaConfig alloc] initWithPreset:WOWZFrameSizePreset1280x720]; goCoderConfig.hostAddress = @"live.streamingserver.com"; goCoderConfig.applicationName = @"LiveStreamingApp"; goCoderConfig.capturedVideoRotates = NO;



Methods

-copyTo:
-initWithPreset:

copyTo:


- (void) copyTo:(nonnull WowzaConfig *)other; 
Parameters
other

The WowzaConfig object to copy to.

Discussion

Copies receiver to the specified WowzaConfig.


initWithPreset:


- (nonnull instancetype) initWithPreset:(WOWZFrameSizePreset)preset; 
Parameters
preset

A WOWZFrameSizePreset.

Return Value

An instance of WowzaConfig.

Discussion

Initializes a WowzaConfig instance with a video frame-size preset.