ResolutionInfo createResolutionInfo(int width, int height, int aspectNumerator, int aspectDenominator) {
Resolution resolution = new Resolution(width, height, aspectNumerator, aspectDenominator);
List<Resolution> supported = new ArrayList<Resolution>(1);
supported.add(resolution);
return new ResolutionInfo(resolution, supported);
}