Ticket #2634: BBCHD_1088.diff
File BBCHD_1088.diff, 979 bytes (added by , 19 years ago) |
---|
-
mythtv-vid/libs/libmythtv/videooutbase.cpp
1475 1475 { 1476 1476 if (QSize(1920, 1088) == raw) 1477 1477 return QSize(1920, 1080); 1478 if (QSize(1440, 1088) == raw) 1479 return QSize(1440, 1080); 1478 1480 return raw; 1479 1481 } 1480 1482 -
mythtv-vid/libs/libmythtv/videoout_xv.cpp
340 340 */ 341 341 void VideoOutputXv::ResizeForVideo(uint width, uint height) 342 342 { 343 if ( width == 1920&& height == 1088)343 if ((width == 1920 || width == 1440) && height == 1088) 344 344 height = 1080; // ATSC 1920x1080 345 345 346 346 if (display_res && display_res->SwitchToVideo(width, height))