Commit c4bf7a64 authored by Vicente Jimenez Aguilar's avatar Vicente Jimenez Aguilar Committed by Jean-Baptiste Kempf

Missing use of options in test.html added playlist items.

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 8f601a32
...@@ -570,7 +570,7 @@ function doAdd(targetURL) ...@@ -570,7 +570,7 @@ function doAdd(targetURL)
var options = new Array(":vout-filter=deinterlace", ":deinterlace-mode=linear"); var options = new Array(":vout-filter=deinterlace", ":deinterlace-mode=linear");
if( vlc ) if( vlc )
{ {
vlc.playlist.add(targetURL); vlc.playlist.add(targetURL, "", options);
doItemCount(); doItemCount();
} }
} }
......
...@@ -570,7 +570,7 @@ function doAdd(targetURL) ...@@ -570,7 +570,7 @@ function doAdd(targetURL)
var options = new Array(":vout-filter=deinterlace", ":deinterlace-mode=linear"); var options = new Array(":vout-filter=deinterlace", ":deinterlace-mode=linear");
if( vlc ) if( vlc )
{ {
vlc.playlist.add(targetURL); vlc.playlist.add(targetURL, "", options);
doItemCount(); doItemCount();
} }
} }
......
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