Do you tell about playlist_t ? and It is not used in libvlc, or it is not accessable via public libvlc api?<br><br><span id="result_box" class="short_text" lang="en"><span title="Нажмите, чтобы увидеть альтернативный перевод" class="hps">I am asking </span> <span title="Нажмите, чтобы увидеть альтернативный перевод" class="hps">because</span></span> I have found <span id="result_box" class="short_text" lang="en"><span title="Нажмите, чтобы увидеть альтернативный перевод" class="hps">following</span></span> code in qt4 plugin:<br>
<br>void MainInputManager::loopRepeatLoopStatus()<br>{<br>    /* Toggle Normal -> Loop -> Repeat -> Normal ... */<br>    if( var_GetBool( THEPL, "repeat" ) )<br>        var_SetBool( THEPL, "repeat", false );<br>
    else if( var_GetBool( THEPL, "loop" ) )<br>    {<br>        var_SetBool( THEPL, "loop", false );<br>        var_SetBool( THEPL, "repeat", true );<br>    }<br>    else<br>        var_SetBool( THEPL, "loop", true );<br>
}<br><br>Why I can't use same method via libvlc?<br><br><div class="gmail_quote">2011/7/25 Rémi Denis-Courmont <span dir="ltr"><<a href="mailto:remi@remlab.net">remi@remlab.net</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Le lundi 25 juillet 2011 17:35:25 Sergey Radionov, vous avez écrit :<br>
> I tried to find solution for <a href="http://trac.videolan.org/vlc/ticket/2934" target="_blank">http://trac.videolan.org/vlc/ticket/2934</a>, and<br>
> not found any way to set "autoloop" property via libvlc public API. Does it<br>
> exists?<br>
<br>
--loop and --repeat are VLC playlist options. Since LibVLC does not use the<br>
VLC playlist, this won't work. You need to loop manually.<br>
<font color="#888888"><br>
--<br>
Rémi Denis-Courmont<br>
<a href="http://www.remlab.net/" target="_blank">http://www.remlab.net/</a><br>
<a href="http://fi.linkedin.com/in/remidenis" target="_blank">http://fi.linkedin.com/in/remidenis</a><br>
_______________________________________________<br>
vlc-devel mailing list<br>
To unsubscribe or modify your subscription options:<br>
<a href="http://mailman.videolan.org/listinfo/vlc-devel" target="_blank">http://mailman.videolan.org/listinfo/vlc-devel</a><br>
</font></blockquote></div><br>