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

View File

@@ -18,15 +18,21 @@
- (void)viewDidLoad
{
[super viewDidLoad];
[self.renderView setNeedsDisplay];
StreamView* streamView = [[StreamView alloc] initWithFrame:self.view.frame];
streamView.backgroundColor = [UIColor blackColor];
[self.view addSubview:streamView];
[streamView setNeedsDisplay];
// Do any additional setup after loading the view.
VideoDepacketizer* depacketizer = [[VideoDepacketizer alloc] init];
NSString* path = [[NSBundle mainBundle] pathForResource:@"notpadded"
ofType:@"h264"];
NSLog(@"Path: %@", path);
[depacketizer readFile:path];
VideoDepacketizer* depacketizer = [[VideoDepacketizer alloc] initWithFile:path renderTarget:streamView];
NSOperationQueue* opQueue = [[NSOperationQueue alloc] init];
[opQueue addOperation:depacketizer];
}