]> git.sesse.net Git - vlc/blobdiff - include/input_netlist.h
- �a compile sous FreeBSD (mais �a ne tourne pas)
[vlc] / include / input_netlist.h
index ac98bab50d6f356ed7927311d7b47e03ca0145e0..c5b6a0c3d0b80207883ac8b929649d5882bc0417 100644 (file)
@@ -1,32 +1,48 @@
-/*******************************************************************************
+/*****************************************************************************
  * input_netlist.h: netlist interface
- * (c)1998 VideoLAN
- *******************************************************************************
  * The netlists are an essential part of the input structure. We maintain a
  * list of free TS packets and free PES packets to avoid continuous malloc
  * and free.
- *******************************************************************************/
-
-/******************************************************************************
+ *****************************************************************************
+ * Copyright (C) 1998, 1999, 2000 VideoLAN
+ *
+ * Authors:
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ *****************************************************************************/
+
+#include "intf_msg.h"
+
+/*****************************************************************************
  * Prototypes
- ******************************************************************************/
-int input_NetlistOpen( input_thread_t *p_input );
-void input_NetlistClean( input_thread_t *p_input );
-/* ?? implement also a "normal" (non inline, non static) function in input_netlist.c,
-   which will be used when inline is disabled */
-/* ?? test */ static __inline__ void input_NetlistFreePES( input_thread_t *p_input,
-                                  pes_packet_t *p_pes_packet );
-static __inline__ void input_NetlistFreeTS( input_thread_t *p_input,
-                                 ts_packet_t *p_ts_packet );
+ *****************************************************************************/
+int     input_NetlistInit       ( input_thread_t *p_input );
+void    input_NetlistEnd        ( input_thread_t *p_input );
+
+static __inline__ void input_NetlistFreePES( input_thread_t *p_input, pes_packet_t *p_pes_packet );
+static __inline__ void input_NetlistFreeTS( input_thread_t *p_input, ts_packet_t *p_ts_packet );
 static __inline__ pes_packet_t* input_NetlistGetPES( input_thread_t *p_input );
 
-/*******************************************************************************
+/*****************************************************************************
  * input_NetlistFreePES: add a PES packet to the netlist
- *******************************************************************************
+ *****************************************************************************
  * Add a PES packet to the PES netlist, so that the packet can immediately be
  * reused by the demultiplexer. We put this function directly in the .h file,
  * because it is very frequently called.
- *******************************************************************************/
+ *****************************************************************************/
 static __inline__ void input_NetlistFreePES( input_thread_t *p_input,
                                   pes_packet_t *p_pes_packet )
 {
@@ -42,21 +58,21 @@ static __inline__ void input_NetlistFreePES( input_thread_t *p_input,
     p_ts_packet = p_pes_packet->p_first_ts;
     for( i_dummy = 0; i_dummy < p_pes_packet->i_ts_packets; i_dummy++ )
     {
-       ASSERT(p_ts_packet);
+        ASSERT(p_ts_packet);
 
 #ifdef INPUT_LIFO_TS_NETLIST
         p_input->netlist.i_ts_index--;
         p_input->netlist.p_ts_free[p_input->netlist.i_ts_index].iov_base
-                             = p_ts_packet;
+                             = (void *)p_ts_packet;
 #else /* FIFO */
         p_input->netlist.p_ts_free[p_input->netlist.i_ts_end].iov_base
-                             = p_ts_packet;
+                             = (void *)p_ts_packet;
         p_input->netlist.i_ts_end++;
         p_input->netlist.i_ts_end &= INPUT_MAX_TS; /* loop */
 #endif
         p_ts_packet = p_ts_packet->p_next_ts;
     }
-    
+
     /* Free the PES structure. */
 #ifdef INPUT_LIFO_PES_NETLIST
     p_input->netlist.i_pes_index--;
@@ -70,13 +86,13 @@ static __inline__ void input_NetlistFreePES( input_thread_t *p_input,
     vlc_mutex_unlock( &p_input->netlist.lock );
 }
 
-/*******************************************************************************
+/*****************************************************************************
  * input_NetlistFreeTS: add a TS packet to the netlist
- *******************************************************************************
+ *****************************************************************************
  * Add a TS packet to the TS netlist, so that the packet can immediately be
  * reused by the demultiplexer. Shouldn't be called by other threads (they
  * should only use input_FreePES.
- *******************************************************************************/
+ *****************************************************************************/
 static __inline__ void input_NetlistFreeTS( input_thread_t *p_input,
                                             ts_packet_t *p_ts_packet )
 {
@@ -88,9 +104,11 @@ static __inline__ void input_NetlistFreeTS( input_thread_t *p_input,
     /* Free the TS structure. */
 #ifdef INPUT_LIFO_TS_NETLIST
     p_input->netlist.i_ts_index--;
-    p_input->netlist.p_ts_free[p_input->netlist.i_ts_index].iov_base = p_ts_packet;
+    p_input->netlist.p_ts_free[p_input->netlist.i_ts_index].iov_base
+        = (void *)p_ts_packet;
 #else /* FIFO */
-    p_input->netlist.p_ts_free[p_input->netlist.i_ts_end].iov_base = p_ts_packet;
+    p_input->netlist.p_ts_free[p_input->netlist.i_ts_end].iov_base
+        = (void *)p_ts_packet;
     p_input->netlist.i_ts_end++;
     p_input->netlist.i_ts_end &= INPUT_MAX_TS; /* loop */
 #endif
@@ -98,19 +116,19 @@ static __inline__ void input_NetlistFreeTS( input_thread_t *p_input,
     vlc_mutex_unlock( &p_input->netlist.lock );
 }
 
-/*******************************************************************************
+/*****************************************************************************
  * input_NetlistGetPES: remove a PES packet from the netlist
- *******************************************************************************
+ *****************************************************************************
  * Add a TS packet to the TS netlist, so that the packet can immediately be
  * reused by the demultiplexer. Shouldn't be called by other threads (they
  * should only use input_FreePES.
- *******************************************************************************/
+ *****************************************************************************/
 static __inline__ pes_packet_t* input_NetlistGetPES( input_thread_t *p_input )
 {
     pes_packet_t *          p_pes_packet;
 
 #ifdef INPUT_LIFO_PES_NETLIST
-    /* i_pes_index might be accessed by a decoder thread to give back a 
+    /* i_pes_index might be accessed by a decoder thread to give back a
      * packet. */
     vlc_mutex_lock( &p_input->netlist.lock );