Commit 639c139e authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: soutmrl: fix transcode filters enumeration (fix #8219)

According to documentation, must be colon separated instead of commas.
Also removes list enclosure.
parent 03d6a4e2
......@@ -251,7 +251,7 @@ void VLCProfileSelector::updateOptions( int i )
if ( !value.isEmpty() )
{
QStringList valuesList = QUrl::fromPercentEncoding( value.toAscii() ).split( ";" );
smrl.option( "vfilter", QString("{%1}").arg( valuesList.join( "," ) ) );
smrl.option( "vfilter", valuesList.join( ":" ) );
}
/*if ( codec is h264 )*/
......@@ -317,7 +317,7 @@ void VLCProfileSelector::updateOptions( int i )
if ( !value.isEmpty() )
{
QStringList valuesList = QUrl::fromPercentEncoding( value.toAscii() ).split( ";" );
smrl.option( "afilter", QString("{%1}").arg( valuesList.join( "," ) ) );
smrl.option( "afilter", valuesList.join( ":" ) );
}
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment