mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-04-08 00:36:21 +00:00
20 lines
413 B
Objective-C
20 lines
413 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 : NSObject <NSStreamDelegate>
|
|
@property uint8_t* byteBuffer;
|
|
@property unsigned int offset;
|
|
@property VideoDecoder* decoder;
|
|
|
|
- (void) readFile:(NSString*) file;
|
|
|
|
@end
|