mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-23 12:44:19 +00:00
18 lines
316 B
Objective-C
18 lines
316 B
Objective-C
//
|
|
// VideoDecoderRenderer.h
|
|
// Limelight
|
|
//
|
|
// Created by Cameron Gutman on 10/18/14.
|
|
// Copyright (c) 2014 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface VideoDecoderRenderer : NSOperation
|
|
|
|
- (id)initWithTarget:(UIView *)target;
|
|
|
|
@property UIView* renderTarget;
|
|
|
|
@end
|