when the video is 4:3 the subtitles are still stretched to 16:9, and its really annoying on a big tv since you have to focus outside the actual video
so it would be nice if the subs were drawn as 4:3
when the video is 4:3 the subtitles are still stretched to 16:9, and its really annoying on a big tv since you have to focus outside the actual video
so it would be nice if the subs were drawn as 4:3
My 4:3 DVB-t subtitles are drawn perfect. Good work. My MediaPortal is almost perfect now.
if (GUIGraphicsContext.IsFullScreenVideo)
{
rationW = GUIGraphicsContext.OverScanWidth / (float)720;
rationH = GUIGraphicsContext.OverScanHeight / (float)576;
// Get the location to render the subtitle to
wx = GUIGraphicsContext.OverScanLeft +
(int)(((float)(GUIGraphicsContext.Width - currentSubtitle.width * rationW)) / 2);
wy = GUIGraphicsContext.OverScanTop + (int)(rationH * (float)currentSubtitle.firstScanLine);
}
yep, 16:9 tv, normal view mode
Then i would hazard a guess that Aanunina is either viewing on a 4:3 display or just happen to have watched subtitles that didnt take up too much space.
I dont think GUIGraphicsContext.OverScanWidth takes into account for example the black left and right side bars used when displaying 4:3 on a 16:9 display.