forked from mirrors/linphone-iphone
18 lines
355 B
Objective-C
18 lines
355 B
Objective-C
//
|
|
// VideoZoomHandler.h
|
|
// linphone
|
|
//
|
|
// Created by Pierre-Eric Pelloux-Prayer on 25/04/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface VideoZoomHandler : NSObject {
|
|
float zoomLevel, cx, cy;
|
|
UIView* videoView;
|
|
}
|
|
-(void) setup: (UIView*) videoView;
|
|
-(void) resetZoom;
|
|
|
|
@end
|