Commit 5178b240 authored by David Fuhrmann's avatar David Fuhrmann Committed by Felix Paul Kühne

macosx: Do not resume playback if start, stop or run-time is set

(cherry picked from commit ad30beeabe8228616b3cd92b88e07f8165f28c0d)
Signed-off-by: default avatarFelix Paul Kühne <fkuehne@videolan.org>
parent 071e0ab2
......@@ -1485,12 +1485,11 @@
if (!p_item)
return;
/* allow the user to over-write the start-time */
if (p_item->i_options > 0) {
for (int x = 0; x < p_item->i_options; x++) {
if (strstr(p_item->ppsz_options[x],"start-time"))
return;
}
/* allow the user to over-write the start/stop/run-time */
if (var_GetFloat(p_input_thread, "run-time") > 0 ||
var_GetFloat(p_input_thread, "start-time") > 0 ||
var_GetFloat(p_input_thread, "stop-time") > 0) {
return;
}
char *psz_url = decode_URI(input_item_GetURI(p_item));
......
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