I've compiled 1.0.2 with --enabled-svg, everything was compiled successfully but when I set --text-renderer=svg I get the following error:
main error: no text renderer module matched "svg"
j-b, anything I can do or check?
Code: Select all
module_t **p_list = module_list_get( NULL );
module_t *p_module;
for( unsigned int i = 0; (p_module = p_list[i] ) != NULL; i++ )
{
QStringList qs_item;
qs_item << qfu( module_get_name( p_module, true ) )
<< qfu( module_get_capability( p_module ) )
<< QString::number( module_get_score( p_module ) );
#ifndef DEBUG
if( qs_item.at(1).isEmpty() ) continue;
#endif
QTreeWidgetItem *item = new PluginTreeItem( qs_item );
treePlugins->addTopLevelItem( item );
}
You mean the part that loads them?I couldn't find the place where the plugins are being identified, can you please give me a direction?
I think freetype is the preferred one.What is the preferred plugin to render text instead of freetype?
Code: Select all
#define TEXTRENDERER_TEXT N_("Text rendering module")
#define TEXTRENDERER_LONGTEXT N_( \
"VLC normally uses Freetype for rendering, but this allows you to use svg for instance.")
Return to “VLC media player for Windows Troubleshooting”
Users browsing this forum: No registered users and 76 guests