Class ACSStreamSize

Declaration

@interface ACSStreamSize : NSObject;

Description

The video stream size

Methods

initWithWidth

-(instancetype)initWithWidth:(int) width
                      height:(int) height;

Parameters

  • width - The width of the video stream.
  • height - The height of the video stream.

Properties

width

The width

@property(readonly) int width;

height

The height

@property(readonly) int height;