fixed rendering

This commit is contained in:
Diego Waxemberg
2014-01-18 19:14:57 -05:00
parent 029d3b0a97
commit f97fe7fce2
9 changed files with 89 additions and 72 deletions
+4 -2
View File
@@ -9,11 +9,13 @@
#import <Foundation/Foundation.h>
#import "VideoDecoder.h"
@interface VideoDepacketizer : NSObject <NSStreamDelegate>
@interface VideoDepacketizer : NSOperation <NSStreamDelegate>
@property uint8_t* byteBuffer;
@property unsigned int offset;
@property VideoDecoder* decoder;
@property NSString* file;
@property UIView* target;
- (void) readFile:(NSString*) file;
- (id) initWithFile:(NSString*) file renderTarget:(UIView*)renderTarget;
@end