]> git.sesse.net Git - vlc/blob - src/input/clock.c
Fixed last_pts by using max value.
[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  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_input.h>
34 #include "input_clock.h"
35
36 /*
37  * DISCUSSION : SYNCHRONIZATION METHOD
38  *
39  * In some cases we can impose the pace of reading (when reading from a
40  * file or a pipe), and for the synchronization we simply sleep() until
41  * it is time to deliver the packet to the decoders. When reading from
42  * the network, we must be read at the same pace as the server writes,
43  * otherwise the kernel's buffer will trash packets. The risk is now to
44  * overflow the input buffers in case the server goes too fast, that is
45  * why we do these calculations :
46  *
47  * We compute a mean for the pcr because we want to eliminate the
48  * network jitter and keep the low frequency variations. The mean is
49  * in fact a low pass filter and the jitter is a high frequency signal
50  * that is why it is eliminated by the filter/average.
51  *
52  * The low frequency variations enable us to synchronize the client clock
53  * with the server clock because they represent the time variation between
54  * the 2 clocks. Those variations (ie the filtered pcr) are used to compute
55  * the presentation dates for the audio and video frames. With those dates
56  * we can decode (or trash) the MPEG2 stream at "exactly" the same rate
57  * as it is sent by the server and so we keep the synchronization between
58  * the server and the client.
59  *
60  * It is a very important matter if you want to avoid underflow or overflow
61  * in all the FIFOs, but it may be not enough.
62  */
63
64 /* p_input->p->i_cr_average : Maximum number of samples used to compute the
65  * dynamic average value.
66  * We use the following formula :
67  * new_average = (old_average * c_average + new_sample_value) / (c_average +1)
68  */
69
70 /*****************************************************************************
71  * Constants
72  *****************************************************************************/
73
74 /* Maximum gap allowed between two CRs. */
75 #define CR_MAX_GAP (INT64_C(2000000)*100/9)
76
77 /* Latency introduced on DVDs with CR == 0 on chapter change - this is from
78  * my dice --Meuuh */
79 #define CR_MEAN_PTS_GAP (300000)
80
81 /*****************************************************************************
82  * Structures
83  *****************************************************************************/
84 struct input_clock_t
85 {
86     /* Reference point */
87     bool                    b_has_reference;
88     struct
89     {
90         mtime_t i_clock;
91         mtime_t i_system;
92     } ref;
93
94     /* Last point
95      * It is used to detect unexpected stream discontinuities */
96     struct
97     {
98         mtime_t i_clock;
99         mtime_t i_system;
100     } last;
101
102     /* Maixmal timestamp returned by input_clock_GetTS (in system unit) */
103     mtime_t i_ts_max;
104
105     /* Clock drift */
106     mtime_t i_delta_update; /* System time to wait for drift update */ 
107     mtime_t i_delta;
108     int     i_delta_residue;
109
110     /* Current modifiers */
111     bool    b_master;
112     int     i_rate;
113
114     /* Static configuration */
115     int     i_cr_average;
116 };
117
118 /*****************************************************************************
119  * ClockStreamToSystem: converts a movie clock to system date
120  *****************************************************************************/
121 static mtime_t ClockStreamToSystem( input_clock_t *cl, mtime_t i_clock )
122 {
123     if( !cl->b_has_reference )
124         return 0;
125
126     return ( i_clock - cl->ref.i_clock ) * cl->i_rate / INPUT_RATE_DEFAULT +
127            cl->ref.i_system;
128 }
129
130 /*****************************************************************************
131  * ClockSystemToStream: converts a system date to movie clock
132  *****************************************************************************
133  * Caution : a valid reference point is needed for this to operate.
134  *****************************************************************************/
135 static mtime_t ClockSystemToStream( input_clock_t *cl, mtime_t i_system )
136 {
137     assert( cl->b_has_reference );
138     return ( i_system - cl->ref.i_system ) * INPUT_RATE_DEFAULT / cl->i_rate +
139             cl->ref.i_clock;
140 }
141
142 /*****************************************************************************
143  * ClockSetReference: writes a new clock reference
144  *****************************************************************************/
145 static void ClockSetReference( input_clock_t *cl,
146                                mtime_t i_clock, mtime_t i_system )
147 {
148     cl->b_has_reference = true;
149     cl->ref.i_clock = i_clock;
150     cl->ref.i_system = i_system;
151 }
152
153 /*****************************************************************************
154  * input_clock_New: create a new clock
155  *****************************************************************************/
156 input_clock_t *input_clock_New( bool b_master, int i_cr_average, int i_rate )
157 {
158     input_clock_t *cl = malloc( sizeof(*cl) );
159     if( !cl )
160         return NULL;
161
162     cl->b_has_reference = false;
163     cl->ref.i_clock = 0;
164     cl->ref.i_system = 0;
165
166     cl->last.i_clock = 0;
167     cl->last.i_system = 0;
168
169     cl->i_ts_max = 0;
170
171     cl->i_delta = 0;
172     cl->i_delta_residue = 0;
173
174     cl->b_master = b_master;
175     cl->i_rate = i_rate;
176
177     cl->i_cr_average = i_cr_average;
178
179     return cl;
180 }
181
182 /*****************************************************************************
183  * input_clock_Delete: destroy a new clock
184  *****************************************************************************/
185 void input_clock_Delete( input_clock_t *cl )
186 {
187     free( cl );
188 }
189
190 /*****************************************************************************
191  * input_clock_SetPCR: 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_SetPCR( 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     const bool b_synchronize = b_can_pace_control && cl->b_master;
201     bool b_reset_reference = false;
202
203     if( ( !cl->b_has_reference ) ||
204         ( i_ck_stream == 0 && cl->last.i_clock != 0 ) )
205     {
206         cl->i_delta_update = 0;
207
208         /* */
209         b_reset_reference= true;
210     }
211     else if( cl->last.i_clock != 0 &&
212              ( (cl->last.i_clock - i_ck_stream) > CR_MAX_GAP ||
213                (cl->last.i_clock - i_ck_stream) < -CR_MAX_GAP ) )
214     {
215         /* Stream discontinuity, for which we haven't received a
216          * warning from the stream control facilities (dd-edited
217          * stream ?). */
218         msg_Warn( p_log, "clock gap, unexpected stream discontinuity" );
219         cl->i_ts_max = 0;
220
221         /* */
222         msg_Warn( p_log, "feeding synchro with a new reference point trying to recover from clock gap" );
223         b_reset_reference= true;
224     }
225     if( b_reset_reference )
226     {
227         cl->i_delta = 0;
228         cl->i_delta_residue = 0;
229
230         /* Feed synchro with a new reference point. */
231         ClockSetReference( cl, i_ck_stream,
232                          __MAX( cl->i_ts_max + CR_MEAN_PTS_GAP, i_ck_system ) );
233     }
234
235     cl->last.i_clock = i_ck_stream;
236     cl->last.i_system = i_ck_system;
237
238     if( !b_synchronize && i_ck_system - cl->i_delta_update > 200000 )
239     {
240         /* Smooth clock reference variations. */
241         const mtime_t i_extrapoled_clock = ClockSystemToStream( cl, i_ck_system );
242         /* Bresenham algorithm to smooth variations. */
243         const mtime_t i_tmp = cl->i_delta * (cl->i_cr_average - 1) +
244                               ( i_extrapoled_clock - i_ck_stream ) * 1  +
245                               cl->i_delta_residue;
246
247         cl->i_delta_residue = i_tmp % cl->i_cr_average;
248         cl->i_delta         = i_tmp / cl->i_cr_average;
249
250         cl->i_delta_update = i_ck_system;
251     }
252 }
253
254 /*****************************************************************************
255  * input_clock_ResetPCR:
256  *****************************************************************************/
257 void input_clock_ResetPCR( input_clock_t *cl )
258 {
259     cl->b_has_reference = false;
260     cl->i_ts_max = 0;
261 }
262
263 /*****************************************************************************
264  * input_clock_GetTS: manages a PTS or DTS
265  *****************************************************************************/
266 mtime_t input_clock_GetTS( input_clock_t *cl,
267                            mtime_t i_pts_delay, mtime_t i_ts )
268 {
269     mtime_t i_converted_ts;
270
271     if( !cl->b_has_reference )
272         return 0;
273
274     /* */
275     i_converted_ts = ClockStreamToSystem( cl, i_ts + cl->i_delta );
276     if( i_converted_ts > cl->i_ts_max )
277         cl->i_ts_max = i_converted_ts;
278
279     return i_converted_ts + i_pts_delay;
280 }
281
282 /*****************************************************************************
283  * input_clock_SetRate:
284  *****************************************************************************/
285 void input_clock_SetRate( input_clock_t *cl, int i_rate )
286 {
287     /* Move the reference point */
288     if( cl->b_has_reference )
289         ClockSetReference( cl, cl->last.i_clock, cl->last.i_system );
290
291     cl->i_rate = i_rate;
292 }
293
294 /*****************************************************************************
295  * input_clock_SetMaster:
296  *****************************************************************************/
297 void input_clock_SetMaster( input_clock_t *cl, bool b_master )
298 {
299     cl->b_master = b_master;
300 }
301
302 /*****************************************************************************
303  * input_clock_GetWakeup
304  *****************************************************************************/
305 mtime_t input_clock_GetWakeup( input_clock_t *cl )
306 {
307     /* Not synchronized, we cannot wait */
308     if( !cl->b_has_reference )
309         return 0;
310
311     /* We must not wait if we are not the master clock */
312     if( !cl->b_master  )
313         return 0;
314
315     /* */
316     return ClockStreamToSystem( cl, cl->last.i_clock );
317 }
318