added video rendering libraries and renderer code. still not functioning

This commit is contained in:
Diego Waxemberg
2014-01-18 14:05:19 -05:00
parent 87d8d117c1
commit 029d3b0a97
298 changed files with 70432 additions and 56 deletions
+17
View File
@@ -0,0 +1,17 @@
//
// VideoRenderer.h
// Limelight-iOS
//
// Created by Diego Waxemberg on 1/18/14.
// Copyright (c) 2014 Diego Waxemberg. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "VideoDecoder.h"
@interface VideoRenderer : NSOperation
@property UIView* renderTarget;
@property VideoDecoder* decoder;
- (id) initWithTarget:(UIView*)renderTarget;
@end