Skip to content

Commit

Permalink
Remove another manual 1088->1080 translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
stichnot committed Mar 6, 2013
1 parent 5b42adb commit 20c28b9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mythtv/libs/libmythtv/videooutbase.cpp
Expand Up @@ -1697,8 +1697,13 @@ void VideoOutput::ResizeForVideo(uint width, uint height)
return;
}

#if 0
// width and height should already be the properly cropped
// versions, and therefore height should not need this manual
// truncation. Delete this code if no problems crop up.
if ((width == 1920 || width == 1440) && height == 1088)
height = 1080; // ATSC 1920x1080
#endif

float rate = db_vdisp_profile ? db_vdisp_profile->GetOutput() : 0.0f;
if (display_res && display_res->SwitchToVideo(width, height, rate))
Expand Down

0 comments on commit 20c28b9

Please sign in to comment.