I am using the GPUImage Framework to my project. I create a class named GPUImageSixInputFilter, similar to GPUImageTwoInputFilter which can have a GPUImageFilter with six input. What I want to do is, add the 6 consecutive video frames to the GPUImageSixInputFilter. I know GPUImageBuffer can help, but after I create a GPUImageBuffer with size 6 and add the GPUImageVideoCamera to the buffer, how do I access the buffer and add the 6 frame to the filter?
GPUImageVideoCamera *videoCamera = [[GPUImageVideoCamera alloc]
initWithSessionPreset:AVCaptureSessionPresetLow
cameraPosition:AVCaptureDevicePositionBack];
videoCamera.outputImageOrientation = UIInterfaceOrientationPortrait;
GPUImageSixInputFilter *sixInputFilter = [[GPUImageSixInputFilter alloc]
initWithFragmentShaderFromFile:@"SixInputFilter"];
GPUImageBuffer *imageBuffer = [[GPUImageBuffer alloc] init];
[imageBuffer setBufferSize:6];
[videoCamera addTarget:imageBuffer];
// Code Here: To add the 6 frame in the imageBuffer to the sixInputFilter
[videoCamera startCameraCapture];