mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-22 04:03:19 +00:00
22 lines
500 B
Objective-C
22 lines
500 B
Objective-C
//
|
|
// VideoDecoderRenderer.h
|
|
// Limelight
|
|
//
|
|
// Created by Cameron Gutman on 10/18/14.
|
|
// Copyright (c) 2014 Limelight 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;
|
|
|
|
- (void)submitDecodeBuffer:(unsigned char *)data length:(int)length;
|
|
|
|
@end
|