mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-23 04:33:05 +00:00
28 lines
396 B
Objective-C
28 lines
396 B
Objective-C
//
|
|
// VideoDecoderRenderer.m
|
|
// Limelight
|
|
//
|
|
// Created by Cameron Gutman on 10/18/14.
|
|
// Copyright (c) 2014 Limelight Stream. All rights reserved.
|
|
//
|
|
|
|
#import "VideoDecoderRenderer.h"
|
|
|
|
@implementation VideoDecoderRenderer
|
|
|
|
- (id)initWithTarget:(UIView *)target
|
|
{
|
|
self = [super init];
|
|
|
|
self.renderTarget = target;
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)main
|
|
{
|
|
NSLog(@"Hi");
|
|
}
|
|
|
|
@end
|