]> git.sesse.net Git - vlc/blobdiff - src/input/input_pcr.c
D�but du portage BeOS. Beaucoup de fuchiers ont �t� modifi� car il a fallu
[vlc] / src / input / input_pcr.c
index a4f9cb26b73d502363979ada49e8ca0c799cc946..57af8a70b35cf91ccf095919e43ddac8d16f8a05 100644 (file)
@@ -1,36 +1,53 @@
-/*******************************************************************************
- * pcr.c: PCR management 
- * (c)1999 VideoLAN
- *******************************************************************************
+/*****************************************************************************
+ * pcr.c: PCR management
  * Manages structures containing PCR information.
- *******************************************************************************/
+ *****************************************************************************
+ * Copyright (C) 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.
+ *****************************************************************************/
 
-/*******************************************************************************
+/*****************************************************************************
  * Preamble
- *******************************************************************************/
-#include <stdio.h>
-#include <sys/uio.h>                                                 /* iovec */
-#include <stdlib.h>                               /* atoi(), malloc(), free() */
-#include <netinet/in.h>
+ *****************************************************************************/
+#include <sys/types.h>                        /* on BSD, uio.h needs types.h */
+#include <sys/uio.h>                                            /* "input.h" */
+#include <stdlib.h>                              /* atoi(), malloc(), free() */
+#include <netinet/in.h>                                           /* ntohl() */
 
+#include "threads.h"
 #include "config.h"
 #include "common.h"
 #include "mtime.h"
-#include "vlc_thread.h"
 #include "debug.h"
 #include "input.h"
 #include "intf_msg.h"
 #include "input_pcr.h"
 
 /* Note:
- *   
+ *
  *   SYNCHRONIZATION METHOD
- *   
+ *
  *   We compute an average for the pcr because we want to eliminate the
  *   network jitter and keep the low frequency variations. The average is
  *   in fact a low pass filter and the jitter is a high frequency signal
  *   that is why it is eliminated by the filter/average.
- *   
+ *
  *   The low frequency variations enable us to synchronize the client clock
  *   with the server clock because they represent the time variation between
  *   the 2 clocks. Those variations (ie the filtered pcr) are used to compute
  *   we can decoding (or trashing) the MPEG2 stream at "exactly" the same rate
  *   as it is sent by the server and so we keep the synchronization between
  *   the server and the client.
- *   
+ *
  *   It is a very important matter if you want to avoid underflow or overflow
  *   in all the FIFOs, but it may be not enough.
  *
  */
 
-/******************************************************************************
+/*****************************************************************************
  * input_PcrReInit : Reinitialize the pcr_descriptor
- ******************************************************************************/
+ *****************************************************************************/
 void input_PcrReInit( input_thread_t *p_input )
 {
     ASSERT( p_input );
@@ -56,9 +73,9 @@ void input_PcrReInit( input_thread_t *p_input )
     p_input->p_pcr->c_average_count = 0;
 }
 
-/******************************************************************************
+/*****************************************************************************
  * input_PcrInit : Initialize PCR decoder
- ******************************************************************************/
+ *****************************************************************************/
 int input_PcrInit( input_thread_t *p_input )
 {
     ASSERT( p_input );
@@ -69,35 +86,35 @@ int input_PcrInit( input_thread_t *p_input )
     }
     input_PcrReInit(p_input);
     p_input->p_pcr->i_synchro_state = SYNCHRO_NOT_STARTED;
-    
+
     return( 0 );
 }
 
-/******************************************************************************
+/*****************************************************************************
  * input_PcrDecode : Decode a PCR frame
- ******************************************************************************/
+ *****************************************************************************/
 void input_PcrDecode( input_thread_t *p_input, es_descriptor_t *p_es,
                       u8* p_pcr_data )
 {
     mtime_t pcr_time, sys_time, delta_pcr;
     pcr_descriptor_t *p_pcr;
-        
+
     ASSERT( p_pcr_data );
     ASSERT( p_input );
     ASSERT( p_es );
 
     p_pcr = p_input->p_pcr;
-    
+
     /* Convert the PCR in microseconde
      * WARNING: do not remove the casts in the following calculation ! */
     pcr_time  = ( (( (mtime_t)U32_AT((u32*)p_pcr_data) << 1 ) | ( p_pcr_data[4] >> 7 )) * 300 ) / 27;
     sys_time  = mdate();
     delta_pcr = sys_time - pcr_time;
-    
+
     if( p_es->b_discontinuity ||
-        ( p_pcr->last_pcr != 0 && 
-             (    (p_pcr->last_pcr - pcr_time) > PCR_MAX_GAP
-               || (p_pcr->last_pcr - pcr_time) < - PCR_MAX_GAP ) ) )
+        ( p_pcr->last_pcr != 0 &&
+              (    (p_pcr->last_pcr - pcr_time) > PCR_MAX_GAP
+                || (p_pcr->last_pcr - pcr_time) < - PCR_MAX_GAP ) ) )
     {
         intf_DbgMsg("input debug: input_PcrReInit()\n");
         input_PcrReInit(p_input);
@@ -108,7 +125,7 @@ void input_PcrDecode( input_thread_t *p_input, es_descriptor_t *p_es,
 
     if( p_pcr->c_average_count == PCR_MAX_AVERAGE_COUNTER )
     {
-        p_pcr->delta_pcr = 
+        p_pcr->delta_pcr =
             ( delta_pcr + (p_pcr->delta_pcr * (PCR_MAX_AVERAGE_COUNTER-1)) )
             / PCR_MAX_AVERAGE_COUNTER;
     }
@@ -126,10 +143,10 @@ void input_PcrDecode( input_thread_t *p_input, es_descriptor_t *p_es,
     }
 }
 
-/******************************************************************************
- * input_PcrClean : Clean PCR structures before dying
- ******************************************************************************/
-void input_PcrClean( input_thread_t *p_input )
+/*****************************************************************************
+ * input_PcrEnd : Clean PCR structures before dying
+ *****************************************************************************/
+void input_PcrEnd( input_thread_t *p_input )
 {
     ASSERT( p_input );