Commit 689f67e9 authored by David Fuhrmann's avatar David Fuhrmann

macosx: correctly reset video-splitter on video effects profile change

parent dddf319b
......@@ -565,10 +565,12 @@ static VLCVideoEffects *_o_sharedInstance = nil;
if (p_vout) {
var_SetString(p_vout, "video-filter", "");
var_SetString(p_vout, "sub-source", "");
var_SetString(p_vout, "video-splitter", "");
vlc_object_release(p_vout);
}
// video-splitter needs to be set via playlist var
var_SetString(pl_Get(p_intf), "video-splitter", "");
/* fetch preset */
NSArray *items = [[[defaults objectForKey:@"VideoEffectProfiles"] objectAtIndex:selectedProfile] componentsSeparatedByString:@";"];
......
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