super(name);
MutableFrameFormat retargeted = inputFormat.mutableCopy(); retargeted.setTarget(mTarget); return retargeted;
// Get input frame Frame input = pullInput("frame"); // Create output frame Frame output = context.getFrameManager().duplicateFrameToTarget(input, mTarget); // Push output pushOutput("frame", output); // Release pushed frame output.release();
// Setup target mTarget = FrameFormat.readTargetString(mTargetString); // Add ports addInputPort("frame"); addOutputBasedOnInput("frame", "frame");