shithub: h264bsd

ref: c509757cc44c3bee93c02df77134df086a5084da
dir: /ios/src/H264bsdRendererGl.h/

View raw version
//
//  YuvDataRenderer.h
//  h264bsd
//
//  Created by Sam Leitch on 2014-03-30.
//  Copyright (c) 2014 h264bsd. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <GLKit/GLKit.h>
#import "H264bsdDecoder.h"

@interface H264bsdRendererGl : NSObject
@property (strong, readonly) EAGLContext *context;

- (id)initWithContext:(EAGLContext *)context;
- (void)renderNextOutputPictureWithDecoder:(H264bsdDecoder *)decoder;

@end