]> git.sesse.net Git - vlc/blobdiff - modules/access_output/udp.c
block_FifoNew: remove un-needed parameter
[vlc] / modules / access_output / udp.c
index 0ef2828532e445ca30ba832328e841c021b328a9..82960a294a7a0185d2a7723b6b325cdca8969c5c 100644 (file)
@@ -221,8 +221,8 @@ static int Open( vlc_object_t *p_this )
     p_sys->p_thread->p_sout = p_access->p_sout;
     p_sys->p_thread->b_die  = 0;
     p_sys->p_thread->b_error= 0;
-    p_sys->p_thread->p_fifo = block_FifoNew( p_access );
-    p_sys->p_thread->p_empty_blocks = block_FifoNew( p_access );
+    p_sys->p_thread->p_fifo = block_FifoNew();
+    p_sys->p_thread->p_empty_blocks = block_FifoNew();
 
     i_handle = net_ConnectDgram( p_this, psz_dst_addr, i_dst_port, -1,
                                  IPPROTO_UDP );