Commit 48b0c407 authored by Clément Stenac's avatar Clément Stenac

Handle module variables in sout options parser

parent f2d226da
...@@ -993,6 +993,7 @@ void __sout_CfgParse( vlc_object_t *p_this, char *psz_prefix, ...@@ -993,6 +993,7 @@ void __sout_CfgParse( vlc_object_t *p_this, char *psz_prefix,
val.f_float = atof( cfg->psz_value ? cfg->psz_value : "0" ); val.f_float = atof( cfg->psz_value ? cfg->psz_value : "0" );
break; break;
case VLC_VAR_STRING: case VLC_VAR_STRING:
case VLC_VAR_MODULE:
val.psz_string = cfg->psz_value; val.psz_string = cfg->psz_value;
break; break;
default: default:
......
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