Cameron Gutman
2014-10-19 00:09:47 -04:00
parent 4c3bc16593
commit 9b6865a53b
5 changed files with 126 additions and 18 deletions

View File

@@ -8,10 +8,12 @@
#import <Foundation/Foundation.h>
@interface VideoDecoderRenderer : NSOperation
@import AVFoundation;
- (id)initWithTarget:(UIView *)target;
@interface VideoDecoderRenderer : NSObject
@property UIView* renderTarget;
- (id)init;
- (void)submitDecodeBuffer:(unsigned char *)data length:(int)length;
@end