Home
last modified time | relevance | path

Searched refs:psz_fontname (Results 1 – 13 of 13) sorted by relevance

/dports/multimedia/vlc/vlc-3.0.16/src/misc/
H A Dtext_style.c49 p_style->psz_fontname = NULL; in text_style_Create()
81 if( p_src->psz_fontname ) in text_style_Copy()
82 p_dst->psz_fontname = strdup( p_src->psz_fontname ); in text_style_Copy()
100 if( p_src->psz_fontname && (!p_dst->psz_fontname || b_override) ) in text_style_Merge()
102 free( p_dst->psz_fontname ); in text_style_Merge()
103 p_dst->psz_fontname = strdup( p_src->psz_fontname ); in text_style_Merge()
153 free( p_style->psz_fontname ); in text_style_Delete()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/arib/
H A Dsubstext.h27 char *psz_fontname; member
108 … r->p_text->style->psz_fontname = p_region->psz_fontname ? strdup( p_region->psz_fontname ) : NULL; in SubpictureTextUpdate()
128 free( p_region->psz_fontname ); in SubpictureTextDestroy()
H A Daribsub.c301 p_region->psz_fontname = NULL; in render()
/dports/multimedia/vlc/vlc-3.0.16/modules/text_renderer/freetype/
H A Dplatform_fonts.c481 const char *psz_fontname = (p_style->i_style_flags & STYLE_MONOSPACED) in SelectAndLoadFace() local
482 ? p_style->psz_monofontname : p_style->psz_fontname; in SelectAndLoadFace()
493 psz_fontfile = p_sys->pf_select( p_filter, psz_fontname, b_bold, b_italic, in SelectAndLoadFace()
502 psz_fontname, codepoint ); in SelectAndLoadFace()
593 char *psz_fontname = strdup( psz_font ); in Dummy_Select() local
595 return psz_fontname; in Dummy_Select()
H A Dfreetype.c985 p_sys->p_default_style->psz_fontname = var_InheritString( p_filter, "freetype-font" ); in FillDefaultStyles()
987 if( !p_sys->p_default_style->psz_fontname || !*p_sys->p_default_style->psz_fontname ) in FillDefaultStyles()
989 free( p_sys->p_default_style->psz_fontname ); in FillDefaultStyles()
991 p_sys->p_default_style->psz_fontname = strdup( DEFAULT_FAMILY ); in FillDefaultStyles()
993 p_sys->p_default_style->psz_fontname = File_Select( DEFAULT_FONT_FILE ); in FillDefaultStyles()
H A Dtext_layout.c600 ? p_style1->psz_monofontname : p_style1->psz_fontname; in FaceStyleEquals()
603 ? p_style2->psz_monofontname : p_style2->psz_fontname; in FaceStyleEquals()
/dports/multimedia/vlc/vlc-3.0.16/modules/text_renderer/freetype/fonts/
H A Dwin32.c597 char *psz_fontname; in Dummy_Select() local
600 if( asprintf( &psz_fontname, "%s\\%s", psz_win_fonts_path, psz_font ) == -1 ) in Dummy_Select()
601 psz_fontname = NULL; in Dummy_Select()
604 return psz_fontname; in Dummy_Select()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/webvtt/
H A Dcss_style.c174 free( p_style->psz_fontname ); in webvtt_FillStyleFromCssDeclaration()
175 p_style->psz_fontname = vlc_css_unquoted( psz_font ); in webvtt_FillStyleFromCssDeclaration()
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/
H A Dsubsdec.c814 free(p_segment->style->psz_fontname); in ParseSubtitles()
815 p_segment->style->psz_fontname = psz_attribute_value; in ParseSubtitles()
1023 free(p_segment->style->psz_fontname); in ParseSubtitles()
1024 p_segment->style->psz_fontname = strndup( &psz_subtitle[3], i_len ); in ParseSubtitles()
H A Dsubsusf.c667 free( p_ssa_style->p_style->psz_fontname ); in ParseUSFHeaderTags()
668 p_ssa_style->p_style->psz_fontname = strdup( val ); in ParseUSFHeaderTags()
/dports/multimedia/vlc/vlc-3.0.16/include/
H A Dvlc_text_style.h42 char * psz_fontname; /**< The name of the font */ member
/dports/multimedia/vlc/vlc-3.0.16/modules/codec/ttml/
H A Dsubsttml.c309 free( p_text_style->psz_fontname ); in FillTextStyle()
310 p_text_style->psz_fontname = strdup( psz_val ); in FillTextStyle()
/dports/multimedia/vlc/vlc-3.0.16/doc/
H A DChangeLog-20137673 Freetype: use psz_fontname