added simple depacketizer and test h264 file

This commit is contained in:
Diego Waxemberg
2014-01-18 05:00:36 -05:00
parent 8fdc5ad97b
commit d7a703828a
7 changed files with 165 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
//
// VideoDecoder.h
// Limelight-iOS
//
// Created by Diego Waxemberg on 1/18/14.
// Copyright (c) 2014 Diego Waxemberg. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface VideoDecoder : NSObject
- (void) decode:(uint8_t*)buffer length:(unsigned int)length;
@end