mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-27 14:45:34 +00:00
22 lines
499 B
Objective-C
22 lines
499 B
Objective-C
//
|
|
// VideoDecoderRenderer.h
|
|
// Moonlight
|
|
//
|
|
// Created by Cameron Gutman on 10/18/14.
|
|
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@import AVFoundation;
|
|
|
|
@interface VideoDecoderRenderer : NSObject
|
|
|
|
- (id)initWithView:(UIView*)view;
|
|
|
|
- (void)updateBufferForRange:(CMBlockBufferRef)existingBuffer data:(unsigned char *)data offset:(int)offset length:(int)nalLength;
|
|
|
|
- (int)submitDecodeBuffer:(unsigned char *)data length:(int)length;
|
|
|
|
@end
|