[vlc-devel] commit: Fixed socket setup in net_ListenSingle. (Laurent Aimar )

Marian Ďurkovič md at bts.sk
Fri Sep 5 08:25:58 CEST 2008


On Thu,  4 Sep 2008 23:06:09 +0200 (CEST), git version control wrote
> vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Thu Sep 
>  4 23:02:41 2008 +0200| [af9809f08d526644013988452415a22180d8533a] | 
> committer: Laurent Aimar
> 
> Fixed socket setup in net_ListenSingle.
> 
> (it was used by net_OpenDgram when no server is specified).

Yep, that indeed fixed UDP problems and #1919!

Could you please also backport your PTS_DELAY fix for RTP module into 0.9-bugfix?

For UDP access, we also need to change this:

diff --git a/modules/access/udp.c b/modules/access/udp.c
index 5a46d2a..7f9f88f 100644
--- a/modules/access/udp.c
+++ b/modules/access/udp.c
@@ -99,7 +99,7 @@ static int Open( vlc_object_t *p_this )
     /* Set up p_access */
     access_InitFields( p_access );
     ACCESS_SET_CALLBACKS( NULL, BlockUDP, Control, NULL );
-    p_access->info.b_prebuffered = false;
+    p_access->info.b_prebuffered = true;

     if (strlen (p_access->psz_access) > 0)
     {

(or, could someone eventually check why my commit access doesn't work anymore?)


   Thanks & kind regards,

          M.




More information about the vlc-devel mailing list