throw new RuntimeException("No parent frame");
}
public void onTransmitRTP()
{
RTPTransmitWizard w = new RTPTransmitWizard(getParentFrame(), prefs.rtpTransmitWizardConfig);
boolean result = w.run();
// store preferences if successful
if (result)
{
containerPlayer.setRealizedStartedProcessor(w.getResult().processor);
prefs.rtpTransmitWizardConfig = w.getConfig(); // TODO: this is the same object, we need to copy somewhere.
savePrefs();
}
}