Commit 1d5f5602 authored by Michel Kaempf's avatar Michel Kaempf

* include/mtime.h :

- mtime_t devient un s64 (et non plus un u64) pour harmoniser gestion de
l'horloge et synchronisation ;
- LAST_MDATE correspond d�sormais � la plus grande valeur que peut
prendre un s64 ;
- MSTRTIME_MAX_SIZE prend en compte le fait que les dates peuvent d�sormais
�tre n�gatives ;

* misc/mtime.c :
- modifications diverses et vari�es prenant en compte le changement de
mtime_t ;

* include/input.h :
- i_pts et les variables s64 de la structure pcr sont d�sormais des mtime_t ;

* input/input.c :
- passage des casts en (mtime_t) et non (s64) ;

* input/input_file.c :
- rajout d'un #include "mtime.h" ;

* input/input_pcr.c :
- passage des s64 en mtime_t ;

* misc/xutils.c :
- correction de deux warnings ;

-- MaXX
parent 24dafcdc
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* (c)1999 VideoLAN * (c)1999 VideoLAN
*******************************************************************************/ *******************************************************************************/
/* needs : "netlist.h", "config.h" */ /* needs : "netlist.h", "config.h", "mtime.h" */
/* ?? missing: /* ?? missing:
* tables version control */ * tables version control */
...@@ -60,7 +60,7 @@ typedef struct ...@@ -60,7 +60,7 @@ typedef struct
boolean_t b_data_alignment; /* used to find the beginning of a boolean_t b_data_alignment; /* used to find the beginning of a
* video or audio unit */ * video or audio unit */
boolean_t b_has_pts; /* is the following field set ? */ boolean_t b_has_pts; /* is the following field set ? */
s64 i_pts; /* the PTS for this packet (if set above) */ mtime_t i_pts; /* the PTS for this packet (if set above) */
boolean_t b_random_access; boolean_t b_random_access;
/* if TRUE, in the payload of this packet, there is the first byte /* if TRUE, in the payload of this packet, there is the first byte
* of a video sequence header, or the first byte of an audio frame. * of a video sequence header, or the first byte of an audio frame.
...@@ -209,8 +209,8 @@ typedef struct pcr_descriptor_struct ...@@ -209,8 +209,8 @@ typedef struct pcr_descriptor_struct
{ {
pthread_mutex_t lock; /* pcr modification lock */ pthread_mutex_t lock; /* pcr modification lock */
s64 delta_clock; mtime_t delta_clock;
s64 delta_decode; mtime_t delta_decode;
/* represents decoder_time - pcr_time in usecondes */ /* represents decoder_time - pcr_time in usecondes */
count_t c_average; count_t c_average;
/* counter used to compute dynamic average values */ /* counter used to compute dynamic average values */
...@@ -218,10 +218,10 @@ typedef struct pcr_descriptor_struct ...@@ -218,10 +218,10 @@ typedef struct pcr_descriptor_struct
#ifdef STATS #ifdef STATS
/* Stats */ /* Stats */
count_t c_average_jitter; count_t c_average_jitter;
s64 max_jitter; /* the evalueted maximum jitter */ mtime_t max_jitter; /* the evalueted maximum jitter */
s64 average_jitter; /* the evalueted average jitter */ mtime_t average_jitter; /* the evalueted average jitter */
count_t c_pcr; /* the number of PCR which have been decoded */ count_t c_pcr; /* the number of PCR which have been decoded */
#endif #endif
} pcr_descriptor_t; } pcr_descriptor_t;
/******************************************************************************* /*******************************************************************************
......
...@@ -20,12 +20,12 @@ ...@@ -20,12 +20,12 @@
******************************************************************************* *******************************************************************************
* Store an high precision date or time interval. The maximum precision is the * Store an high precision date or time interval. The maximum precision is the
* micro-second, and a 64 bits integer is used to avoid any overflow (maximum * micro-second, and a 64 bits integer is used to avoid any overflow (maximum
* time interval is then 584542 years, which should be length enough for any * time interval is then 292271 years, which should be length enough for any
* video). Date are stored as a time interval since a common date. * video). Date are stored as a time interval since a common date.
* Note than date and time intervals can be manipulated using regular arithmetic * Note that date and time intervals can be manipulated using regular arithmetic
* operators, and that no special functions are required. * operators, and that no special functions are required.
*******************************************************************************/ *******************************************************************************/
typedef u64 mtime_t; typedef s64 mtime_t;
/******************************************************************************* /*******************************************************************************
* LAST_MDATE: date which will never happen * LAST_MDATE: date which will never happen
...@@ -35,16 +35,16 @@ typedef u64 mtime_t; ...@@ -35,16 +35,16 @@ typedef u64 mtime_t;
* returning the date of the first image to be displayed. It can be used in * returning the date of the first image to be displayed. It can be used in
* comparaison with other values: all existing dates will be earlier. * comparaison with other values: all existing dates will be earlier.
*******************************************************************************/ *******************************************************************************/
#define LAST_MDATE ((mtime_t) -1) #define LAST_MDATE ((mtime_t)((u64)(-1)/2))
/******************************************************************************* /*******************************************************************************
* MSTRTIME_MAX_SIZE: maximum possible size of mstrtime * MSTRTIME_MAX_SIZE: maximum possible size of mstrtime
******************************************************************************* *******************************************************************************
* This values is the maximal possible size of the string returned by the * This values is the maximal possible size of the string returned by the
* mstrtime() function, including the final '\0'. It should be used to allocate * mstrtime() function, including '-' and the final '\0'. It should be used to
* the buffer. * allocate the buffer.
*******************************************************************************/ *******************************************************************************/
#define MSTRTIME_MAX_SIZE 20 #define MSTRTIME_MAX_SIZE 22
/******************************************************************************* /*******************************************************************************
* Prototypes * Prototypes
......
...@@ -882,16 +882,16 @@ static __inline__ void input_DemuxPES( input_thread_t *p_input, ...@@ -882,16 +882,16 @@ static __inline__ void input_DemuxPES( input_thread_t *p_input,
} }
else else
{ {
p_pes->i_pts = ( ((s64)p_pes->p_pes_header[9] << 29) + p_pes->i_pts = ( ((mtime_t)p_pes->p_pes_header[9] << 29) +
((s64)U16_AT(p_pes->p_pes_header + 10) << 14) + ((mtime_t)U16_AT(p_pes->p_pes_header + 10) << 14) +
((s64)U16_AT(p_pes->p_pes_header + 12) >> 1) - ((mtime_t)U16_AT(p_pes->p_pes_header + 12) >> 1) -
(1 << 14) - (1 << 29) ); (1 << 14) - (1 << 29) );
p_pes->i_pts *= 300; p_pes->i_pts *= 300;
p_pes->i_pts /= 27; p_pes->i_pts /= 27;
p_pes->i_pts += p_pcr->delta_clock; p_pes->i_pts += p_pcr->delta_clock;
if( p_pcr->c_pts == 0 ) if( p_pcr->c_pts == 0 )
{ {
p_pcr->delta_decode = (s64)mdate() - p_pes->i_pts + 500000; p_pcr->delta_decode = mdate() - p_pes->i_pts + 500000;
} }
p_pes->i_pts += p_pcr->delta_decode; p_pes->i_pts += p_pcr->delta_decode;
} }
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include "common.h" #include "common.h"
#include "config.h" #include "config.h"
#include "mtime.h"
#include "input.h" #include "input.h"
#include "input_file.h" #include "input_file.h"
...@@ -39,6 +40,3 @@ int input_FileRead( input_thread_t *p_input, const struct iovec *p_vector, ...@@ -39,6 +40,3 @@ int input_FileRead( input_thread_t *p_input, const struct iovec *p_vector,
void input_FileDestroyMethod( input_thread_t *p_input ) void input_FileDestroyMethod( input_thread_t *p_input )
{ {
} }
...@@ -71,7 +71,7 @@ int input_PcrInit( input_thread_t *p_input ) ...@@ -71,7 +71,7 @@ int input_PcrInit( input_thread_t *p_input )
void input_PcrDecode( input_thread_t *p_input, es_descriptor_t *p_es, void input_PcrDecode( input_thread_t *p_input, es_descriptor_t *p_es,
u8* p_pcr_data ) u8* p_pcr_data )
{ {
s64 pcr_time, sys_time, delta_clock; mtime_t pcr_time, sys_time, delta_clock;
pcr_descriptor_t *p_pcr; pcr_descriptor_t *p_pcr;
ASSERT(p_pcr_data); ASSERT(p_pcr_data);
...@@ -87,7 +87,7 @@ void input_PcrDecode( input_thread_t *p_input, es_descriptor_t *p_es, ...@@ -87,7 +87,7 @@ void input_PcrDecode( input_thread_t *p_input, es_descriptor_t *p_es,
/* Express the PCR in microseconde /* Express the PCR in microseconde
* WARNING: do not remove the casts in the following calculation ! */ * WARNING: do not remove the casts in the following calculation ! */
pcr_time = ( (( (s64)U32_AT((u32*)p_pcr_data) << 1 ) | ( p_pcr_data[4] >> 7 )) * 300 ) / 27; pcr_time = ( (( (mtime_t)U32_AT((u32*)p_pcr_data) << 1 ) | ( p_pcr_data[4] >> 7 )) * 300 ) / 27;
sys_time = mdate(); sys_time = mdate();
delta_clock = sys_time - pcr_time; delta_clock = sys_time - pcr_time;
...@@ -109,7 +109,7 @@ void input_PcrDecode( input_thread_t *p_input, es_descriptor_t *p_es, ...@@ -109,7 +109,7 @@ void input_PcrDecode( input_thread_t *p_input, es_descriptor_t *p_es,
#ifdef STATS #ifdef STATS
{ {
s64 jitter; mtime_t jitter;
jitter = delta_clock - p_pcr->delta_clock; jitter = delta_clock - p_pcr->delta_clock;
/* Compute the maximum jitter */ /* Compute the maximum jitter */
......
/******************************************************************************* /******************************************************************************
* mtime.c: high rezolution time management functions * mtime.c: high rezolution time management functions
* (c)1998 VideoLAN * (c)1998 VideoLAN
******************************************************************************* ******************************************************************************
* Functions are prototyped in mtime.h. * Functions are prototyped in mtime.h.
******************************************************************************* ******************************************************************************
* to-do list: * to-do list:
* see if using Linux real-time extensions is possible and profitable * see if using Linux real-time extensions is possible and profitable
*******************************************************************************/ ******************************************************************************/
/******************************************************************************* /******************************************************************************
* Preamble * Preamble
*******************************************************************************/ ******************************************************************************/
#include <stdio.h> #include <stdio.h>
#include <sys/time.h> #include <sys/time.h>
#include "common.h" #include "common.h"
#include "mtime.h" #include "mtime.h"
/******************************************************************************* /******************************************************************************
* mstrtime: return a date in a readable format * mstrtime: return a date in a readable format
******************************************************************************* ******************************************************************************
* This functions is provided for any interface function which need to print a * This functions is provided for any interface function which need to print a
* date. psz_buffer should be a buffer long enough to store the formatted * date. psz_buffer should be a buffer long enough to store the formatted
* date. * date.
*******************************************************************************/ ******************************************************************************/
char *mstrtime( char *psz_buffer, mtime_t date ) char *mstrtime( char *psz_buffer, mtime_t date )
{ {
sprintf( psz_buffer, "%02d:%02d:%02d-%03d.%03d", sprintf( psz_buffer, "%02d:%02d:%02d-%03d.%03d",
(int) (date / (1000UL * 1000UL * 60UL * 60UL) % 24UL), (int) (date / (1000LL * 1000LL * 60LL * 60LL) % 24LL),
(int) (date / (1000UL * 1000UL * 60UL) % 60UL), (int) (date / (1000LL * 1000LL * 60LL) % 60LL),
(int) (date / (1000UL * 1000UL) % 60UL), (int) (date / (1000LL * 1000LL) % 60LL),
(int) (date / 1000UL % 1000UL), (int) (date / 1000LL % 1000LL),
(int) (date % 1000UL) ); (int) (date % 1000LL) );
return( psz_buffer ); return( psz_buffer );
} }
/******************************************************************************* /******************************************************************************
* mdate: return high precision date (inline function) * mdate: return high precision date (inline function)
******************************************************************************* ******************************************************************************
* Uses the gettimeofday() function when possible (1 MHz resolution) or the * Uses the gettimeofday() function when possible (1 MHz resolution) or the
* ftime() function (1 kHz resolution). * ftime() function (1 kHz resolution).
******************************************************************************* ******************************************************************************
* to-do list: ?? * to-do list: ??
* implement the function when gettimeofday is not available * implement the function when gettimeofday is not available
* this function should be decalred as inline * this function should be decalred as inline
*******************************************************************************/ ******************************************************************************/
mtime_t mdate( void ) mtime_t mdate( void )
{ {
struct timeval tv_date; struct timeval tv_date;
...@@ -57,48 +56,48 @@ mtime_t mdate( void ) ...@@ -57,48 +56,48 @@ mtime_t mdate( void )
return( (mtime_t) tv_date.tv_sec * 1000000 + (mtime_t) tv_date.tv_usec ); return( (mtime_t) tv_date.tv_sec * 1000000 + (mtime_t) tv_date.tv_usec );
} }
/******************************************************************************* /******************************************************************************
* mwait: wait for a date (inline function) * mwait: wait for a date (inline function)
******************************************************************************* ******************************************************************************
* This function uses select() and an system date function to wake up at a * This function uses select() and an system date function to wake up at a
* precise date. It should be used for process synchronization. If current date * precise date. It should be used for process synchronization. If current date
* is posterior to wished date, the function returns immediately. * is posterior to wished date, the function returns immediately.
******************************************************************************* ******************************************************************************
* to-do list: * to-do list:
* implement the function when gettimeofday is not available * implement the function when gettimeofday is not available
* optimize delay calculation * optimize delay calculation
* ?? declare as inline * ?? declare as inline
*******************************************************************************/ ******************************************************************************/
void mwait( mtime_t date ) void mwait( mtime_t date )
{ {
struct timeval tv_date, tv_delay; struct timeval tv_date, tv_delay;
s64 delay; /* delay in msec, signed to detect errors */ mtime_t delay; /* delay in msec, signed to detect errors */
/* see mdate() about gettimeofday() possible errors */ /* see mdate() about gettimeofday() possible errors */
gettimeofday( &tv_date, NULL ); gettimeofday( &tv_date, NULL );
/* calculate delay and check if current date is before wished date */ /* calculate delay and check if current date is before wished date */
delay = date - (mtime_t) tv_date.tv_sec * 1000000 - (mtime_t) tv_date.tv_usec; delay = date - (mtime_t) tv_date.tv_sec * 1000000 - (mtime_t) tv_date.tv_usec;
if( delay < 0 ) /* wished date is already passed */ if( delay <= 0 ) /* wished date is now or already passed */
{ {
return; return;
} }
tv_delay.tv_sec = delay / 1000000; tv_delay.tv_sec = delay / 1000000;
tv_delay.tv_usec = delay % 1000000; tv_delay.tv_usec = delay % 1000000;
/* see msleep() about select() errors */ /* see msleep() about select() errors */
select( 0, NULL, NULL, NULL, &tv_delay ); select( 0, NULL, NULL, NULL, &tv_delay );
} }
/******************************************************************************* /******************************************************************************
* msleep: more precise sleep() (inline function) (ok ?) * msleep: more precise sleep() (inline function) (ok ?)
******************************************************************************* ******************************************************************************
* This function uses select() in a classical way to implement a sleep() call * This function uses select() in a classical way to implement a sleep() call
* with a microsecond precision. * with a microsecond precision.
* For synchronization purposes, mwait() should be prefered. * For synchronization purposes, mwait() should be prefered.
******************************************************************************* ******************************************************************************
* ?? decalre as inline * ?? decalre as inline
*******************************************************************************/ ******************************************************************************/
void msleep( mtime_t delay ) void msleep( mtime_t delay )
{ {
struct timeval tv_delay; struct timeval tv_delay;
......
...@@ -60,6 +60,7 @@ int XTryLoadFont( Display *p_display, char *psz_font, XFontStruct **p_font ) ...@@ -60,6 +60,7 @@ int XTryLoadFont( Display *p_display, char *psz_font, XFontStruct **p_font )
int XEnableScreenSaver( Display *p_display ) int XEnableScreenSaver( Display *p_display )
{ {
/* ?? */ /* ?? */
return( 0 );
} }
/******************************************************************************* /*******************************************************************************
...@@ -70,5 +71,5 @@ int XEnableScreenSaver( Display *p_display ) ...@@ -70,5 +71,5 @@ int XEnableScreenSaver( Display *p_display )
int XDisableScreenSaver( Display *p_display ) int XDisableScreenSaver( Display *p_display )
{ {
/* ?? */ /* ?? */
return( 0 );
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment