System.out.println(f1);
assertFalse(f1.isSameEncoding(f1));
assertFalse(f1.isSameEncoding(f1.getEncoding()));
}
assertEquals(f1, f1.clone());
assertFalse(f1.clone() == f1);
if (f1 instanceof VideoFormat)
{ final VideoFormat vf1 = (VideoFormat) f1;
if (vf1.getSize() != null)
assertFalse(vf1.getSize() == ((VideoFormat) vf1.clone()).getSize());