mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-23 20:53:49 +00:00
22 lines
505 B
Objective-C
22 lines
505 B
Objective-C
//
|
|
// VideoDepacketizer.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 VideoDepacketizer : NSOperation <NSStreamDelegate>
|
|
@property uint8_t* byteBuffer;
|
|
@property unsigned int offset;
|
|
@property VideoDecoder* decoder;
|
|
@property NSString* file;
|
|
@property UIView* target;
|
|
|
|
- (id) initWithFile:(NSString*) file renderTarget:(UIView*)renderTarget;
|
|
|
|
@end
|