]> git.sesse.net Git - vlc/blob - src/video_output/vout_synchro.c
Updated my entry.
[vlc] / src / video_output / vout_synchro.c
1 /*****************************************************************************
2  * vout_synchro.c : frame dropping routines
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: vout_synchro.c,v 1.3 2003/06/09 00:33:34 massiot Exp $
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
103 #include "vout_synchro.h"
104 #include "stream_control.h"
105
106 /*
107  * Local prototypes
108  */
109
110 /* Error margins */
111 #define DELTA                   (int)(0.075*CLOCK_FREQ)
112
113 #define DEFAULT_NB_P            5
114 #define DEFAULT_NB_B            1
115
116 /*****************************************************************************
117  * vout_SynchroInit : You know what ?
118  *****************************************************************************/
119 vout_synchro_t * __vout_SynchroInit( vlc_object_t * p_object,
120                                    vout_thread_t * p_vout, int i_frame_rate )
121 {
122     vout_synchro_t * p_synchro = vlc_object_create( p_object,
123                                                   sizeof(vout_synchro_t) );
124     if ( p_synchro == NULL )
125     {
126         msg_Err( p_object, "out of memory" );
127         return NULL;
128     }
129     vlc_object_attach( p_synchro, p_object );
130
131     /* We use a fake stream pattern, which is often right. */
132     p_synchro->i_n_p = p_synchro->i_eta_p = DEFAULT_NB_P;
133     p_synchro->i_n_b = p_synchro->i_eta_b = DEFAULT_NB_B;
134     memset( p_synchro->p_tau, 0, 4 * sizeof(mtime_t) );
135     memset( p_synchro->pi_meaningful, 0, 4 * sizeof(unsigned int) );
136     p_synchro->i_nb_ref = 0;
137     p_synchro->i_trash_nb_ref = p_synchro->i_dec_nb_ref = 0;
138     p_synchro->current_pts = mdate() + DEFAULT_PTS_DELAY;
139     p_synchro->backward_pts = 0;
140     p_synchro->i_current_period = p_synchro->i_backward_period = 0;
141     p_synchro->i_trashed_pic = p_synchro->i_not_chosen_pic = 
142         p_synchro->i_pic = 0;
143
144     p_synchro->i_frame_rate = i_frame_rate;
145     p_synchro->p_vout = p_vout;
146
147     return p_synchro;
148 }
149
150 /*****************************************************************************
151  * vout_SynchroRelease : You know what ?
152  *****************************************************************************/
153 void vout_SynchroRelease( vout_synchro_t * p_synchro )
154 {
155     vlc_object_detach( p_synchro );
156     vlc_object_destroy( p_synchro );
157 }
158
159 /*****************************************************************************
160  * vout_SynchroReset : Reset the reference picture counter
161  *****************************************************************************/
162 void vout_SynchroReset( vout_synchro_t * p_synchro )
163 {
164     p_synchro->i_nb_ref = 0;
165     p_synchro->i_trash_nb_ref = p_synchro->i_dec_nb_ref = 0;
166 }
167
168 /*****************************************************************************
169  * vout_SynchroChoose : Decide whether we will decode a picture or not
170  *****************************************************************************/
171 vlc_bool_t vout_SynchroChoose( vout_synchro_t * p_synchro, int i_coding_type )
172 {
173 #define TAU_PRIME( coding_type )    (p_synchro->p_tau[(coding_type)] \
174                                     + (p_synchro->p_tau[(coding_type)] >> 1) \
175                                     + tau_yuv)
176 #define S (*p_synchro)
177     /* VPAR_SYNCHRO_DEFAULT */
178     mtime_t         now, period, tau_yuv;
179     mtime_t         pts = 0;
180     vlc_bool_t      b_decode = 0;
181
182     now = mdate();
183     period = 1000000 * 1001 / p_synchro->i_frame_rate
184                      * p_synchro->i_current_rate / DEFAULT_RATE;
185
186     vlc_mutex_lock( &p_synchro->p_vout->change_lock );
187     tau_yuv = p_synchro->p_vout->render_time;
188     vlc_mutex_unlock( &p_synchro->p_vout->change_lock );
189
190     switch( i_coding_type )
191     {
192     case I_CODING_TYPE:
193         if( S.backward_pts )
194         {
195             pts = S.backward_pts;
196         }
197         else
198         {
199             /* displaying order : B B P B B I
200              *                      ^       ^
201              *                      |       +- current picture
202              *                      +- current PTS
203              */
204             pts = S.current_pts + period * (S.i_n_b + 2);
205         }
206
207         if( (1 + S.i_n_p * (S.i_n_b + 1)) * period >
208                 S.p_tau[I_CODING_TYPE] )
209         {
210             b_decode = 1;
211         }
212         else
213         {
214             b_decode = (pts - now) > (TAU_PRIME(I_CODING_TYPE) + DELTA);
215         }
216         if( !b_decode )
217         {
218             msg_Warn( p_synchro,
219                       "synchro trashing I ("I64Fd")", pts - now );
220         }
221         break;
222
223     case P_CODING_TYPE:
224         if( S.backward_pts )
225         {
226             pts = S.backward_pts;
227         }
228         else
229         {
230             pts = S.current_pts + period * (S.i_n_b + 1);
231         }
232
233         if( p_synchro->i_nb_ref < 1 )
234         {
235             b_decode = 0;
236         }
237         else if( (1 + S.i_n_p * (S.i_n_b + 1)) * period >
238                 S.p_tau[I_CODING_TYPE] )
239         {
240             if( (S.i_n_b + 1) * period > S.p_tau[P_CODING_TYPE] )
241             {
242                 /* Security in case we're _really_ late */
243                 b_decode = (pts - now > 0);
244             }
245             else
246             {
247                 b_decode = (pts - now) > (TAU_PRIME(P_CODING_TYPE) + DELTA);
248                 /* next I */
249                 b_decode &= (pts - now
250                               + period
251                           * ( (S.i_n_p - S.i_eta_p) * (1 + S.i_n_b) - 1 ))
252                             > (TAU_PRIME(P_CODING_TYPE)
253                                 + TAU_PRIME(I_CODING_TYPE) + DELTA);
254             }
255         }
256         else
257         {
258             b_decode = 0;
259         }
260         break;
261
262     case B_CODING_TYPE:
263         pts = S.current_pts;
264
265         if( p_synchro->i_nb_ref < 2 )
266         {
267             b_decode = 0;
268         }
269         else if( (S.i_n_b + 1) * period > S.p_tau[P_CODING_TYPE] )
270         {
271             b_decode = (pts - now) > (TAU_PRIME(B_CODING_TYPE) + DELTA);
272         }
273         else
274         {
275             b_decode = 0;
276         }
277     }
278
279     if( !b_decode )
280     {
281         S.i_not_chosen_pic++;
282     }
283     return( b_decode );
284 #undef S
285 #undef TAU_PRIME
286 }
287
288 /*****************************************************************************
289  * vout_SynchroTrash : Update counters when we trash a picture
290  *****************************************************************************/
291 void vout_SynchroTrash( vout_synchro_t * p_synchro )
292 {
293     p_synchro->i_trashed_pic++;
294     p_synchro->i_nb_ref = p_synchro->i_trash_nb_ref;
295 }
296
297 /*****************************************************************************
298  * vout_SynchroDecode : Update timers when we decide to decode a picture
299  *****************************************************************************/
300 void vout_SynchroDecode( vout_synchro_t * p_synchro )
301 {
302     p_synchro->decoding_start = mdate();
303     p_synchro->i_nb_ref = p_synchro->i_dec_nb_ref;
304 }
305
306 /*****************************************************************************
307  * vout_SynchroEnd : Called when the image is totally decoded
308  *****************************************************************************/
309 void vout_SynchroEnd( vout_synchro_t * p_synchro, int i_coding_type,
310                       vlc_bool_t b_garbage )
311 {
312     mtime_t     tau;
313
314     if( !b_garbage )
315     {
316         tau = mdate() - p_synchro->decoding_start;
317
318         /* If duration too high, something happened (pause ?), so don't
319          * take it into account. */
320         if( tau < 3 * p_synchro->p_tau[i_coding_type]
321              || !p_synchro->pi_meaningful[i_coding_type] )
322         {
323             /* Mean with average tau, to ensure stability. */
324             p_synchro->p_tau[i_coding_type] =
325                 (p_synchro->pi_meaningful[i_coding_type]
326                  * p_synchro->p_tau[i_coding_type] + tau)
327                 / (p_synchro->pi_meaningful[i_coding_type] + 1);
328             if( p_synchro->pi_meaningful[i_coding_type] < MAX_PIC_AVERAGE )
329             {
330                 p_synchro->pi_meaningful[i_coding_type]++;
331             }
332         }
333     }
334 }
335
336 /*****************************************************************************
337  * vout_SynchroDate : When an image has been decoded, ask for its date
338  *****************************************************************************/
339 mtime_t vout_SynchroDate( vout_synchro_t * p_synchro )
340 {
341     /* No need to lock, since PTS are only used by the video parser. */
342     return p_synchro->current_pts;
343 }
344
345 /*****************************************************************************
346  * vout_SynchroNewPicture: Update stream structure and PTS
347  *****************************************************************************/
348 void vout_SynchroNewPicture( vout_synchro_t * p_synchro, int i_coding_type,
349                              int i_repeat_field, mtime_t next_pts,
350                              mtime_t next_dts, int i_current_rate )
351 {
352     mtime_t         period = 1000000 * 1001 / p_synchro->i_frame_rate
353                               * i_current_rate / DEFAULT_RATE;
354 #if 0
355     mtime_t         now = mdate(); 
356 #endif
357     p_synchro->i_current_rate = i_current_rate;
358
359     switch( i_coding_type )
360     {
361     case I_CODING_TYPE:
362         if( p_synchro->i_eta_p
363              && p_synchro->i_eta_p != p_synchro->i_n_p )
364         {
365             msg_Dbg( p_synchro,
366                      "stream periodicity changed from P[%d] to P[%d]",
367                      p_synchro->i_n_p, p_synchro->i_eta_p );
368             p_synchro->i_n_p = p_synchro->i_eta_p;
369         }
370         p_synchro->i_eta_p = p_synchro->i_eta_b = 0;
371         p_synchro->i_trash_nb_ref = 0;
372         if( p_synchro->i_nb_ref < 2 )
373             p_synchro->i_dec_nb_ref = p_synchro->i_nb_ref + 1;
374         else
375             p_synchro->i_dec_nb_ref = p_synchro->i_nb_ref;
376
377 #if 0
378         msg_Dbg( p_synchro, "I("I64Fd") P("I64Fd")[%d] B("I64Fd")"
379               "[%d] YUV("I64Fd") : trashed %d:%d/%d",
380               p_synchro->p_tau[I_CODING_TYPE],
381               p_synchro->p_tau[P_CODING_TYPE],
382               p_synchro->i_n_p,
383               p_synchro->p_tau[B_CODING_TYPE],
384               p_synchro->i_n_b,
385               p_synchro->p_vout->render_time,
386               p_synchro->i_not_chosen_pic,
387               p_synchro->i_trashed_pic -
388               p_synchro->i_not_chosen_pic,
389               p_synchro->i_pic );
390         p_synchro->i_trashed_pic = p_synchro->i_not_chosen_pic
391             = p_synchro->i_pic = 0;
392 #else
393         if ( p_synchro->i_pic >= 100 )
394         {
395             msg_Dbg( p_synchro, "decoded %d/%d pictures",
396                      p_synchro->i_pic
397                        - p_synchro->i_trashed_pic,
398                      p_synchro->i_pic );
399             p_synchro->i_trashed_pic = p_synchro->i_not_chosen_pic
400                 = p_synchro->i_pic = 0;
401         }
402 #endif
403         break;
404
405     case P_CODING_TYPE:
406         p_synchro->i_eta_p++;
407         if( p_synchro->i_eta_b
408              && p_synchro->i_eta_b != p_synchro->i_n_b )
409         {
410             msg_Dbg( p_synchro,
411                      "stream periodicity changed from B[%d] to B[%d]",
412                      p_synchro->i_n_b, p_synchro->i_eta_b );
413             p_synchro->i_n_b = p_synchro->i_eta_b;
414         }
415         p_synchro->i_eta_b = 0;
416         p_synchro->i_dec_nb_ref = 2;
417         p_synchro->i_trash_nb_ref = 0;
418         break;
419
420     case B_CODING_TYPE:
421         p_synchro->i_eta_b++;
422         p_synchro->i_dec_nb_ref = p_synchro->i_trash_nb_ref
423             = p_synchro->i_nb_ref;
424         break;
425     }
426
427     p_synchro->current_pts += p_synchro->i_current_period
428                                         * (period >> 1);
429  
430 #define PTS_THRESHOLD   (period >> 2)
431     if( i_coding_type == B_CODING_TYPE )
432     {
433         /* A video frame can be displayed 1, 2 or 3 times, according to
434          * repeat_first_field, top_field_first, progressive_sequence and
435          * progressive_frame. */
436         p_synchro->i_current_period = i_repeat_field;
437
438         if( next_pts )
439         {
440             if( next_pts - p_synchro->current_pts
441                     > PTS_THRESHOLD
442                  || p_synchro->current_pts - next_pts
443                     > PTS_THRESHOLD )
444             {
445                 msg_Warn( p_synchro, "vout synchro warning: pts != "
446                           "current_date ("I64Fd")",
447                           p_synchro->current_pts
448                               - next_pts );
449             }
450             p_synchro->current_pts = next_pts;
451         }
452     }
453     else
454     {
455         p_synchro->i_current_period = p_synchro->i_backward_period;
456         p_synchro->i_backward_period = i_repeat_field;
457
458         if( p_synchro->backward_pts )
459         {
460             if( next_dts && 
461                 (next_dts - p_synchro->backward_pts
462                     > PTS_THRESHOLD
463               || p_synchro->backward_pts - next_dts
464                     > PTS_THRESHOLD) )
465             {
466                 msg_Warn( p_synchro, "backward_pts != dts ("I64Fd")",
467                            next_dts
468                                - p_synchro->backward_pts );
469             }
470             if( p_synchro->backward_pts - p_synchro->current_pts
471                     > PTS_THRESHOLD
472                  || p_synchro->current_pts - p_synchro->backward_pts
473                     > PTS_THRESHOLD )
474             {
475                 msg_Warn( p_synchro,
476                           "backward_pts != current_pts ("I64Fd")",
477                           p_synchro->current_pts
478                               - p_synchro->backward_pts );
479             }
480             p_synchro->current_pts = p_synchro->backward_pts;
481             p_synchro->backward_pts = 0;
482         }
483         else if( next_dts )
484         {
485             if( next_dts - p_synchro->current_pts
486                     > PTS_THRESHOLD
487                  || p_synchro->current_pts - next_dts
488                     > PTS_THRESHOLD )
489             {
490                 msg_Warn( p_synchro, "dts != current_pts ("I64Fd")",
491                           p_synchro->current_pts
492                               - next_dts );
493             }
494             /* By definition of a DTS. */
495             p_synchro->current_pts = next_dts;
496             next_dts = 0;
497         }
498
499         if( next_pts )
500         {
501             /* Store the PTS for the next time we have to date an I picture. */
502             p_synchro->backward_pts = next_pts;
503             next_pts = 0;
504         }
505     }
506 #undef PTS_THRESHOLD
507
508 #if 0
509     /* Removed for incompatibility with slow motion */
510     if( p_synchro->current_pts + DEFAULT_PTS_DELAY < now )
511     {
512         /* We cannot be _that_ late, something must have happened, reinit
513          * the dates. */
514         msg_Warn( p_synchro, "PTS << now ("I64Fd"), resetting",
515                    now - p_synchro->current_pts - DEFAULT_PTS_DELAY );
516         p_synchro->current_pts = now + DEFAULT_PTS_DELAY;
517     }
518     if( p_synchro->backward_pts
519          && p_synchro->backward_pts + DEFAULT_PTS_DELAY < now )
520     {
521         /* The same. */
522         p_synchro->backward_pts = 0;
523     }
524 #endif
525
526     p_synchro->i_pic++;
527 }