<div dir="ltr">Hi,<div>The patch is to check only if the <span style="font-size:12.8px">p_sys->rtsp is already created. That should be enough to allow the video to be paused. Right now, both PAUSE and SEEK have the same check and takes into account also the video duration, which might be zero for live cameras.</span></div><div><span style="font-size:12.8px">Do you agree?</span></div><div><span style="font-size:12.8px">Thanks,</span></div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-10-04 5:00 GMT-03:00 Rémi Denis-Courmont <span dir="ltr"><<a href="mailto:remi@remlab.net" target="_blank">remi@remlab.net</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">Le 2015-10-02 08:53, Paulo Vitor Magacho da Silva a écrit :<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
---<br>
 modules/access/live555.cpp | 7 +++++++<br>
 1 file changed, 7 insertions(+)<br>
<br>
diff --git a/modules/access/live555.cpp b/modules/access/live555.cpp<br>
index efd66f3..9d7b90e 100644<br>
--- a/modules/access/live555.cpp<br>
+++ b/modules/access/live555.cpp<br>
@@ -1542,6 +1542,13 @@ static int Control( demux_t *p_demux, int<br>
i_query, va_list args )<br>
<br>
         /* Special for access_demux */<br>
         case DEMUX_CAN_PAUSE:<br>
+            pb = (bool*)va_arg( args, bool * );<br>
+            if( p_sys->rtsp )<br>
+                *pb = true;<br>
+            else<br>
+                *pb = false;<br>
+            return VLC_SUCCESS;<br>
+<br>
</blockquote>
<br></span>
The bug seems real, but I do not understand how that will fix it. p_sys->rtsp is non-NULL if there is an RTSP session, regardless of the stream being live/seekable.<div class="HOEnZb"><div class="h5"><br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
         case DEMUX_CAN_SEEK:<br>
             pb = (bool*)va_arg( args, bool * );<br>
             if( p_sys->rtsp && p_sys->f_npt_length > 0 )<br>
</blockquote>
<br>
-- <br></div></div><span class="HOEnZb"><font color="#888888">
Rémi Denis-Courmont<br>
<a href="http://www.remlab.net/" rel="noreferrer" target="_blank">http://www.remlab.net/</a><br>
</font></span></blockquote></div><br></div>