Package com.opentok.android
Interface PublisherKit.CustomVideoTransformer
- 
- Enclosing class:
 - PublisherKit
 
public static interface PublisherKit.CustomVideoTransformerDefines a custom transformer for a video stream, to be passed into theconstructor. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonTransform(BaseVideoRenderer.Frame frame)Called when a video frame is available to be transformed. 
 - 
 
- 
- 
Method Detail
- 
onTransform
void onTransform(BaseVideoRenderer.Frame frame)
Called when a video frame is available to be transformed. Transform the data in your implementation of the method. The method is only called after the (@link PublisherKit.setVideoTransformers(videoTransformers)} method is called.- Parameters:
 frame- The frame to be transformed.
 
 - 
 
 -