You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
716 B
22 lines
716 B
//
|
|
// SCProcessingModuleUtils.h
|
|
// Snapchat
|
|
//
|
|
// Created by Brian Ng on 11/10/17.
|
|
//
|
|
|
|
#import <CoreImage/CoreImage.h>
|
|
#import <CoreMedia/CoreMedia.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface SCProcessingModuleUtils : NSObject
|
|
|
|
+ (CVPixelBufferRef)pixelBufferFromImage:(CIImage *)image
|
|
bufferPool:(CVPixelBufferPoolRef)bufferPool
|
|
context:(CIContext *)context;
|
|
|
|
+ (CMSampleBufferRef)sampleBufferFromImage:(CIImage *)image
|
|
oldSampleBuffer:(CMSampleBufferRef)oldSampleBuffer
|
|
bufferPool:(CVPixelBufferPoolRef)bufferPool
|
|
context:(CIContext *)context;
|
|
@end
|