]> git.sesse.net Git - vlc/blob - src/input/clock.c
Display first frame after a seek as soon as possible.
[vlc] / src / input / clock.c
1 /*****************************************************************************
2  * input_clock.c: Clock/System date convertions, stream management
3  *****************************************************************************
4  * Copyright (C) 1999-2008 the VideoLAN team
5  * Copyright (C) 2008 Laurent Aimar
6  * $Id$
7  *
8  * Authors: Christophe Massiot <massiot@via.ecp.fr>
9  *          Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_input.h>
35 #include "input_clock.h"
36
37 /* TODO:
38  * - clean up locking once clock code is stable
39  *
40  */
41
42 /*
43  * DISCUSSION : SYNCHRONIZATION METHOD
44  *
45  * In some cases we can impose the pace of reading (when reading from a
46  * file or a pipe), and for the synchronization we simply sleep() until
47  * it is time to deliver the packet to the decoders. When reading from
48  * the network, we must be read at the same pace as the server writes,
49  * otherwise the kernel's buffer will trash packets. The risk is now to
50  * overflow the input buffers in case the server goes too fast, that is
51  * why we do these calculations :
52  *
53  * We compute a mean for the pcr because we want to eliminate the
54  * network jitter and keep the low frequency variations. The mean is
55  * in fact a low pass filter and the jitter is a high frequency signal
56  * that is why it is eliminated by the filter/average.
57  *
58  * The low frequency variations enable us to synchronize the client clock
59  * with the server clock because they represent the time variation between
60  * the 2 clocks. Those variations (ie the filtered pcr) are used to compute
61  * the presentation dates for the audio and video frames. With those dates
62  * we can decode (or trash) the MPEG2 stream at "exactly" the same rate
63  * as it is sent by the server and so we keep the synchronization between
64  * the server and the client.
65  *
66  * It is a very important matter if you want to avoid underflow or overflow
67  * in all the FIFOs, but it may be not enough.
68  */
69
70 /* p_input->p->i_cr_average : Maximum number of samples used to compute the
71  * dynamic average value.
72  * We use the following formula :
73  * new_average = (old_average * c_average + new_sample_value) / (c_average +1)
74  */
75
76
77 /*****************************************************************************
78  * Constants
79  *****************************************************************************/
80
81 /* Maximum gap allowed between two CRs. */
82 #define CR_MAX_GAP (INT64_C(2000000)*100/9)
83
84 /* Latency introduced on DVDs with CR == 0 on chapter change - this is from
85  * my dice --Meuuh */
86 #define CR_MEAN_PTS_GAP (300000)
87
88 /*****************************************************************************
89  * Structures
90  *****************************************************************************/
91
92 /**
93  * This structure holds long term average
94  */
95 typedef struct
96 {
97     mtime_t i_value;
98     int     i_residue;
99
100     int     i_count;
101     int     i_divider;
102 } average_t;
103 static void    AvgInit( average_t *, int i_divider );
104 static void    AvgClean( average_t * );
105
106 static void    AvgReset( average_t * );
107 static void    AvgUpdate( average_t *, mtime_t i_value );
108 static mtime_t AvgGet( average_t * );
109
110 /* */
111 typedef struct
112 {
113     mtime_t i_stream;
114     mtime_t i_system;
115 } clock_point_t;
116
117 static inline clock_point_t clock_point_Create( mtime_t i_stream, mtime_t i_system )
118 {
119     clock_point_t p = { .i_stream = i_stream, .i_system = i_system };
120     return p;
121 }
122
123 /* */
124 struct input_clock_t
125 {
126     /* */
127     vlc_mutex_t lock;
128
129     /* Reference point */
130     bool          b_has_reference;
131     clock_point_t ref;
132
133     /* Last point
134      * It is used to detect unexpected stream discontinuities */
135     clock_point_t last;
136
137     /* Maximal timestamp returned by input_clock_GetTS (in system unit) */
138     mtime_t i_ts_max;
139
140     /* Clock drift */
141     mtime_t i_next_drift_update;
142     average_t drift;
143
144     /* Current modifiers */
145     int     i_rate;
146     bool    b_paused;
147     mtime_t i_pause_date;
148 };
149
150 static mtime_t ClockStreamToSystem( input_clock_t *, mtime_t i_stream );
151 static mtime_t ClockSystemToStream( input_clock_t *, mtime_t i_system );
152
153 /*****************************************************************************
154  * input_clock_New: create a new clock
155  *****************************************************************************/
156 input_clock_t *input_clock_New( int i_cr_average, int i_rate )
157 {
158     input_clock_t *cl = malloc( sizeof(*cl) );
159     if( !cl )
160         return NULL;
161
162     vlc_mutex_init( &cl->lock );
163     cl->b_has_reference = false;
164     cl->ref = clock_point_Create( 0, 0 );
165
166     cl->last = clock_point_Create( 0, 0 );
167
168     cl->i_ts_max = 0;
169
170     cl->i_next_drift_update = 0;
171     AvgInit( &cl->drift, i_cr_average );
172
173     cl->i_rate = i_rate;
174     cl->b_paused = false;
175     cl->i_pause_date = 0;
176
177     return cl;
178 }
179
180 /*****************************************************************************
181  * input_clock_Delete: destroy a new clock
182  *****************************************************************************/
183 void input_clock_Delete( input_clock_t *cl )
184 {
185     AvgClean( &cl->drift );
186     vlc_mutex_destroy( &cl->lock );
187     free( cl );
188 }
189
190 /*****************************************************************************
191  * input_clock_Update: manages a clock reference
192  *
193  *  i_ck_stream: date in stream clock
194  *  i_ck_system: date in system clock
195  *****************************************************************************/
196 void input_clock_Update( input_clock_t *cl,
197                          vlc_object_t *p_log, bool b_can_pace_control,
198                          mtime_t i_ck_stream, mtime_t i_ck_system )
199 {
200     bool b_reset_reference = false;
201
202     vlc_mutex_lock( &cl->lock );
203
204     if( ( !cl->b_has_reference ) ||
205         ( i_ck_stream == 0 && cl->last.i_stream != 0 ) )
206     {
207         /* */
208         b_reset_reference= true;
209     }
210     else if( cl->last.i_stream != 0 &&
211              ( (cl->last.i_stream - i_ck_stream) > CR_MAX_GAP ||
212                (cl->last.i_stream - i_ck_stream) < -CR_MAX_GAP ) )
213     {
214         /* Stream discontinuity, for which we haven't received a
215          * warning from the stream control facilities (dd-edited
216          * stream ?). */
217         msg_Warn( p_log, "clock gap, unexpected stream discontinuity" );
218         cl->i_ts_max = 0;
219
220         /* */
221         msg_Warn( p_log, "feeding synchro with a new reference point trying to recover from clock gap" );
222         b_reset_reference= true;
223     }
224     if( b_reset_reference )
225     {
226         cl->i_next_drift_update = 0;
227         AvgReset( &cl->drift );
228
229         /* Feed synchro with a new reference point. */
230         cl->b_has_reference = true;
231         cl->ref = clock_point_Create( i_ck_stream,
232                                       __MAX( cl->i_ts_max + CR_MEAN_PTS_GAP, i_ck_system ) );
233     }
234
235     if( !b_can_pace_control && cl->i_next_drift_update < i_ck_system )
236     {
237         const mtime_t i_converted = ClockSystemToStream( cl, i_ck_system );
238
239         AvgUpdate( &cl->drift, i_converted - i_ck_stream );
240
241         cl->i_next_drift_update = i_ck_system + CLOCK_FREQ/5; /* FIXME why that */
242     }
243     cl->last = clock_point_Create( i_ck_stream, i_ck_system );
244
245     vlc_mutex_unlock( &cl->lock );
246 }
247
248 /*****************************************************************************
249  * input_clock_Reset:
250  *****************************************************************************/
251 void input_clock_Reset( input_clock_t *cl )
252 {
253     vlc_mutex_lock( &cl->lock );
254
255     cl->b_has_reference = false;
256     cl->ref = clock_point_Create( 0, 0 );
257     cl->i_ts_max = 0;
258
259     vlc_mutex_unlock( &cl->lock );
260 }
261
262 /*****************************************************************************
263  * input_clock_ChangeRate:
264  *****************************************************************************/
265 void input_clock_ChangeRate( input_clock_t *cl, int i_rate )
266 {
267     vlc_mutex_lock( &cl->lock );
268
269     /* Move the reference point */
270     if( cl->b_has_reference )
271         cl->ref = cl->last;
272
273     cl->i_rate = i_rate;
274
275     vlc_mutex_unlock( &cl->lock );
276 }
277
278 /*****************************************************************************
279  * input_clock_ChangePause:
280  *****************************************************************************/
281 void input_clock_ChangePause( input_clock_t *cl, bool b_paused, mtime_t i_date )
282 {
283     vlc_mutex_lock( &cl->lock );
284     assert( (!cl->b_paused) != (!b_paused) );
285
286     if( cl->b_paused )
287     {
288         const mtime_t i_duration = i_date - cl->i_pause_date;
289
290         if( cl->b_has_reference && i_duration > 0 )
291         {
292             cl->ref.i_system += i_duration;
293             cl->last.i_system += i_duration;
294         }
295     }
296     cl->i_pause_date = i_date;
297     cl->b_paused = b_paused;
298
299     vlc_mutex_unlock( &cl->lock );
300 }
301
302 /*****************************************************************************
303  * input_clock_GetWakeup
304  *****************************************************************************/
305 mtime_t input_clock_GetWakeup( input_clock_t *cl )
306 {
307     mtime_t i_wakeup = 0;
308
309     vlc_mutex_lock( &cl->lock );
310
311     /* Synchronized, we can wait */
312     if( cl->b_has_reference )
313         i_wakeup = ClockStreamToSystem( cl, cl->last.i_stream );
314
315     vlc_mutex_unlock( &cl->lock );
316
317     return i_wakeup;
318 }
319
320 /*****************************************************************************
321  * input_clock_GetTS: manages a PTS or DTS
322  *****************************************************************************/
323 mtime_t input_clock_GetTS( input_clock_t *cl, int *pi_rate,
324                            mtime_t i_pts_delay, mtime_t i_ts )
325 {
326     mtime_t i_converted_ts;
327
328     vlc_mutex_lock( &cl->lock );
329
330     if( pi_rate )
331         *pi_rate = cl->i_rate;
332
333     if( !cl->b_has_reference )
334     {
335         vlc_mutex_unlock( &cl->lock );
336         return 0;
337     }
338
339     /* */
340     i_converted_ts = ClockStreamToSystem( cl, i_ts + AvgGet( &cl->drift ) );
341     if( i_converted_ts > cl->i_ts_max )
342         cl->i_ts_max = i_converted_ts;
343
344     vlc_mutex_unlock( &cl->lock );
345
346     return i_converted_ts + i_pts_delay;
347 }
348 /*****************************************************************************
349  * input_clock_GetRate: Return current rate
350  *****************************************************************************/
351 int input_clock_GetRate( input_clock_t *cl )
352 {
353     int i_rate;
354
355     vlc_mutex_lock( &cl->lock );
356     i_rate = cl->i_rate;
357     vlc_mutex_unlock( &cl->lock );
358
359     return i_rate;
360 }
361
362 int input_clock_GetState( input_clock_t *cl,
363                           mtime_t *pi_stream_start, mtime_t *pi_system_start,
364                           mtime_t *pi_stream_duration, mtime_t *pi_system_duration )
365 {
366     vlc_mutex_lock( &cl->lock );
367
368     if( !cl->b_has_reference )
369     {
370         vlc_mutex_unlock( &cl->lock );
371         return VLC_EGENERIC;
372     }
373
374     *pi_stream_start = cl->ref.i_stream;
375     *pi_system_start = cl->ref.i_system;
376
377     *pi_stream_duration = cl->last.i_stream - cl->ref.i_stream;
378     *pi_system_duration = cl->last.i_system - cl->ref.i_system;
379
380     vlc_mutex_unlock( &cl->lock );
381
382     return VLC_SUCCESS;
383 }
384
385 void input_clock_ChangeSystemOrigin( input_clock_t *cl, mtime_t i_system )
386 {
387     vlc_mutex_lock( &cl->lock );
388
389     assert( cl->b_has_reference );
390     const mtime_t i_offset = i_system - cl->ref.i_system;
391
392     cl->ref.i_system += i_offset;
393     cl->last.i_system += i_offset;
394
395     if( cl->b_paused )
396         cl->i_pause_date = i_system;
397
398     vlc_mutex_unlock( &cl->lock );
399 }
400
401 /*****************************************************************************
402  * ClockStreamToSystem: converts a movie clock to system date
403  *****************************************************************************/
404 static mtime_t ClockStreamToSystem( input_clock_t *cl, mtime_t i_stream )
405 {
406     if( !cl->b_has_reference )
407         return 0;
408
409     return ( i_stream - cl->ref.i_stream ) * cl->i_rate / INPUT_RATE_DEFAULT +
410            cl->ref.i_system;
411 }
412
413 /*****************************************************************************
414  * ClockSystemToStream: converts a system date to movie clock
415  *****************************************************************************
416  * Caution : a valid reference point is needed for this to operate.
417  *****************************************************************************/
418 static mtime_t ClockSystemToStream( input_clock_t *cl, mtime_t i_system )
419 {
420     assert( cl->b_has_reference );
421     return ( i_system - cl->ref.i_system ) * INPUT_RATE_DEFAULT / cl->i_rate +
422             cl->ref.i_stream;
423 }
424
425 /*****************************************************************************
426  * Long term average helpers
427  *****************************************************************************/
428 static void AvgInit( average_t *p_avg, int i_divider )
429 {
430     p_avg->i_divider = i_divider;
431     AvgReset( p_avg );
432 }
433 static void AvgClean( average_t *p_avg )
434 {
435     VLC_UNUSED(p_avg);
436 }
437 static void AvgReset( average_t *p_avg )
438 {
439     p_avg->i_value = 0;
440     p_avg->i_residue = 0;
441     p_avg->i_count = 0;
442 }
443 static void AvgUpdate( average_t *p_avg, mtime_t i_value )
444 {
445     const int i_f0 = __MIN( p_avg->i_divider - 1, p_avg->i_count );
446     const int i_f1 = p_avg->i_divider - i_f0;
447
448     const mtime_t i_tmp = i_f0 * p_avg->i_value + i_f1 * i_value + p_avg->i_residue;
449
450     p_avg->i_value   = i_tmp / p_avg->i_divider;
451     p_avg->i_residue = i_tmp % p_avg->i_divider;
452
453     p_avg->i_count++;
454 }
455 static mtime_t AvgGet( average_t *p_avg )
456 {
457     return p_avg->i_value;
458 }
459