# HG changeset patch # User eugeni # Date 1171576989 0 # Node ID 4a958bd0892069d18b4fad68fa884e8bac329f6f # Parent 5add218bb6c3053269b1078a91fc347b596f2849 Select the first charmap in the font, if FreeType did not autoselect any. This happens, for example, with fonts only having an Apple Roman charmap. diff -r 5add218bb6c3 -r 4a958bd08920 help/help_mp-en.h --- a/help/help_mp-en.h Thu Feb 15 21:53:28 2007 +0000 +++ b/help/help_mp-en.h Thu Feb 15 22:03:09 2007 +0000 @@ -2049,3 +2049,5 @@ #define MSGTR_LIBASS_GlyphNotFoundReselectingFont "[ass] Glyph 0x%X not found, reselecting font for (%s, %d, %d)\n" #define MSGTR_LIBASS_GlyphNotFound "[ass] Glyph 0x%X not found in font for (%s, %d, %d)\n" #define MSGTR_LIBASS_ErrorOpeningMemoryFont "[ass] Error opening memory font: %s\n" +#define MSGTR_LIBASS_NoCharmaps "[ass] font face with no charmaps\n" +#define MSGTR_LIBASS_NoCharmapAutodetected "[ass] no charmap autodetected, trying the first one\n" diff -r 5add218bb6c3 -r 4a958bd08920 libass/ass_font.c --- a/libass/ass_font.c Thu Feb 15 21:53:28 2007 +0000 +++ b/libass/ass_font.c Thu Feb 15 22:03:09 2007 +0000 @@ -47,9 +47,19 @@ unsigned eid = cmap->encoding_id; if (pid == 3 /*microsoft*/ && (eid == 1 /*unicode bmp*/ || eid == 10 /*full unicode*/)) { FT_Set_Charmap(face, cmap); - break; + return; } } + + if (!face->charmap) { + if (face->num_charmaps == 0) { + mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_NoCharmaps); + return; + } + mp_msg(MSGT_ASS, MSGL_WARN, MSGTR_LIBASS_NoCharmapAutodetected); + FT_Set_Charmap(face, face->charmaps[0]); + return; + } } /**