]> git.sesse.net Git - vlc/blob - src/video_output/vout_synchro.c
8a210df55e7be4152d3dceceb7a524266d1c0b67
[vlc] / src / video_output / vout_synchro.c
1 /*****************************************************************************
2  * vout_synchro.c : frame dropping routines
3  *****************************************************************************
4  * Copyright (C) 1999-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Samuel Hocevar <sam@via.ecp.fr>
9  *          Jean-Marc Dressler <polux@via.ecp.fr>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*
27  * DISCUSSION : How to Write an efficient Frame-Dropping Algorithm
28  * ==========
29  *
30  * This implementation is based on mathematical and statistical
31  * developments. Older implementations used an enslavement, considering
32  * that if we're late when reading an I picture, we will decode one frame
33  * less. It had a tendancy to derive, and wasn't responsive enough, which
34  * would have caused trouble with the stream control stuff.
35  *
36  * 1. Structure of a picture stream
37  *    =============================
38  * Between 2 I's, we have for instance :
39  *    I   B   P   B   P   B   P   B   P   B   P   B   I
40  *    t0  t1  t2  t3  t4  t5  t6  t7  t8  t9  t10 t11 t12
41  * Please bear in mind that B's and IP's will be inverted when displaying
42  * (decoding order != presentation order). Thus, t1 < t0.
43  *
44  * 2. Definitions
45  *    ===========
46  * t[0..12]     : Presentation timestamps of pictures 0..12.
47  * t            : Current timestamp, at the moment of the decoding.
48  * T            : Picture period, T = 1/frame_rate.
49  * tau[I,P,B]   : Mean time to decode an [I,P,B] picture.
50  * tauYUV       : Mean time to render a picture (given by the video_output).
51  * tau´[I,P,B] = 2 * tau[I,P,B] + tauYUV
52  *              : Mean time + typical difference (estimated to tau/2, that
53  *                needs to be confirmed) + render time.
54  * DELTA        : A given error margin.
55  *
56  * 3. General considerations
57  *    ======================
58  * We define three types of machines :
59  *      14T > tauI : machines capable of decoding all I pictures
60  *      2T > tauP  : machines capable of decoding all P pictures
61  *      T > tauB   : machines capable of decoding all B pictures
62  *
63  * 4. Decoding of an I picture
64  *    ========================
65  * On fast machines, we decode all I's.
66  * Otherwise :
67  * We can decode an I picture if we simply have enough time to decode it
68  * before displaying :
69  *      t0 - t > tau´I + DELTA
70  *
71  * 5. Decoding of a P picture
72  *    =======================
73  * On fast machines, we decode all P's.
74  * Otherwise :
75  * First criterion : have time to decode it.
76  *      t2 - t > tau´P + DELTA
77  *
78  * Second criterion : it shouldn't prevent us from displaying the forthcoming
79  * I picture, which is more important.
80  *      t12 - t > tau´P + tau´I + DELTA
81  *
82  * 6. Decoding of a B picture
83  *    =======================
84  * On fast machines, we decode all B's. Otherwise :
85  *      t1 - t > tau´B + DELTA
86  * Since the next displayed I or P is already decoded, we don't have to
87  * worry about it.
88  *
89  * I hope you will have a pleasant flight and do not forget your life
90  * jacket.
91  *                                                  --Meuuh (2000-12-29)
92  */
93
94 /*****************************************************************************
95  * Preamble
96  *****************************************************************************/
97 #include <stdlib.h>                                                /* free() */
98 #include <string.h>                                    /* memcpy(), memset() */
99
100 #include <vlc/vlc.h>
101 #include <vlc/vout.h>
102 #include <vlc/input.h>
103
104 #include "vout_synchro.h"
105
106 /*
107  * Local prototypes
108  */
109
110 /* Error margins */
111 #define DELTA                   (int)(0.075*CLOCK_FREQ)
112 #define MAX_VALID_TAU           (int)(0.3*CLOCK_FREQ)
113
114 #define DEFAULT_NB_P            5
115 #define DEFAULT_NB_B            1
116
117 /*****************************************************************************
118  * vout_SynchroInit : You know what ?
119  *****************************************************************************/
120 vout_synchro_t * __vout_SynchroInit( vlc_object_t * p_object,
121                                      int i_frame_rate )
122 {
123     vout_synchro_t * p_synchro = vlc_object_create( p_object,
124                                                   sizeof(vout_synchro_t) );
125     if ( p_synchro == NULL )
126     {
127         msg_Err( p_object, "out of memory" );
128         return NULL;
129     }
130     vlc_object_attach( p_synchro, p_object );
131
132     p_synchro->b_no_skip = !config_GetInt( p_object, "skip-frames" );
133     p_synchro->b_quiet = config_GetInt( p_object, "quiet-synchro" );
134
135     /* We use a fake stream pattern, which is often right. */
136     p_synchro->i_n_p = p_synchro->i_eta_p = DEFAULT_NB_P;
137     p_synchro->i_n_b = p_synchro->i_eta_b = DEFAULT_NB_B;
138     memset( p_synchro->p_tau, 0, 4 * sizeof(mtime_t) );
139     memset( p_synchro->pi_meaningful, 0, 4 * sizeof(unsigned int) );
140     p_synchro->i_nb_ref = 0;
141     p_synchro->i_trash_nb_ref = p_synchro->i_dec_nb_ref = 0;
142     p_synchro->current_pts = mdate() + DEFAULT_PTS_DELAY;
143     p_synchro->backward_pts = 0;
144     p_synchro->i_current_period = p_synchro->i_backward_period = 0;
145     p_synchro->i_trashed_pic = p_synchro->i_not_chosen_pic =
146         p_synchro->i_pic = 0;
147
148     p_synchro->i_frame_rate = i_frame_rate;
149
150     return p_synchro;
151 }
152
153 /*****************************************************************************
154  * vout_SynchroRelease : You know what ?
155  *****************************************************************************/
156 void vout_SynchroRelease( vout_synchro_t * p_synchro )
157 {
158     vlc_object_detach( p_synchro );
159     vlc_object_destroy( p_synchro );
160 }
161
162 /*****************************************************************************
163  * vout_SynchroReset : Reset the reference picture counter
164  *****************************************************************************/
165 void vout_SynchroReset( vout_synchro_t * p_synchro )
166 {
167     p_synchro->i_nb_ref = 0;
168     p_synchro->i_trash_nb_ref = p_synchro->i_dec_nb_ref = 0;
169 }
170
171 /*****************************************************************************
172  * vout_SynchroChoose : Decide whether we will decode a picture or not
173  *****************************************************************************/
174 vlc_bool_t vout_SynchroChoose( vout_synchro_t * p_synchro, int i_coding_type,
175                                int i_render_time, vlc_bool_t b_low_delay )
176 {
177 #define TAU_PRIME( coding_type )    (p_synchro->p_tau[(coding_type)] \
178                                     + (p_synchro->p_tau[(coding_type)] >> 1) \
179                                     + p_synchro->i_render_time)
180 #define S (*p_synchro)
181     mtime_t         now, period;
182     mtime_t         pts = 0;
183     vlc_bool_t      b_decode = 0;
184
185     if ( p_synchro->b_no_skip )
186         return 1;
187
188     now = mdate();
189     period = 1000000 * 1001 / p_synchro->i_frame_rate
190                      * p_synchro->i_current_rate / INPUT_RATE_DEFAULT;
191
192     p_synchro->i_render_time = i_render_time;
193
194     switch( i_coding_type )
195     {
196     case I_CODING_TYPE:
197         if( b_low_delay )
198         {
199             pts = S.current_pts;
200         }
201         else if( S.backward_pts )
202         {
203             pts = S.backward_pts;
204         }
205         else
206         {
207             /* displaying order : B B P B B I
208              *                      ^       ^
209              *                      |       +- current picture
210              *                      +- current PTS
211              */
212             pts = S.current_pts + period * (S.i_n_b + 2);
213         }
214
215         if( (1 + S.i_n_p * (S.i_n_b + 1)) * period >
216                 S.p_tau[I_CODING_TYPE] )
217         {
218             b_decode = 1;
219         }
220         else
221         {
222             b_decode = (pts - now) > (TAU_PRIME(I_CODING_TYPE) + DELTA);
223         }
224         if( !b_decode && !p_synchro->b_quiet )
225         {
226             msg_Warn( p_synchro,
227                       "synchro trashing I ("I64Fd")", pts - now );
228         }
229         break;
230
231     case P_CODING_TYPE:
232         if( b_low_delay )
233         {
234             pts = S.current_pts;
235         }
236         else if( S.backward_pts )
237         {
238             pts = S.backward_pts;
239         }
240         else
241         {
242             pts = S.current_pts + period * (S.i_n_b + 1);
243         }
244
245         if( p_synchro->i_nb_ref < 1 )
246         {
247             b_decode = 0;
248         }
249         else if( (1 + S.i_n_p * (S.i_n_b + 1)) * period >
250                 S.p_tau[I_CODING_TYPE] )
251         {
252             if( (S.i_n_b + 1) * period > S.p_tau[P_CODING_TYPE] )
253             {
254                 /* Security in case we're _really_ late */
255                 b_decode = (pts - now > 0);
256             }
257             else
258             {
259                 b_decode = (pts - now) > (TAU_PRIME(P_CODING_TYPE) + DELTA);
260                 /* next I */
261                 b_decode &= (pts - now
262                               + period
263                           * ( (S.i_n_p - S.i_eta_p) * (1 + S.i_n_b) - 1 ))
264                             > (TAU_PRIME(P_CODING_TYPE)
265                                 + TAU_PRIME(I_CODING_TYPE) + DELTA);
266             }
267         }
268         else
269         {
270             b_decode = 0;
271         }
272         break;
273
274     case B_CODING_TYPE:
275         pts = S.current_pts;
276
277         if( p_synchro->i_nb_ref < 2 )
278         {
279             b_decode = 0;
280         }
281         else if( (S.i_n_b + 1) * period > S.p_tau[P_CODING_TYPE] )
282         {
283             b_decode = (pts - now) > (TAU_PRIME(B_CODING_TYPE) + DELTA);
284         }
285         else
286         {
287             b_decode = 0;
288         }
289     }
290
291     if( !b_decode )
292     {
293         S.i_not_chosen_pic++;
294     }
295     return( b_decode );
296 #undef S
297 #undef TAU_PRIME
298 }
299
300 /*****************************************************************************
301  * vout_SynchroTrash : Update counters when we trash a picture
302  *****************************************************************************/
303 void vout_SynchroTrash( vout_synchro_t * p_synchro )
304 {
305     p_synchro->i_trashed_pic++;
306     p_synchro->i_nb_ref = p_synchro->i_trash_nb_ref;
307 }
308
309 /*****************************************************************************
310  * vout_SynchroDecode : Update timers when we decide to decode a picture
311  *****************************************************************************/
312 void vout_SynchroDecode( vout_synchro_t * p_synchro )
313 {
314     p_synchro->decoding_start = mdate();
315     p_synchro->i_nb_ref = p_synchro->i_dec_nb_ref;
316 }
317
318 /*****************************************************************************
319  * vout_SynchroEnd : Called when the image is totally decoded
320  *****************************************************************************/
321 void vout_SynchroEnd( vout_synchro_t * p_synchro, int i_coding_type,
322                       vlc_bool_t b_garbage )
323 {
324     mtime_t     tau;
325
326     if( !b_garbage )
327     {
328         tau = mdate() - p_synchro->decoding_start;
329
330         /* If duration too high, something happened (pause ?), so don't
331          * take it into account. */
332         if( tau < 3 * p_synchro->p_tau[i_coding_type]
333              || ( !p_synchro->pi_meaningful[i_coding_type]
334                    && tau < MAX_VALID_TAU ) )
335         {
336             /* Mean with average tau, to ensure stability. */
337             p_synchro->p_tau[i_coding_type] =
338                 (p_synchro->pi_meaningful[i_coding_type]
339                  * p_synchro->p_tau[i_coding_type] + tau)
340                 / (p_synchro->pi_meaningful[i_coding_type] + 1);
341             if( p_synchro->pi_meaningful[i_coding_type] < MAX_PIC_AVERAGE )
342             {
343                 p_synchro->pi_meaningful[i_coding_type]++;
344             }
345         }
346     }
347 }
348
349 /*****************************************************************************
350  * vout_SynchroDate : When an image has been decoded, ask for its date
351  *****************************************************************************/
352 mtime_t vout_SynchroDate( vout_synchro_t * p_synchro )
353 {
354     /* No need to lock, since PTS are only used by the video parser. */
355     return p_synchro->current_pts;
356 }
357
358 /*****************************************************************************
359  * vout_SynchroNewPicture: Update stream structure and PTS
360  *****************************************************************************/
361 void vout_SynchroNewPicture( vout_synchro_t * p_synchro, int i_coding_type,
362                              int i_repeat_field, mtime_t next_pts,
363                              mtime_t next_dts, int i_current_rate,
364                              vlc_bool_t b_low_delay )
365 {
366     mtime_t         period = 1000000 * 1001 / p_synchro->i_frame_rate
367                               * i_current_rate / INPUT_RATE_DEFAULT;
368 #if 0
369     mtime_t         now = mdate();
370 #endif
371     p_synchro->i_current_rate = i_current_rate;
372
373     switch( i_coding_type )
374     {
375     case I_CODING_TYPE:
376         if( p_synchro->i_eta_p
377              && p_synchro->i_eta_p != p_synchro->i_n_p )
378         {
379 #if 0
380             if( !p_synchro->b_quiet )
381                 msg_Dbg( p_synchro,
382                          "stream periodicity changed from P[%d] to P[%d]",
383                          p_synchro->i_n_p, p_synchro->i_eta_p );
384 #endif
385             p_synchro->i_n_p = p_synchro->i_eta_p;
386         }
387         p_synchro->i_eta_p = p_synchro->i_eta_b = 0;
388         p_synchro->i_trash_nb_ref = 0;
389         if( p_synchro->i_nb_ref < 2 )
390             p_synchro->i_dec_nb_ref = p_synchro->i_nb_ref + 1;
391         else
392             p_synchro->i_dec_nb_ref = p_synchro->i_nb_ref;
393
394 #if 0
395         if( !p_synchro->b_quiet )
396             msg_Dbg( p_synchro, "I("I64Fd") P("I64Fd")[%d] B("I64Fd")"
397                   "[%d] YUV("I64Fd") : trashed %d:%d/%d",
398                   p_synchro->p_tau[I_CODING_TYPE],
399                   p_synchro->p_tau[P_CODING_TYPE],
400                   p_synchro->i_n_p,
401                   p_synchro->p_tau[B_CODING_TYPE],
402                   p_synchro->i_n_b,
403                   p_synchro->i_render_time,
404                   p_synchro->i_not_chosen_pic,
405                   p_synchro->i_trashed_pic -
406                   p_synchro->i_not_chosen_pic,
407                   p_synchro->i_pic );
408         p_synchro->i_trashed_pic = p_synchro->i_not_chosen_pic
409             = p_synchro->i_pic = 0;
410 #else
411         if( p_synchro->i_pic >= 100 )
412         {
413             if( !p_synchro->b_quiet && p_synchro->i_trashed_pic != 0 )
414                 msg_Dbg( p_synchro, "decoded %d/%d pictures",
415                          p_synchro->i_pic
416                            - p_synchro->i_trashed_pic,
417                          p_synchro->i_pic );
418             p_synchro->i_trashed_pic = p_synchro->i_not_chosen_pic
419                 = p_synchro->i_pic = 0;
420         }
421 #endif
422         break;
423
424     case P_CODING_TYPE:
425         p_synchro->i_eta_p++;
426         if( p_synchro->i_eta_b
427              && p_synchro->i_eta_b != p_synchro->i_n_b )
428         {
429 #if 0
430             if( !p_synchro->b_quiet )
431                 msg_Dbg( p_synchro,
432                          "stream periodicity changed from B[%d] to B[%d]",
433                          p_synchro->i_n_b, p_synchro->i_eta_b );
434 #endif
435             p_synchro->i_n_b = p_synchro->i_eta_b;
436         }
437         p_synchro->i_eta_b = 0;
438         p_synchro->i_dec_nb_ref = 2;
439         p_synchro->i_trash_nb_ref = 0;
440         break;
441
442     case B_CODING_TYPE:
443         p_synchro->i_eta_b++;
444         p_synchro->i_dec_nb_ref = p_synchro->i_trash_nb_ref
445             = p_synchro->i_nb_ref;
446         break;
447     }
448
449     p_synchro->current_pts += p_synchro->i_current_period
450                                         * (period >> 1);
451
452 #define PTS_THRESHOLD   (period >> 2)
453     if( i_coding_type == B_CODING_TYPE || b_low_delay )
454     {
455         /* A video frame can be displayed 1, 2 or 3 times, according to
456          * repeat_first_field, top_field_first, progressive_sequence and
457          * progressive_frame. */
458         p_synchro->i_current_period = i_repeat_field;
459
460         if( next_pts )
461         {
462             if( (next_pts - p_synchro->current_pts
463                     > PTS_THRESHOLD
464                   || p_synchro->current_pts - next_pts
465                     > PTS_THRESHOLD) && !p_synchro->b_quiet )
466             {
467                 msg_Warn( p_synchro, "vout synchro warning: pts != "
468                           "current_date ("I64Fd")",
469                           p_synchro->current_pts
470                               - next_pts );
471             }
472             p_synchro->current_pts = next_pts;
473         }
474     }
475     else
476     {
477         p_synchro->i_current_period = p_synchro->i_backward_period;
478         p_synchro->i_backward_period = i_repeat_field;
479
480         if( p_synchro->backward_pts )
481         {
482             if( next_dts &&
483                 (next_dts - p_synchro->backward_pts
484                     > PTS_THRESHOLD
485                   || p_synchro->backward_pts - next_dts
486                     > PTS_THRESHOLD) && !p_synchro->b_quiet )
487             {
488                 msg_Warn( p_synchro, "backward_pts != dts ("I64Fd")",
489                            next_dts
490                                - p_synchro->backward_pts );
491             }
492             if( (p_synchro->backward_pts - p_synchro->current_pts
493                     > PTS_THRESHOLD
494                   || p_synchro->current_pts - p_synchro->backward_pts
495                     > PTS_THRESHOLD) && !p_synchro->b_quiet )
496             {
497                 msg_Warn( p_synchro,
498                           "backward_pts != current_pts ("I64Fd")",
499                           p_synchro->current_pts
500                               - p_synchro->backward_pts );
501             }
502             p_synchro->current_pts = p_synchro->backward_pts;
503             p_synchro->backward_pts = 0;
504         }
505         else if( next_dts )
506         {
507             if( (next_dts - p_synchro->current_pts
508                     > PTS_THRESHOLD
509                   || p_synchro->current_pts - next_dts
510                     > PTS_THRESHOLD) && !p_synchro->b_quiet )
511             {
512                 msg_Warn( p_synchro, "dts != current_pts ("I64Fd")",
513                           p_synchro->current_pts
514                               - next_dts );
515             }
516             /* By definition of a DTS. */
517             p_synchro->current_pts = next_dts;
518             next_dts = 0;
519         }
520
521         if( next_pts )
522         {
523             /* Store the PTS for the next time we have to date an I picture. */
524             p_synchro->backward_pts = next_pts;
525             next_pts = 0;
526         }
527     }
528 #undef PTS_THRESHOLD
529
530 #if 0
531     /* Removed for incompatibility with slow motion */
532     if( p_synchro->current_pts + DEFAULT_PTS_DELAY < now )
533     {
534         /* We cannot be _that_ late, something must have happened, reinit
535          * the dates. */
536         if( !p_synchro->b_quiet )
537             msg_Warn( p_synchro, "PTS << now ("I64Fd"), resetting",
538                       now - p_synchro->current_pts - DEFAULT_PTS_DELAY );
539         p_synchro->current_pts = now + DEFAULT_PTS_DELAY;
540     }
541     if( p_synchro->backward_pts
542          && p_synchro->backward_pts + DEFAULT_PTS_DELAY < now )
543     {
544         /* The same. */
545         p_synchro->backward_pts = 0;
546     }
547 #endif
548
549     p_synchro->i_pic++;
550 }