private void EnforceSettings(FfdShowLib ffdShowLib) { // Subtitles ffdShowLib.DoShowSubtitles = ProTONEConfig.SubEnabled; if (ProTONEConfig.SubEnabled) { ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_fontColor, ColorHelper.BGR(ProTONEConfig.SubColor)); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_fontSizeA, ProTONEConfig.SubFont.Height); ffdShowLib.setStringParam(FFDShowConstants.FFDShowDataId.IDFF_fontName, ProTONEConfig.SubFont.OriginalFontName); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_fontCharset, ProTONEConfig.SubFont.GdiCharSet); LOGFONT lf = new LOGFONT(); ProTONEConfig.SubFont.ToLogFont(lf); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_fontWeight, lf.lfWeight); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_fontItalic, lf.lfItalic); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_fontUnderline, lf.lfUnderline); } if (ProTONEConfig.OsdEnabled) { ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_OSDfontColor, ColorHelper.BGR(ProTONEConfig.OsdColor)); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_OSDfontSize, ProTONEConfig.OsdFont.Height); ffdShowLib.setStringParam(FFDShowConstants.FFDShowDataId.IDFF_OSDfontName, ProTONEConfig.OsdFont.OriginalFontName); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_OSDfontCharset, ProTONEConfig.OsdFont.GdiCharSet); LOGFONT lf = new LOGFONT(); ProTONEConfig.OsdFont.ToLogFont(lf); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_OSDfontWeight, lf.lfWeight); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_OSDfontItalic, lf.lfItalic); ffdShowLib.setIntParam(FFDShowConstants.FFDShowDataId.IDFF_OSDfontUnderline, lf.lfUnderline); } }