]> git.sesse.net Git - vlc/blob - src/input/decoder.c
Cosmetics (create a DecoderWaitDate function).
[vlc] / src / input / decoder.c
1 /*****************************************************************************
2  * decoder.c: Functions for the management of decoders
3  *****************************************************************************
4  * Copyright (C) 1999-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *          Laurent Aimar <fenrir@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., 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 #include <assert.h>
33
34 #include <vlc_common.h>
35
36 #include <vlc_block.h>
37 #include <vlc_vout.h>
38 #include <vlc_aout.h>
39 #include <vlc_sout.h>
40 #include <vlc_codec.h>
41 #include <vlc_osd.h>
42 #include <vlc_meta.h>
43 #include <vlc_dialog.h>
44
45 #include "audio_output/aout_internal.h"
46 #include "stream_output/stream_output.h"
47 #include "input_internal.h"
48 #include "clock.h"
49 #include "decoder.h"
50 #include "event.h"
51 #include "resource.h"
52
53 #include "../video_output/vout_control.h"
54
55 static decoder_t *CreateDecoder( input_thread_t *, es_format_t *, bool,
56                                  sout_instance_t *p_sout );
57 static void       DeleteDecoder( decoder_t * );
58
59 static void      *DecoderThread( vlc_object_t * );
60 static void       DecoderProcess( decoder_t *, block_t * );
61 static void       DecoderError( decoder_t *p_dec, block_t *p_block );
62 static void       DecoderOutputChangePause( decoder_t *, bool b_paused, mtime_t i_date );
63 static void       DecoderFlush( decoder_t * );
64 static void       DecoderSignalBuffering( decoder_t *, bool );
65 static void       DecoderFlushBuffering( decoder_t * );
66
67 static void       DecoderUnsupportedCodec( decoder_t *, vlc_fourcc_t );
68
69 /* Buffers allocation callbacks for the decoders */
70 static aout_buffer_t *aout_new_buffer( decoder_t *, int );
71 static void aout_del_buffer( decoder_t *, aout_buffer_t * );
72
73 static picture_t *vout_new_buffer( decoder_t * );
74 static void vout_del_buffer( decoder_t *, picture_t * );
75 static void vout_link_picture( decoder_t *, picture_t * );
76 static void vout_unlink_picture( decoder_t *, picture_t * );
77
78 static subpicture_t *spu_new_buffer( decoder_t * );
79 static void spu_del_buffer( decoder_t *, subpicture_t * );
80
81 struct decoder_owner_sys_t
82 {
83     int64_t         i_preroll_end;
84
85     input_thread_t  *p_input;
86     input_clock_t   *p_clock;
87     int             i_last_rate;
88
89     vout_thread_t   *p_spu_vout;
90     int              i_spu_channel;
91     int64_t          i_spu_order;
92
93     sout_instance_t         *p_sout;
94     sout_packetizer_input_t *p_sout_input;
95
96     /* Some decoders require already packetized data (ie. not truncated) */
97     decoder_t *p_packetizer;
98     bool b_packetizer;
99
100     /* Current format in use by the output */
101     video_format_t video;
102     audio_format_t audio;
103     es_format_t    sout;
104
105     /* */
106     bool           b_fmt_description;
107     es_format_t    fmt_description;
108     vlc_meta_t     *p_description;
109
110     /* fifo */
111     block_fifo_t *p_fifo;
112
113     /* Lock for communication with decoder thread */
114     vlc_mutex_t lock;
115     vlc_cond_t  wait_request;
116     vlc_cond_t  wait_acknowledge;
117
118     /* -- These variables need locking on write(only) -- */
119     aout_instance_t *p_aout;
120     aout_input_t    *p_aout_input;
121
122     vout_thread_t   *p_vout;
123
124     /* -- Theses variables need locking on read *and* write -- */
125     /* */
126     /* Pause */
127     bool b_paused;
128     struct
129     {
130         mtime_t i_date;
131         int     i_ignore;
132     } pause;
133
134     /* Buffering */
135     bool b_buffering;
136     struct
137     {
138         bool b_first;
139         bool b_full;
140         int  i_count;
141
142         picture_t     *p_picture;
143         picture_t     **pp_picture_next;
144
145         subpicture_t  *p_subpic;
146         subpicture_t  **pp_subpic_next;
147
148         aout_buffer_t *p_audio;
149         aout_buffer_t **pp_audio_next;
150
151         block_t       *p_block;
152         block_t       **pp_block_next;
153     } buffer;
154
155     /* Flushing */
156     bool b_flushing;
157
158     /* CC */
159     struct
160     {
161         bool b_supported;
162         bool pb_present[4];
163         decoder_t *pp_decoder[4];
164     } cc;
165
166     /* Delay */
167     mtime_t i_ts_delay;
168 };
169
170 #define DECODER_MAX_BUFFERING_COUNT (4)
171 #define DECODER_MAX_BUFFERING_AUDIO_DURATION (AOUT_MAX_PREPARE_TIME)
172 #define DECODER_MAX_BUFFERING_VIDEO_DURATION (1*CLOCK_FREQ)
173
174 /* Pictures which are DECODER_BOGUS_VIDEO_DELAY or more in advance probably have
175  * a bogus PTS and won't be displayed */
176 #define DECODER_BOGUS_VIDEO_DELAY                ((mtime_t)(DEFAULT_PTS_DELAY * 30))
177
178 /* */
179 #define DECODER_SPU_VOUT_WAIT_DURATION ((int)(0.200*CLOCK_FREQ))
180
181
182 /*****************************************************************************
183  * Public functions
184  *****************************************************************************/
185 picture_t *decoder_NewPicture( decoder_t *p_decoder )
186 {
187     picture_t *p_picture = p_decoder->pf_vout_buffer_new( p_decoder );
188     if( !p_picture )
189         msg_Warn( p_decoder, "can't get output picture" );
190     return p_picture;
191 }
192 void decoder_DeletePicture( decoder_t *p_decoder, picture_t *p_picture )
193 {
194     p_decoder->pf_vout_buffer_del( p_decoder, p_picture );
195 }
196 void decoder_LinkPicture( decoder_t *p_decoder, picture_t *p_picture )
197 {
198     p_decoder->pf_picture_link( p_decoder, p_picture );
199 }
200 void decoder_UnlinkPicture( decoder_t *p_decoder, picture_t *p_picture )
201 {
202     p_decoder->pf_picture_unlink( p_decoder, p_picture );
203 }
204
205 aout_buffer_t *decoder_NewAudioBuffer( decoder_t *p_decoder, int i_size )
206 {
207     if( !p_decoder->pf_aout_buffer_new )
208         return NULL;
209     return p_decoder->pf_aout_buffer_new( p_decoder, i_size );
210 }
211 void decoder_DeleteAudioBuffer( decoder_t *p_decoder, aout_buffer_t *p_buffer )
212 {
213     p_decoder->pf_aout_buffer_del( p_decoder, p_buffer );
214 }
215
216 subpicture_t *decoder_NewSubpicture( decoder_t *p_decoder )
217 {
218     subpicture_t *p_subpicture = p_decoder->pf_spu_buffer_new( p_decoder );
219     if( !p_subpicture )
220         msg_Warn( p_decoder, "can't get output subpicture" );
221     return p_subpicture;
222 }
223 void decoder_DeleteSubpicture( decoder_t *p_decoder, subpicture_t *p_subpicture )
224 {
225     p_decoder->pf_spu_buffer_del( p_decoder, p_subpicture );
226 }
227
228 /* decoder_GetInputAttachments:
229  */
230 int decoder_GetInputAttachments( decoder_t *p_dec,
231                                  input_attachment_t ***ppp_attachment,
232                                  int *pi_attachment )
233 {
234     if( !p_dec->pf_get_attachments )
235         return VLC_EGENERIC;
236
237     return p_dec->pf_get_attachments( p_dec, ppp_attachment, pi_attachment );
238 }
239 /* decoder_GetDisplayDate:
240  */
241 mtime_t decoder_GetDisplayDate( decoder_t *p_dec, mtime_t i_ts )
242 {
243     if( !p_dec->pf_get_display_date )
244         return VLC_TS_INVALID;
245
246     return p_dec->pf_get_display_date( p_dec, i_ts );
247 }
248 /* decoder_GetDisplayRate:
249  */
250 int decoder_GetDisplayRate( decoder_t *p_dec )
251 {
252     if( !p_dec->pf_get_display_rate )
253         return INPUT_RATE_DEFAULT;
254
255     return p_dec->pf_get_display_rate( p_dec );
256 }
257
258 /**
259  * Spawns a new decoder thread
260  *
261  * \param p_input the input thread
262  * \param p_es the es descriptor
263  * \return the spawned decoder object
264  */
265 decoder_t *input_DecoderNew( input_thread_t *p_input,
266                              es_format_t *fmt, input_clock_t *p_clock,
267                              sout_instance_t *p_sout  )
268 {
269     decoder_t *p_dec = NULL;
270     const char *psz_type = p_sout ? N_("packetizer") : N_("decoder");
271     int i_priority;
272
273     /* Create the decoder configuration structure */
274     p_dec = CreateDecoder( p_input, fmt, p_sout != NULL, p_sout );
275     if( p_dec == NULL )
276     {
277         msg_Err( p_input, "could not create %s", psz_type );
278         dialog_Fatal( p_input, _("Streaming / Transcoding failed"),
279                       _("VLC could not open the %s module."),
280                       vlc_gettext( psz_type ) );
281         return NULL;
282     }
283
284     if( !p_dec->p_module )
285     {
286         DecoderUnsupportedCodec( p_dec, fmt->i_codec );
287
288         DeleteDecoder( p_dec );
289         vlc_object_release( p_dec );
290         return NULL;
291     }
292
293     p_dec->p_owner->p_clock = p_clock;
294     assert( p_dec->fmt_out.i_cat != UNKNOWN_ES );
295
296     if( p_dec->fmt_out.i_cat == AUDIO_ES )
297         i_priority = VLC_THREAD_PRIORITY_AUDIO;
298     else
299         i_priority = VLC_THREAD_PRIORITY_VIDEO;
300
301     /* Spawn the decoder thread */
302     if( vlc_thread_create( p_dec, "decoder", DecoderThread, i_priority ) )
303     {
304         msg_Err( p_dec, "cannot spawn decoder thread" );
305         module_unneed( p_dec, p_dec->p_module );
306         DeleteDecoder( p_dec );
307         vlc_object_release( p_dec );
308         return NULL;
309     }
310
311     return p_dec;
312 }
313
314 /**
315  * Kills a decoder thread and waits until it's finished
316  *
317  * \param p_input the input thread
318  * \param p_es the es descriptor
319  * \return nothing
320  */
321 void input_DecoderDelete( decoder_t *p_dec )
322 {
323     decoder_owner_sys_t *p_owner = p_dec->p_owner;
324
325     vlc_object_kill( p_dec );
326
327     /* Make sure we aren't paused/buffering/waiting anymore */
328     vlc_mutex_lock( &p_owner->lock );
329     const bool b_was_paused = p_owner->b_paused;
330     p_owner->b_paused = false;
331     p_owner->b_buffering = false;
332     p_owner->b_flushing = true;
333     vlc_cond_signal( &p_owner->wait_request );
334     vlc_mutex_unlock( &p_owner->lock );
335
336     vlc_thread_join( p_dec );
337     p_owner->b_paused = b_was_paused;
338
339     module_unneed( p_dec, p_dec->p_module );
340
341     /* */
342     if( p_dec->p_owner->cc.b_supported )
343     {
344         int i;
345         for( i = 0; i < 4; i++ )
346             input_DecoderSetCcState( p_dec, false, i );
347     }
348
349     /* Delete decoder configuration */
350     DeleteDecoder( p_dec );
351
352     /* Delete the decoder */
353     vlc_object_release( p_dec );
354 }
355
356 /**
357  * Put a block_t in the decoder's fifo.
358  * Thread-safe w.r.t. the decoder. May be a cancellation point.
359  *
360  * \param p_dec the decoder object
361  * \param p_block the data block
362  */
363 void input_DecoderDecode( decoder_t *p_dec, block_t *p_block, bool b_do_pace )
364 {
365     decoder_owner_sys_t *p_owner = p_dec->p_owner;
366
367     if( b_do_pace )
368     {
369         /* The fifo is not consummed when buffering and so will
370          * deadlock vlc.
371          * There is no need to lock as b_buffering is never modify
372          * inside decoder thread. */
373         if( !p_owner->b_buffering )
374             block_FifoPace( p_owner->p_fifo, 10, SIZE_MAX );
375     }
376     else if( block_FifoSize( p_owner->p_fifo ) > 400000000 /* 400 MB, ie ~ 50mb/s for 60s */ )
377     {
378         /* FIXME: ideally we would check the time amount of data
379          * in the FIFO instead of its size. */
380         msg_Warn( p_dec, "decoder/packetizer fifo full (data not "
381                   "consumed quickly enough), resetting fifo!" );
382         block_FifoEmpty( p_owner->p_fifo );
383     }
384
385     block_FifoPut( p_owner->p_fifo, p_block );
386 }
387
388 bool input_DecoderIsEmpty( decoder_t * p_dec )
389 {
390     assert( !p_dec->p_owner->b_buffering );
391
392     /* FIXME that's not really true */
393     return block_FifoCount( p_dec->p_owner->p_fifo ) <= 0;
394 }
395
396 void input_DecoderIsCcPresent( decoder_t *p_dec, bool pb_present[4] )
397 {
398     decoder_owner_sys_t *p_owner = p_dec->p_owner;
399     int i;
400
401     vlc_mutex_lock( &p_owner->lock );
402     for( i = 0; i < 4; i++ )
403         pb_present[i] =  p_owner->cc.pb_present[i];
404     vlc_mutex_unlock( &p_owner->lock );
405 }
406 int input_DecoderSetCcState( decoder_t *p_dec, bool b_decode, int i_channel )
407 {
408     decoder_owner_sys_t *p_owner = p_dec->p_owner;
409
410     //msg_Warn( p_dec, "input_DecoderSetCcState: %d @%d", b_decode, i_channel );
411
412     if( i_channel < 0 || i_channel >= 4 || !p_owner->cc.pb_present[i_channel] )
413         return VLC_EGENERIC;
414
415     if( b_decode )
416     {
417         static const vlc_fourcc_t fcc[4] = {
418             VLC_FOURCC('c', 'c', '1', ' '),
419             VLC_FOURCC('c', 'c', '2', ' '),
420             VLC_FOURCC('c', 'c', '3', ' '),
421             VLC_FOURCC('c', 'c', '4', ' '),
422         };
423         decoder_t *p_cc;
424         es_format_t fmt;
425
426         es_format_Init( &fmt, SPU_ES, fcc[i_channel] );
427         p_cc = CreateDecoder( p_owner->p_input, &fmt, false, p_owner->p_sout );
428         if( !p_cc )
429         {
430             msg_Err( p_dec, "could not create decoder" );
431             dialog_Fatal( p_dec, _("Streaming / Transcoding failed"), "%s",
432                           _("VLC could not open the decoder module.") );
433             return VLC_EGENERIC;
434         }
435         else if( !p_cc->p_module )
436         {
437             DecoderUnsupportedCodec( p_dec, fcc[i_channel] );
438             DeleteDecoder( p_cc );
439             vlc_object_release( p_cc );
440             return VLC_EGENERIC;
441         }
442         p_cc->p_owner->p_clock = p_owner->p_clock;
443
444         vlc_mutex_lock( &p_owner->lock );
445         p_owner->cc.pp_decoder[i_channel] = p_cc;
446         vlc_mutex_unlock( &p_owner->lock );
447     }
448     else
449     {
450         decoder_t *p_cc;
451
452         vlc_mutex_lock( &p_owner->lock );
453         p_cc = p_owner->cc.pp_decoder[i_channel];
454         p_owner->cc.pp_decoder[i_channel] = NULL;
455         vlc_mutex_unlock( &p_owner->lock );
456
457         if( p_cc )
458         {
459             vlc_object_kill( p_cc );
460             module_unneed( p_cc, p_cc->p_module );
461             DeleteDecoder( p_cc );
462             vlc_object_release( p_cc );
463         }
464     }
465     return VLC_SUCCESS;
466 }
467 int input_DecoderGetCcState( decoder_t *p_dec, bool *pb_decode, int i_channel )
468 {
469     decoder_owner_sys_t *p_owner = p_dec->p_owner;
470
471     *pb_decode = false;
472     if( i_channel < 0 || i_channel >= 4 || !p_owner->cc.pb_present[i_channel] )
473         return VLC_EGENERIC;
474
475     vlc_mutex_lock( &p_owner->lock );
476     *pb_decode = p_owner->cc.pp_decoder[i_channel] != NULL;
477     vlc_mutex_unlock( &p_owner->lock );
478     return VLC_EGENERIC;
479 }
480
481 void input_DecoderChangePause( decoder_t *p_dec, bool b_paused, mtime_t i_date )
482 {
483     decoder_owner_sys_t *p_owner = p_dec->p_owner;
484
485     vlc_mutex_lock( &p_owner->lock );
486
487     assert( !p_owner->b_paused || !b_paused );
488
489     p_owner->b_paused = b_paused;
490     p_owner->pause.i_date = i_date;
491     p_owner->pause.i_ignore = 0;
492     vlc_cond_signal( &p_owner->wait_request );
493
494     DecoderOutputChangePause( p_dec, b_paused, i_date );
495
496     vlc_mutex_unlock( &p_owner->lock );
497 }
498
499 void input_DecoderChangeDelay( decoder_t *p_dec, mtime_t i_delay )
500 {
501     decoder_owner_sys_t *p_owner = p_dec->p_owner;
502
503     vlc_mutex_lock( &p_owner->lock );
504     p_owner->i_ts_delay = i_delay;
505     vlc_mutex_unlock( &p_owner->lock );
506 }
507
508 void input_DecoderStartBuffering( decoder_t *p_dec )
509 {
510     decoder_owner_sys_t *p_owner = p_dec->p_owner;
511
512     vlc_mutex_lock( &p_owner->lock );
513
514     DecoderFlush( p_dec );
515
516     p_owner->buffer.b_first = true;
517     p_owner->buffer.b_full = false;
518     p_owner->buffer.i_count = 0;
519
520     assert( !p_owner->buffer.p_picture && !p_owner->buffer.p_subpic &&
521             !p_owner->buffer.p_audio && !p_owner->buffer.p_block );
522
523     p_owner->buffer.p_picture = NULL;
524     p_owner->buffer.pp_picture_next = &p_owner->buffer.p_picture;
525
526     p_owner->buffer.p_subpic = NULL;
527     p_owner->buffer.pp_subpic_next = &p_owner->buffer.p_subpic;
528
529     p_owner->buffer.p_audio = NULL;
530     p_owner->buffer.pp_audio_next = &p_owner->buffer.p_audio;
531
532     p_owner->buffer.p_block = NULL;
533     p_owner->buffer.pp_block_next = &p_owner->buffer.p_block;
534
535
536     p_owner->b_buffering = true;
537
538     vlc_cond_signal( &p_owner->wait_request );
539
540     vlc_mutex_unlock( &p_owner->lock );
541 }
542
543 void input_DecoderStopBuffering( decoder_t *p_dec )
544 {
545     decoder_owner_sys_t *p_owner = p_dec->p_owner;
546
547     vlc_mutex_lock( &p_owner->lock );
548
549     p_owner->b_buffering = false;
550
551     vlc_cond_signal( &p_owner->wait_request );
552
553     vlc_mutex_unlock( &p_owner->lock );
554 }
555
556 void input_DecoderWaitBuffering( decoder_t *p_dec )
557 {
558     decoder_owner_sys_t *p_owner = p_dec->p_owner;
559
560     vlc_mutex_lock( &p_owner->lock );
561
562     while( vlc_object_alive( p_dec ) && p_owner->b_buffering && !p_owner->buffer.b_full )
563     {
564         block_FifoWake( p_owner->p_fifo );
565         vlc_cond_wait( &p_owner->wait_acknowledge, &p_owner->lock );
566     }
567
568     vlc_mutex_unlock( &p_owner->lock );
569 }
570
571 void input_DecoderFrameNext( decoder_t *p_dec, mtime_t *pi_duration )
572 {
573     decoder_owner_sys_t *p_owner = p_dec->p_owner;
574
575     *pi_duration = 0;
576
577     vlc_mutex_lock( &p_owner->lock );
578     if( p_dec->fmt_out.i_cat == VIDEO_ES )
579     {
580         if( p_owner->b_paused && p_owner->p_vout )
581         {
582             vout_NextPicture( p_owner->p_vout, pi_duration );
583             p_owner->pause.i_ignore++;
584             vlc_cond_signal( &p_owner->wait_request );
585         }
586     }
587     else
588     {
589         /* TODO subtitle should not be flushed */
590         DecoderFlush( p_dec );
591     }
592     vlc_mutex_unlock( &p_owner->lock );
593 }
594
595 bool input_DecoderHasFormatChanged( decoder_t *p_dec, es_format_t *p_fmt, vlc_meta_t **pp_meta )
596 {
597     decoder_owner_sys_t *p_owner = p_dec->p_owner;
598     bool b_changed;
599
600     vlc_mutex_lock( &p_owner->lock );
601     b_changed = p_owner->b_fmt_description;
602     if( b_changed )
603     {
604         if( p_fmt )
605             es_format_Copy( p_fmt, &p_owner->fmt_description );
606
607         if( pp_meta )
608         {
609             *pp_meta = NULL;
610             if( p_owner->p_description )
611             {
612                 *pp_meta = vlc_meta_New();
613                 if( *pp_meta )
614                     vlc_meta_Merge( *pp_meta, p_owner->p_description );
615             }
616         }
617         p_owner->b_fmt_description = false;
618     }
619     vlc_mutex_unlock( &p_owner->lock );
620     return b_changed;
621 }
622
623 size_t input_DecoderGetFifoSize( decoder_t *p_dec )
624 {
625     decoder_owner_sys_t *p_owner = p_dec->p_owner;
626
627     return block_FifoSize( p_owner->p_fifo );
628 }
629
630 /*****************************************************************************
631  * Internal functions
632  *****************************************************************************/
633 static int DecoderGetInputAttachments( decoder_t *p_dec,
634                                        input_attachment_t ***ppp_attachment,
635                                        int *pi_attachment )
636 {
637     return input_Control( p_dec->p_owner->p_input, INPUT_GET_ATTACHMENTS,
638                           ppp_attachment, pi_attachment );
639 }
640 static mtime_t DecoderGetDisplayDate( decoder_t *p_dec, mtime_t i_ts )
641 {
642     decoder_owner_sys_t *p_owner = p_dec->p_owner;
643
644     vlc_mutex_lock( &p_owner->lock );
645     if( p_owner->b_buffering || p_owner->b_paused )
646         i_ts = VLC_TS_INVALID;
647     vlc_mutex_unlock( &p_owner->lock );
648
649     if( !p_owner->p_clock || i_ts <= VLC_TS_INVALID )
650         return i_ts;
651
652     if( input_clock_ConvertTS( p_owner->p_clock, NULL, &i_ts, NULL, INT64_MAX ) )
653         return VLC_TS_INVALID;
654
655     return i_ts;
656 }
657 static int DecoderGetDisplayRate( decoder_t *p_dec )
658 {
659     decoder_owner_sys_t *p_owner = p_dec->p_owner;
660
661     if( !p_owner->p_clock )
662         return INPUT_RATE_DEFAULT;
663     return input_clock_GetRate( p_owner->p_clock );
664 }
665
666 /* */
667 static void DecoderUnsupportedCodec( decoder_t *p_dec, vlc_fourcc_t codec )
668 {
669     msg_Err( p_dec, "no suitable decoder module for fourcc `%4.4s'. "
670              "VLC probably does not support this sound or video format.",
671              (char*)&codec );
672     dialog_Fatal( p_dec, _("No suitable decoder module"),
673                  _("VLC does not support the audio or video format \"%4.4s\". "
674                   "Unfortunately there is no way for you to fix this."),
675                   (char*)&codec );
676 }
677
678
679 /**
680  * Create a decoder object
681  *
682  * \param p_input the input thread
683  * \param p_es the es descriptor
684  * \param b_packetizer instead of a decoder
685  * \return the decoder object
686  */
687 static decoder_t * CreateDecoder( input_thread_t *p_input,
688                                   es_format_t *fmt, bool b_packetizer,
689                                   sout_instance_t *p_sout )
690 {
691     decoder_t *p_dec;
692     decoder_owner_sys_t *p_owner;
693     es_format_t null_es_format;
694
695     p_dec = vlc_object_create( p_input, VLC_OBJECT_DECODER );
696     if( p_dec == NULL )
697         return NULL;
698
699     p_dec->pf_decode_audio = NULL;
700     p_dec->pf_decode_video = NULL;
701     p_dec->pf_decode_sub = NULL;
702     p_dec->pf_get_cc = NULL;
703     p_dec->pf_packetize = NULL;
704
705     /* Initialize the decoder */
706     p_dec->p_module = NULL;
707
708     memset( &null_es_format, 0, sizeof(es_format_t) );
709     es_format_Copy( &p_dec->fmt_in, fmt );
710     es_format_Copy( &p_dec->fmt_out, &null_es_format );
711
712     p_dec->p_description = NULL;
713
714     /* Allocate our private structure for the decoder */
715     p_dec->p_owner = p_owner = malloc( sizeof( decoder_owner_sys_t ) );
716     if( p_dec->p_owner == NULL )
717     {
718         vlc_object_release( p_dec );
719         return NULL;
720     }
721     p_dec->p_owner->i_preroll_end = VLC_TS_INVALID;
722     p_dec->p_owner->i_last_rate = INPUT_RATE_DEFAULT;
723     p_dec->p_owner->p_input = p_input;
724     p_dec->p_owner->p_aout = NULL;
725     p_dec->p_owner->p_aout_input = NULL;
726     p_dec->p_owner->p_vout = NULL;
727     p_dec->p_owner->p_spu_vout = NULL;
728     p_dec->p_owner->i_spu_channel = 0;
729     p_dec->p_owner->i_spu_order = 0;
730     p_dec->p_owner->p_sout = p_sout;
731     p_dec->p_owner->p_sout_input = NULL;
732     p_dec->p_owner->p_packetizer = NULL;
733     p_dec->p_owner->b_packetizer = b_packetizer;
734
735     /* decoder fifo */
736     if( ( p_dec->p_owner->p_fifo = block_FifoNew() ) == NULL )
737     {
738         free( p_dec->p_owner );
739         vlc_object_release( p_dec );
740         return NULL;
741     }
742
743     /* Set buffers allocation callbacks for the decoders */
744     p_dec->pf_aout_buffer_new = aout_new_buffer;
745     p_dec->pf_aout_buffer_del = aout_del_buffer;
746     p_dec->pf_vout_buffer_new = vout_new_buffer;
747     p_dec->pf_vout_buffer_del = vout_del_buffer;
748     p_dec->pf_picture_link    = vout_link_picture;
749     p_dec->pf_picture_unlink  = vout_unlink_picture;
750     p_dec->pf_spu_buffer_new  = spu_new_buffer;
751     p_dec->pf_spu_buffer_del  = spu_del_buffer;
752     /* */
753     p_dec->pf_get_attachments  = DecoderGetInputAttachments;
754     p_dec->pf_get_display_date = DecoderGetDisplayDate;
755     p_dec->pf_get_display_rate = DecoderGetDisplayRate;
756
757     vlc_object_attach( p_dec, p_input );
758
759     /* Find a suitable decoder/packetizer module */
760     if( !b_packetizer )
761         p_dec->p_module = module_need( p_dec, "decoder", "$codec", false );
762     else
763         p_dec->p_module = module_need( p_dec, "packetizer", "$packetizer", false );
764
765     /* Check if decoder requires already packetized data */
766     if( !b_packetizer &&
767         p_dec->b_need_packetized && !p_dec->fmt_in.b_packetized )
768     {
769         p_dec->p_owner->p_packetizer =
770             vlc_object_create( p_input, VLC_OBJECT_DECODER );
771         if( p_dec->p_owner->p_packetizer )
772         {
773             es_format_Copy( &p_dec->p_owner->p_packetizer->fmt_in,
774                             &p_dec->fmt_in );
775
776             es_format_Copy( &p_dec->p_owner->p_packetizer->fmt_out,
777                             &null_es_format );
778
779             vlc_object_attach( p_dec->p_owner->p_packetizer, p_input );
780
781             p_dec->p_owner->p_packetizer->p_module =
782                 module_need( p_dec->p_owner->p_packetizer,
783                              "packetizer", "$packetizer", false );
784
785             if( !p_dec->p_owner->p_packetizer->p_module )
786             {
787                 es_format_Clean( &p_dec->p_owner->p_packetizer->fmt_in );
788                 vlc_object_detach( p_dec->p_owner->p_packetizer );
789                 vlc_object_release( p_dec->p_owner->p_packetizer );
790             }
791         }
792     }
793
794     /* Copy ourself the input replay gain */
795     if( fmt->i_cat == AUDIO_ES )
796     {
797         for( unsigned i = 0; i < AUDIO_REPLAY_GAIN_MAX; i++ )
798         {
799             if( !p_dec->fmt_out.audio_replay_gain.pb_peak[i] )
800             {
801                 p_dec->fmt_out.audio_replay_gain.pb_peak[i] = fmt->audio_replay_gain.pb_peak[i];
802                 p_dec->fmt_out.audio_replay_gain.pf_peak[i] = fmt->audio_replay_gain.pf_peak[i];
803             }
804             if( !p_dec->fmt_out.audio_replay_gain.pb_gain[i] )
805             {
806                 p_dec->fmt_out.audio_replay_gain.pb_gain[i] = fmt->audio_replay_gain.pb_gain[i];
807                 p_dec->fmt_out.audio_replay_gain.pf_gain[i] = fmt->audio_replay_gain.pf_gain[i];
808             }
809         }
810     }
811
812     /* */
813     vlc_mutex_init( &p_owner->lock );
814     vlc_cond_init( &p_owner->wait_request );
815     vlc_cond_init( &p_owner->wait_acknowledge );
816
817     p_owner->b_fmt_description = false;
818     es_format_Init( &p_owner->fmt_description, UNKNOWN_ES, 0 );
819     p_owner->p_description = NULL;
820
821     p_owner->b_paused = false;
822     p_owner->pause.i_date = VLC_TS_INVALID;
823     p_owner->pause.i_ignore = 0;
824
825     p_owner->b_buffering = false;
826     p_owner->buffer.b_first = true;
827     p_owner->buffer.b_full = false;
828     p_owner->buffer.i_count = 0;
829     p_owner->buffer.p_picture = NULL;
830     p_owner->buffer.p_subpic = NULL;
831     p_owner->buffer.p_audio = NULL;
832     p_owner->buffer.p_block = NULL;
833
834     p_owner->b_flushing = false;
835
836     /* */
837     p_owner->cc.b_supported = false;
838     if( !b_packetizer )
839     {
840         if( p_owner->p_packetizer && p_owner->p_packetizer->pf_get_cc )
841             p_owner->cc.b_supported = true;
842         if( p_dec->pf_get_cc )
843             p_owner->cc.b_supported = true;
844     }
845
846     for( unsigned i = 0; i < 4; i++ )
847     {
848         p_owner->cc.pb_present[i] = false;
849         p_owner->cc.pp_decoder[i] = NULL;
850     }
851     p_owner->i_ts_delay = 0;
852     return p_dec;
853 }
854
855 /**
856  * The decoding main loop
857  *
858  * \param p_dec the decoder
859  */
860 static void *DecoderThread( vlc_object_t *p_this )
861 {
862     decoder_t *p_dec = (decoder_t *)p_this;
863     decoder_owner_sys_t *p_owner = p_dec->p_owner;
864
865     /* The decoder's main loop */
866     for( ;; )
867     {
868         block_t *p_block = block_FifoGet( p_owner->p_fifo );
869
870         /* Make sure there is no cancellation point other than this one^^.
871          * If you need one, be sure to push cleanup of p_block. */
872         DecoderSignalBuffering( p_dec, p_block == NULL );
873
874         if( p_block )
875         {
876             int canc = vlc_savecancel();
877
878             if( p_dec->b_error )
879                 DecoderError( p_dec, p_block );
880             else
881                 DecoderProcess( p_dec, p_block );
882
883             vlc_restorecancel( canc );
884         }
885     }
886     return NULL;
887 }
888
889 static block_t *DecoderBlockFlushNew()
890 {
891     block_t *p_null = block_Alloc( 128 );
892     if( !p_null )
893         return NULL;
894
895     p_null->i_flags |= BLOCK_FLAG_DISCONTINUITY |
896                        BLOCK_FLAG_CORRUPTED |
897                        BLOCK_FLAG_CORE_FLUSH;
898     memset( p_null->p_buffer, 0, p_null->i_buffer );
899
900     return p_null;
901 }
902
903 static void DecoderFlush( decoder_t *p_dec )
904 {
905     decoder_owner_sys_t *p_owner = p_dec->p_owner;
906
907     vlc_assert_locked( &p_owner->lock );
908
909     /* Empty the fifo */
910     block_FifoEmpty( p_owner->p_fifo );
911
912     /* Monitor for flush end */
913     p_owner->b_flushing = true;
914     vlc_cond_signal( &p_owner->wait_request );
915
916     /* Send a special block */
917     block_t *p_null = DecoderBlockFlushNew();
918     if( !p_null )
919         return;
920     input_DecoderDecode( p_dec, p_null, false );
921
922     /* */
923     while( vlc_object_alive( p_dec ) && p_owner->b_flushing )
924         vlc_cond_wait( &p_owner->wait_acknowledge, &p_owner->lock );
925 }
926
927 static void DecoderSignalBuffering( decoder_t *p_dec, bool b_full )
928 {
929     decoder_owner_sys_t *p_owner = p_dec->p_owner;
930
931     vlc_mutex_lock( &p_owner->lock );
932
933     if( p_owner->b_buffering )
934     {
935         if( b_full )
936             p_owner->buffer.b_full = true;
937         vlc_cond_signal( &p_owner->wait_acknowledge );
938     }
939
940     vlc_mutex_unlock( &p_owner->lock );
941 }
942
943 static bool DecoderIsFlushing( decoder_t *p_dec )
944 {
945     decoder_owner_sys_t *p_owner = p_dec->p_owner;
946     bool b_flushing;
947
948     vlc_mutex_lock( &p_owner->lock );
949
950     b_flushing = p_owner->b_flushing;
951
952     vlc_mutex_unlock( &p_owner->lock );
953
954     return b_flushing;
955 }
956
957 static void DecoderWaitUnblock( decoder_t *p_dec, bool *pb_reject )
958 {
959     decoder_owner_sys_t *p_owner = p_dec->p_owner;
960
961     vlc_assert_locked( &p_owner->lock );
962
963     while( !p_owner->b_flushing )
964     {
965         if( p_owner->b_paused )
966         {
967             if( p_owner->b_buffering && !p_owner->buffer.b_full )
968                 break;
969             if( p_owner->pause.i_ignore > 0 )
970             {
971                 p_owner->pause.i_ignore--;
972                 break;
973             }
974         }
975         else
976         {
977             if( !p_owner->b_buffering || !p_owner->buffer.b_full )
978                 break;
979         }
980         vlc_cond_wait( &p_owner->wait_request, &p_owner->lock );
981     }
982
983     if( pb_reject )
984         *pb_reject = p_owner->b_flushing;
985 }
986
987 static void DecoderOutputChangePause( decoder_t *p_dec, bool b_paused, mtime_t i_date )
988 {
989     decoder_owner_sys_t *p_owner = p_dec->p_owner;
990
991     vlc_assert_locked( &p_owner->lock );
992
993     /* XXX only audio and video output have to be paused.
994      * - for sout it is useless
995      * - for subs, it is done by the vout
996      */
997     if( p_dec->fmt_out.i_cat == AUDIO_ES )
998     {
999         if( p_owner->p_aout && p_owner->p_aout_input )
1000             aout_DecChangePause( p_owner->p_aout, p_owner->p_aout_input,
1001                                  b_paused, i_date );
1002     }
1003     else if( p_dec->fmt_out.i_cat == VIDEO_ES )
1004     {
1005         if( p_owner->p_vout )
1006             vout_ChangePause( p_owner->p_vout, b_paused, i_date );
1007     }
1008 }
1009 static inline void DecoderUpdatePreroll( int64_t *pi_preroll, const block_t *p )
1010 {
1011     if( p->i_flags & (BLOCK_FLAG_PREROLL|BLOCK_FLAG_DISCONTINUITY) )
1012         *pi_preroll = INT64_MAX;
1013     else if( p->i_dts > VLC_TS_INVALID )
1014         *pi_preroll = __MIN( *pi_preroll, p->i_dts );
1015     else if( p->i_pts > VLC_TS_INVALID )
1016         *pi_preroll = __MIN( *pi_preroll, p->i_pts );
1017 }
1018
1019 static mtime_t DecoderTeletextFixTs( mtime_t i_ts )
1020 {
1021     mtime_t current_date = mdate();
1022
1023     /* FIXME I don't really like that, es_out SHOULD do it using the video pts */
1024     if( i_ts <= VLC_TS_INVALID || i_ts > current_date + 10000000 || i_ts < current_date )
1025     {
1026         /* ETSI EN 300 472 Annex A : do not take into account the PTS
1027          * for teletext streams. */
1028         return current_date + 400000;
1029     }
1030     return i_ts;
1031 }
1032
1033 static void DecoderFixTs( decoder_t *p_dec, mtime_t *pi_ts0, mtime_t *pi_ts1,
1034                           mtime_t *pi_duration, int *pi_rate, mtime_t i_ts_bound, bool b_telx )
1035 {
1036     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1037     input_clock_t   *p_clock = p_owner->p_clock;
1038
1039     vlc_assert_locked( &p_owner->lock );
1040
1041     const mtime_t i_es_delay = p_owner->i_ts_delay;
1042
1043     if( p_clock )
1044     {
1045         const bool b_ephemere = pi_ts1 && *pi_ts0 == *pi_ts1;
1046         int i_rate;
1047
1048         if( *pi_ts0 > VLC_TS_INVALID )
1049         {
1050             *pi_ts0 += i_es_delay;
1051             if( pi_ts1 && *pi_ts1 > VLC_TS_INVALID )
1052                 *pi_ts1 += i_es_delay;
1053             if( input_clock_ConvertTS( p_clock, &i_rate, pi_ts0, pi_ts1, i_ts_bound ) )
1054                 *pi_ts0 = VLC_TS_INVALID;
1055         }
1056         else
1057         {
1058             i_rate = input_clock_GetRate( p_clock );
1059         }
1060
1061         /* Do not create ephemere data because of rounding errors */
1062         if( !b_ephemere && pi_ts1 && *pi_ts0 == *pi_ts1 )
1063             *pi_ts1 += 1;
1064
1065         if( pi_duration )
1066             *pi_duration = ( *pi_duration * i_rate +
1067                                     INPUT_RATE_DEFAULT-1 ) / INPUT_RATE_DEFAULT;
1068
1069         if( pi_rate )
1070             *pi_rate = i_rate;
1071
1072         if( b_telx )
1073         {
1074             *pi_ts0 = DecoderTeletextFixTs( *pi_ts0 );
1075             if( pi_ts1 && *pi_ts1 <= VLC_TS_INVALID )
1076                 *pi_ts1 = *pi_ts0;
1077         }
1078     }
1079 }
1080
1081 /**
1082  * If *pb_reject, it does nothing, otherwise it waits for the given
1083  * deadline or a flush request (in which case it set *pi_reject to true.
1084  */
1085 static void DecoderWaitDate( decoder_t *p_dec,
1086                              bool *pb_reject, mtime_t i_deadline )
1087 {
1088     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1089
1090     if( *pb_reject || i_deadline < 0 )
1091         return;
1092
1093     for( ;; )
1094     {
1095         vlc_mutex_lock( &p_owner->lock );
1096         if( p_owner->b_flushing || p_dec->b_die )
1097         {
1098             *pb_reject = true;
1099             vlc_mutex_unlock( &p_owner->lock );
1100             break;
1101         }
1102         int i_ret = vlc_cond_timedwait( &p_owner->wait_request, &p_owner->lock,
1103                                         i_deadline );
1104         vlc_mutex_unlock( &p_owner->lock );
1105         if( i_ret )
1106             break;
1107     }
1108 }
1109
1110 static void DecoderPlayAudio( decoder_t *p_dec, aout_buffer_t *p_audio,
1111                               int *pi_played_sum, int *pi_lost_sum )
1112 {
1113     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1114     aout_instance_t *p_aout = p_owner->p_aout;
1115     aout_input_t    *p_aout_input = p_owner->p_aout_input;
1116
1117     /* */
1118     if( p_audio->start_date <= VLC_TS_INVALID ) // FIXME --VLC_TS_INVALID verify audio_output/*
1119     {
1120         msg_Warn( p_dec, "non-dated audio buffer received" );
1121         *pi_lost_sum += 1;
1122         aout_BufferFree( p_audio );
1123         return;
1124     }
1125
1126     /* */
1127     vlc_mutex_lock( &p_owner->lock );
1128
1129     if( p_owner->b_buffering || p_owner->buffer.p_audio )
1130     {
1131         p_audio->p_next = NULL;
1132
1133         *p_owner->buffer.pp_audio_next = p_audio;
1134         p_owner->buffer.pp_audio_next = &p_audio->p_next;
1135
1136         p_owner->buffer.i_count++;
1137         if( p_owner->buffer.i_count > DECODER_MAX_BUFFERING_COUNT ||
1138             p_audio->start_date - p_owner->buffer.p_audio->start_date > DECODER_MAX_BUFFERING_AUDIO_DURATION )
1139         {
1140             p_owner->buffer.b_full = true;
1141             vlc_cond_signal( &p_owner->wait_acknowledge );
1142         }
1143     }
1144
1145     for( ;; )
1146     {
1147         bool b_has_more = false;
1148         bool b_reject;
1149         DecoderWaitUnblock( p_dec, &b_reject );
1150
1151         if( p_owner->b_buffering )
1152         {
1153             vlc_mutex_unlock( &p_owner->lock );
1154             return;
1155         }
1156
1157         /* */
1158         if( p_owner->buffer.p_audio )
1159         {
1160             p_audio = p_owner->buffer.p_audio;
1161
1162             p_owner->buffer.p_audio = p_audio->p_next;
1163             p_owner->buffer.i_count--;
1164
1165             b_has_more = p_owner->buffer.p_audio != NULL;
1166             if( !b_has_more )
1167                 p_owner->buffer.pp_audio_next = &p_owner->buffer.p_audio;
1168         }
1169
1170         /* */
1171         const bool b_dated = p_audio->start_date > VLC_TS_INVALID;
1172         int i_rate = INPUT_RATE_DEFAULT;
1173
1174         DecoderFixTs( p_dec, &p_audio->start_date, &p_audio->end_date, NULL,
1175                       &i_rate, AOUT_MAX_ADVANCE_TIME, false );
1176
1177         vlc_mutex_unlock( &p_owner->lock );
1178
1179         if( !p_aout || !p_aout_input ||
1180             p_audio->start_date <= VLC_TS_INVALID ||
1181             i_rate < INPUT_RATE_DEFAULT/AOUT_MAX_INPUT_RATE ||
1182             i_rate > INPUT_RATE_DEFAULT*AOUT_MAX_INPUT_RATE )
1183             b_reject = true;
1184
1185         DecoderWaitDate( p_dec, &b_reject,
1186                          p_audio->start_date - AOUT_MAX_PREPARE_TIME );
1187
1188         if( !b_reject )
1189         {
1190             if( !aout_DecPlay( p_aout, p_aout_input, p_audio, i_rate ) )
1191                 *pi_played_sum += 1;
1192             *pi_lost_sum += aout_DecGetResetLost( p_aout, p_aout_input );
1193         }
1194         else
1195         {
1196             if( b_dated )
1197                 msg_Warn( p_aout, "received buffer in the future" );
1198             else
1199                 msg_Warn( p_dec, "non-dated audio buffer received" );
1200
1201             *pi_lost_sum += 1;
1202             aout_BufferFree( p_audio );
1203         }
1204
1205         if( !b_has_more )
1206             break;
1207
1208         vlc_mutex_lock( &p_owner->lock );
1209         if( !p_owner->buffer.p_audio )
1210         {
1211             vlc_mutex_unlock( &p_owner->lock );
1212             break;
1213         }
1214     }
1215 }
1216
1217 static void DecoderDecodeAudio( decoder_t *p_dec, block_t *p_block )
1218 {
1219     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1220     input_thread_t  *p_input = p_owner->p_input;
1221     aout_buffer_t   *p_aout_buf;
1222     int i_decoded = 0;
1223     int i_lost = 0;
1224     int i_played = 0;
1225
1226     while( (p_aout_buf = p_dec->pf_decode_audio( p_dec, &p_block )) )
1227     {
1228         aout_instance_t *p_aout = p_owner->p_aout;
1229         aout_input_t    *p_aout_input = p_owner->p_aout_input;
1230
1231         if( p_dec->b_die )
1232         {
1233             /* It prevent freezing VLC in case of broken decoder */
1234             aout_DecDeleteBuffer( p_aout, p_aout_input, p_aout_buf );
1235             if( p_block )
1236                 block_Release( p_block );
1237             break;
1238         }
1239         i_decoded++;
1240
1241         if( p_owner->i_preroll_end > VLC_TS_INVALID &&
1242             p_aout_buf->start_date < p_owner->i_preroll_end )
1243         {
1244             aout_DecDeleteBuffer( p_aout, p_aout_input, p_aout_buf );
1245             continue;
1246         }
1247
1248         if( p_owner->i_preroll_end > VLC_TS_INVALID )
1249         {
1250             msg_Dbg( p_dec, "End of audio preroll" );
1251             if( p_owner->p_aout && p_owner->p_aout_input )
1252                 aout_DecFlush( p_owner->p_aout, p_owner->p_aout_input );
1253             /* */
1254             p_owner->i_preroll_end = VLC_TS_INVALID;
1255         }
1256
1257         DecoderPlayAudio( p_dec, p_aout_buf, &i_played, &i_lost );
1258     }
1259
1260     /* Update ugly stat */
1261     if( i_decoded > 0 || i_lost > 0 || i_played > 0 )
1262     {
1263         vlc_mutex_lock( &p_input->p->counters.counters_lock);
1264
1265         stats_UpdateInteger( p_dec, p_input->p->counters.p_lost_abuffers,
1266                              i_lost, NULL );
1267         stats_UpdateInteger( p_dec, p_input->p->counters.p_played_abuffers,
1268                              i_played, NULL );
1269         stats_UpdateInteger( p_dec, p_input->p->counters.p_decoded_audio,
1270                              i_decoded, NULL );
1271
1272         vlc_mutex_unlock( &p_input->p->counters.counters_lock);
1273     }
1274 }
1275 static void DecoderGetCc( decoder_t *p_dec, decoder_t *p_dec_cc )
1276 {
1277     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1278     block_t *p_cc;
1279     bool pb_present[4];
1280     bool b_processed = false;
1281     int i;
1282     int i_cc_decoder;
1283
1284     assert( p_dec_cc->pf_get_cc != NULL );
1285
1286     /* Do not try retreiving CC if not wanted (sout) or cannot be retreived */
1287     if( !p_owner->cc.b_supported )
1288         return;
1289
1290     p_cc = p_dec_cc->pf_get_cc( p_dec_cc, pb_present );
1291     if( !p_cc )
1292         return;
1293
1294     vlc_mutex_lock( &p_owner->lock );
1295     for( i = 0, i_cc_decoder = 0; i < 4; i++ )
1296     {
1297         p_owner->cc.pb_present[i] |= pb_present[i];
1298         if( p_owner->cc.pp_decoder[i] )
1299             i_cc_decoder++;
1300     }
1301
1302     for( i = 0; i < 4; i++ )
1303     {
1304         if( !p_owner->cc.pp_decoder[i] )
1305             continue;
1306
1307         if( i_cc_decoder > 1 )
1308             DecoderProcess( p_owner->cc.pp_decoder[i], block_Duplicate( p_cc ) );
1309         else
1310             DecoderProcess( p_owner->cc.pp_decoder[i], p_cc );
1311         i_cc_decoder--;
1312         b_processed = true;
1313     }
1314     vlc_mutex_unlock( &p_owner->lock );
1315
1316     if( !b_processed )
1317         block_Release( p_cc );
1318 }
1319
1320 static void DecoderPlayVideo( decoder_t *p_dec, picture_t *p_picture,
1321                               int *pi_played_sum, int *pi_lost_sum )
1322 {
1323     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1324     vout_thread_t  *p_vout = p_owner->p_vout;
1325     bool b_first_buffered;
1326
1327     if( p_picture->date <= VLC_TS_INVALID )
1328     {
1329         msg_Warn( p_vout, "non-dated video buffer received" );
1330         *pi_lost_sum += 1;
1331         vout_DropPicture( p_vout, p_picture );
1332         return;
1333     }
1334
1335     /* */
1336     vlc_mutex_lock( &p_owner->lock );
1337
1338     if( ( p_owner->b_buffering && !p_owner->buffer.b_first ) || p_owner->buffer.p_picture )
1339     {
1340         p_picture->p_next = NULL;
1341
1342         *p_owner->buffer.pp_picture_next = p_picture;
1343         p_owner->buffer.pp_picture_next = &p_picture->p_next;
1344
1345         p_owner->buffer.i_count++;
1346         if( p_owner->buffer.i_count > DECODER_MAX_BUFFERING_COUNT ||
1347             p_picture->date - p_owner->buffer.p_picture->date > DECODER_MAX_BUFFERING_VIDEO_DURATION )
1348         {
1349             p_owner->buffer.b_full = true;
1350             vlc_cond_signal( &p_owner->wait_acknowledge );
1351         }
1352     }
1353     b_first_buffered = p_owner->buffer.p_picture != NULL;
1354
1355     for( ;; b_first_buffered = false )
1356     {
1357         bool b_has_more = false;
1358
1359         bool b_reject;
1360
1361         DecoderWaitUnblock( p_dec, &b_reject );
1362
1363         if( p_owner->b_buffering && !p_owner->buffer.b_first )
1364         {
1365             vlc_mutex_unlock( &p_owner->lock );
1366             return;
1367         }
1368         bool b_buffering_first = p_owner->b_buffering;
1369
1370         /* */
1371         if( p_owner->buffer.p_picture )
1372         {
1373             p_picture = p_owner->buffer.p_picture;
1374
1375             p_owner->buffer.p_picture = p_picture->p_next;
1376             p_owner->buffer.i_count--;
1377
1378             b_has_more = p_owner->buffer.p_picture != NULL;
1379             if( !b_has_more )
1380                 p_owner->buffer.pp_picture_next = &p_owner->buffer.p_picture;
1381         }
1382
1383         /* */
1384         if( b_buffering_first )
1385         {
1386             assert( p_owner->buffer.b_first );
1387             assert( !p_owner->buffer.i_count );
1388             msg_Dbg( p_dec, "Received first picture" );
1389             p_owner->buffer.b_first = false;
1390             p_picture->b_force = true;
1391         }
1392
1393         const bool b_dated = p_picture->date > VLC_TS_INVALID;
1394         int i_rate = INPUT_RATE_DEFAULT;
1395         DecoderFixTs( p_dec, &p_picture->date, NULL, NULL,
1396                       &i_rate, DECODER_BOGUS_VIDEO_DELAY, false );
1397
1398         vlc_mutex_unlock( &p_owner->lock );
1399
1400         /* */
1401         if( !p_picture->b_force && p_picture->date <= VLC_TS_INVALID ) // FIXME --VLC_TS_INVALID verify video_output/*
1402             b_reject = true;
1403
1404         if( !b_reject )
1405         {
1406             if( i_rate != p_owner->i_last_rate || b_first_buffered )
1407             {
1408                 /* Be sure to not display old picture after our own */
1409                 vout_Flush( p_vout, p_picture->date );
1410                 p_owner->i_last_rate = i_rate;
1411             }
1412             vout_DisplayPicture( p_vout, p_picture );
1413         }
1414         else
1415         {
1416             if( b_dated )
1417                 msg_Warn( p_vout, "early picture skipped" );
1418             else
1419                 msg_Warn( p_vout, "non-dated video buffer received" );
1420
1421             *pi_lost_sum += 1;
1422             vout_DropPicture( p_vout, p_picture );
1423         }
1424         int i_tmp_display;
1425         int i_tmp_lost;
1426         vout_GetResetStatistic( p_vout, &i_tmp_display, &i_tmp_lost );
1427
1428         *pi_played_sum += i_tmp_display;
1429         *pi_lost_sum += i_tmp_lost;
1430
1431         if( !b_has_more || b_buffering_first )
1432             break;
1433
1434         vlc_mutex_lock( &p_owner->lock );
1435         if( !p_owner->buffer.p_picture )
1436         {
1437             vlc_mutex_unlock( &p_owner->lock );
1438             break;
1439         }
1440     }
1441 }
1442
1443 static void DecoderDecodeVideo( decoder_t *p_dec, block_t *p_block )
1444 {
1445     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1446     input_thread_t *p_input = p_owner->p_input;
1447     picture_t      *p_pic;
1448     int i_lost = 0;
1449     int i_decoded = 0;
1450     int i_displayed = 0;
1451
1452     while( (p_pic = p_dec->pf_decode_video( p_dec, &p_block )) )
1453     {
1454         vout_thread_t  *p_vout = p_owner->p_vout;
1455         if( p_dec->b_die )
1456         {
1457             /* It prevent freezing VLC in case of broken decoder */
1458             vout_DropPicture( p_vout, p_pic );
1459             if( p_block )
1460                 block_Release( p_block );
1461             break;
1462         }
1463
1464         i_decoded++;
1465
1466         if( p_owner->i_preroll_end > VLC_TS_INVALID && p_pic->date < p_owner->i_preroll_end )
1467         {
1468             vout_DropPicture( p_vout, p_pic );
1469             continue;
1470         }
1471
1472         if( p_owner->i_preroll_end > VLC_TS_INVALID )
1473         {
1474             msg_Dbg( p_dec, "End of video preroll" );
1475             if( p_vout )
1476                 vout_Flush( p_vout, VLC_TS_INVALID+1 );
1477             /* */
1478             p_owner->i_preroll_end = VLC_TS_INVALID;
1479         }
1480
1481         if( p_dec->pf_get_cc &&
1482             ( !p_owner->p_packetizer || !p_owner->p_packetizer->pf_get_cc ) )
1483             DecoderGetCc( p_dec, p_dec );
1484
1485         DecoderPlayVideo( p_dec, p_pic, &i_displayed, &i_lost );
1486     }
1487     if( i_decoded > 0 || i_lost > 0 || i_displayed > 0 )
1488     {
1489         vlc_mutex_lock( &p_input->p->counters.counters_lock );
1490
1491         stats_UpdateInteger( p_dec, p_input->p->counters.p_decoded_video,
1492                              i_decoded, NULL );
1493         stats_UpdateInteger( p_dec, p_input->p->counters.p_lost_pictures,
1494                              i_lost , NULL);
1495
1496         stats_UpdateInteger( p_dec, p_input->p->counters.p_displayed_pictures,
1497                              i_displayed, NULL);
1498
1499         vlc_mutex_unlock( &p_input->p->counters.counters_lock );
1500     }
1501 }
1502
1503 static void DecoderPlaySpu( decoder_t *p_dec, subpicture_t *p_subpic,
1504                             bool b_telx )
1505 {
1506     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1507     vout_thread_t *p_vout = p_owner->p_spu_vout;
1508
1509     /* */
1510     if( p_subpic->i_start <= VLC_TS_INVALID )
1511     {
1512         msg_Warn( p_dec, "non-dated spu buffer received" );
1513         subpicture_Delete( p_subpic );
1514         return;
1515     }
1516
1517     /* */
1518     vlc_mutex_lock( &p_owner->lock );
1519
1520     if( p_owner->b_buffering || p_owner->buffer.p_subpic )
1521     {
1522         p_subpic->p_next = NULL;
1523
1524         *p_owner->buffer.pp_subpic_next = p_subpic;
1525         p_owner->buffer.pp_subpic_next = &p_subpic->p_next;
1526
1527         p_owner->buffer.i_count++;
1528         /* XXX it is important to be full after the first one */
1529         if( p_owner->buffer.i_count > 0 )
1530         {
1531             p_owner->buffer.b_full = true;
1532             vlc_cond_signal( &p_owner->wait_acknowledge );
1533         }
1534     }
1535
1536     for( ;; )
1537     {
1538         bool b_has_more = false;
1539         bool b_reject;
1540         DecoderWaitUnblock( p_dec, &b_reject );
1541
1542         if( p_owner->b_buffering )
1543         {
1544             vlc_mutex_unlock( &p_owner->lock );
1545             return;
1546         }
1547
1548         /* */
1549         if( p_owner->buffer.p_subpic )
1550         {
1551             p_subpic = p_owner->buffer.p_subpic;
1552
1553             p_owner->buffer.p_subpic = p_subpic->p_next;
1554             p_owner->buffer.i_count--;
1555
1556             b_has_more = p_owner->buffer.p_subpic != NULL;
1557             if( !b_has_more )
1558                 p_owner->buffer.pp_subpic_next = &p_owner->buffer.p_subpic;
1559         }
1560
1561         /* */
1562         DecoderFixTs( p_dec, &p_subpic->i_start, &p_subpic->i_stop, NULL,
1563                       NULL, INT64_MAX, b_telx );
1564
1565         vlc_mutex_unlock( &p_owner->lock );
1566
1567         if( !b_reject )
1568             spu_DisplaySubpicture( vout_GetSpu( p_vout ), p_subpic );
1569         else
1570             subpicture_Delete( p_subpic );
1571
1572         if( !b_has_more )
1573             break;
1574         vlc_mutex_lock( &p_owner->lock );
1575         if( !p_owner->buffer.p_subpic )
1576         {
1577             vlc_mutex_unlock( &p_owner->lock );
1578             break;
1579         }
1580     }
1581 }
1582
1583 static void DecoderPlaySout( decoder_t *p_dec, block_t *p_sout_block,
1584                              bool b_telx )
1585 {
1586     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1587
1588     assert( p_owner->p_clock );
1589     assert( !p_sout_block->p_next );
1590
1591     vlc_mutex_lock( &p_owner->lock );
1592
1593     if( p_owner->b_buffering || p_owner->buffer.p_block )
1594     {
1595         block_ChainLastAppend( &p_owner->buffer.pp_block_next, p_sout_block );
1596
1597         p_owner->buffer.i_count++;
1598         /* XXX it is important to be full after the first one */
1599         if( p_owner->buffer.i_count > 0 )
1600         {
1601             p_owner->buffer.b_full = true;
1602             vlc_cond_signal( &p_owner->wait_acknowledge );
1603         }
1604     }
1605
1606     for( ;; )
1607     {
1608         bool b_has_more = false;
1609         bool b_reject;
1610         DecoderWaitUnblock( p_dec, &b_reject );
1611
1612         if( p_owner->b_buffering )
1613         {
1614             vlc_mutex_unlock( &p_owner->lock );
1615             return;
1616         }
1617
1618         /* */
1619         if( p_owner->buffer.p_block )
1620         {
1621             p_sout_block = p_owner->buffer.p_block;
1622
1623             p_owner->buffer.p_block = p_sout_block->p_next;
1624             p_owner->buffer.i_count--;
1625
1626             b_has_more = p_owner->buffer.p_block != NULL;
1627             if( !b_has_more )
1628                 p_owner->buffer.pp_block_next = &p_owner->buffer.p_block;
1629         }
1630         p_sout_block->p_next = NULL;
1631
1632         DecoderFixTs( p_dec, &p_sout_block->i_dts, &p_sout_block->i_pts,
1633                       &p_sout_block->i_length,
1634                       &p_sout_block->i_rate, INT64_MAX, b_telx );
1635
1636         vlc_mutex_unlock( &p_owner->lock );
1637
1638         if( !b_reject )
1639             sout_InputSendBuffer( p_owner->p_sout_input, p_sout_block ); // FIXME --VLC_TS_INVALID inspect stream_output/*
1640         else
1641             block_Release( p_sout_block );
1642
1643         if( !b_has_more )
1644             break;
1645         vlc_mutex_lock( &p_owner->lock );
1646         if( !p_owner->buffer.p_block )
1647         {
1648             vlc_mutex_unlock( &p_owner->lock );
1649             break;
1650         }
1651     }
1652 }
1653
1654 /* */
1655 static void DecoderFlushBuffering( decoder_t *p_dec )
1656 {
1657     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1658
1659     vlc_assert_locked( &p_owner->lock );
1660
1661     while( p_owner->buffer.p_picture )
1662     {
1663         picture_t *p_picture = p_owner->buffer.p_picture;
1664
1665         p_owner->buffer.p_picture = p_picture->p_next;
1666         p_owner->buffer.i_count--;
1667
1668         if( p_owner->p_vout )
1669             vout_DropPicture( p_owner->p_vout, p_picture );
1670
1671         if( !p_owner->buffer.p_picture )
1672             p_owner->buffer.pp_picture_next = &p_owner->buffer.p_picture;
1673     }
1674     while( p_owner->buffer.p_audio )
1675     {
1676         aout_buffer_t *p_audio = p_owner->buffer.p_audio;
1677
1678         p_owner->buffer.p_audio = p_audio->p_next;
1679         p_owner->buffer.i_count--;
1680
1681         aout_BufferFree( p_audio );
1682
1683         if( !p_owner->buffer.p_audio )
1684             p_owner->buffer.pp_audio_next = &p_owner->buffer.p_audio;
1685     }
1686     while( p_owner->buffer.p_subpic )
1687     {
1688         subpicture_t *p_subpic = p_owner->buffer.p_subpic;
1689
1690         p_owner->buffer.p_subpic = p_subpic->p_next;
1691         p_owner->buffer.i_count--;
1692
1693         subpicture_Delete( p_subpic );
1694
1695         if( !p_owner->buffer.p_subpic )
1696             p_owner->buffer.pp_subpic_next = &p_owner->buffer.p_subpic;
1697     }
1698     if( p_owner->buffer.p_block )
1699     {
1700         block_ChainRelease( p_owner->buffer.p_block );
1701
1702         p_owner->buffer.i_count = 0;
1703         p_owner->buffer.p_block = NULL;
1704         p_owner->buffer.pp_block_next = &p_owner->buffer.p_block;
1705     }
1706 }
1707
1708 /* This function process a block for sout
1709  */
1710 static void DecoderProcessSout( decoder_t *p_dec, block_t *p_block )
1711 {
1712     decoder_owner_sys_t *p_owner = (decoder_owner_sys_t *)p_dec->p_owner;
1713     const bool b_telx = p_dec->fmt_in.i_codec == VLC_CODEC_TELETEXT;
1714     block_t *p_sout_block;
1715
1716     while( ( p_sout_block =
1717                  p_dec->pf_packetize( p_dec, p_block ? &p_block : NULL ) ) )
1718     {
1719         if( !p_owner->p_sout_input )
1720         {
1721             es_format_Copy( &p_owner->sout, &p_dec->fmt_out );
1722
1723             p_owner->sout.i_group = p_dec->fmt_in.i_group;
1724             p_owner->sout.i_id = p_dec->fmt_in.i_id;
1725             if( p_dec->fmt_in.psz_language )
1726             {
1727                 if( p_owner->sout.psz_language )
1728                     free( p_owner->sout.psz_language );
1729                 p_owner->sout.psz_language =
1730                     strdup( p_dec->fmt_in.psz_language );
1731             }
1732
1733             p_owner->p_sout_input =
1734                 sout_InputNew( p_owner->p_sout,
1735                                &p_owner->sout );
1736
1737             if( p_owner->p_sout_input == NULL )
1738             {
1739                 msg_Err( p_dec, "cannot create packetizer output (%4.4s)",
1740                          (char *)&p_owner->sout.i_codec );
1741                 p_dec->b_error = true;
1742
1743                 while( p_sout_block )
1744                 {
1745                     block_t *p_next = p_sout_block->p_next;
1746                     block_Release( p_sout_block );
1747                     p_sout_block = p_next;
1748                 }
1749                 break;
1750             }
1751         }
1752
1753         while( p_sout_block )
1754         {
1755             block_t *p_next = p_sout_block->p_next;
1756
1757             p_sout_block->p_next = NULL;
1758
1759             DecoderPlaySout( p_dec, p_sout_block, b_telx );
1760
1761             p_sout_block = p_next;
1762         }
1763     }
1764 }
1765
1766 /* This function process a video block
1767  */
1768 static void DecoderProcessVideo( decoder_t *p_dec, block_t *p_block, bool b_flush )
1769 {
1770     decoder_owner_sys_t *p_owner = (decoder_owner_sys_t *)p_dec->p_owner;
1771
1772     if( p_owner->p_packetizer )
1773     {
1774         block_t *p_packetized_block;
1775         decoder_t *p_packetizer = p_owner->p_packetizer;
1776
1777         while( (p_packetized_block =
1778                 p_packetizer->pf_packetize( p_packetizer, p_block ? &p_block : NULL )) )
1779         {
1780             if( p_packetizer->fmt_out.i_extra && !p_dec->fmt_in.i_extra )
1781             {
1782                 es_format_Clean( &p_dec->fmt_in );
1783                 es_format_Copy( &p_dec->fmt_in, &p_packetizer->fmt_out );
1784             }
1785             if( p_packetizer->pf_get_cc )
1786                 DecoderGetCc( p_dec, p_packetizer );
1787
1788             while( p_packetized_block )
1789             {
1790                 block_t *p_next = p_packetized_block->p_next;
1791                 p_packetized_block->p_next = NULL;
1792
1793                 DecoderDecodeVideo( p_dec, p_packetized_block );
1794
1795                 p_packetized_block = p_next;
1796             }
1797         }
1798         /* The packetizer does not output a block that tell the decoder to flush
1799          * do it ourself */
1800         if( b_flush )
1801         {
1802             block_t *p_null = DecoderBlockFlushNew();
1803             if( p_null )
1804                 DecoderDecodeVideo( p_dec, p_null );
1805         }
1806     }
1807     else if( p_block )
1808     {
1809         DecoderDecodeVideo( p_dec, p_block );
1810     }
1811
1812     if( b_flush && p_owner->p_vout )
1813         vout_Flush( p_owner->p_vout, VLC_TS_INVALID+1 );
1814 }
1815
1816 /* This function process a audio block
1817  */
1818 static void DecoderProcessAudio( decoder_t *p_dec, block_t *p_block, bool b_flush )
1819 {
1820     decoder_owner_sys_t *p_owner = (decoder_owner_sys_t *)p_dec->p_owner;
1821
1822     if( p_owner->p_packetizer )
1823     {
1824         block_t *p_packetized_block;
1825         decoder_t *p_packetizer = p_owner->p_packetizer;
1826
1827         while( (p_packetized_block =
1828                 p_packetizer->pf_packetize( p_packetizer, p_block ? &p_block : NULL )) )
1829         {
1830             if( p_packetizer->fmt_out.i_extra && !p_dec->fmt_in.i_extra )
1831             {
1832                 es_format_Clean( &p_dec->fmt_in );
1833                 es_format_Copy( &p_dec->fmt_in, &p_packetizer->fmt_out );
1834             }
1835
1836             while( p_packetized_block )
1837             {
1838                 block_t *p_next = p_packetized_block->p_next;
1839                 p_packetized_block->p_next = NULL;
1840
1841                 DecoderDecodeAudio( p_dec, p_packetized_block );
1842
1843                 p_packetized_block = p_next;
1844             }
1845         }
1846         /* The packetizer does not output a block that tell the decoder to flush
1847          * do it ourself */
1848         if( b_flush )
1849         {
1850             block_t *p_null = DecoderBlockFlushNew();
1851             if( p_null )
1852                 DecoderDecodeAudio( p_dec, p_null );
1853         }
1854     }
1855     else if( p_block )
1856     {
1857         DecoderDecodeAudio( p_dec, p_block );
1858     }
1859
1860     if( b_flush && p_owner->p_aout && p_owner->p_aout_input )
1861         aout_DecFlush( p_owner->p_aout, p_owner->p_aout_input );
1862 }
1863
1864 /* This function process a subtitle block
1865  */
1866 static void DecoderProcessSpu( decoder_t *p_dec, block_t *p_block, bool b_flush )
1867 {
1868     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1869     const bool b_telx = p_dec->fmt_in.i_codec == VLC_CODEC_TELETEXT;
1870
1871     input_thread_t *p_input = p_owner->p_input;
1872     vout_thread_t *p_vout;
1873     subpicture_t *p_spu;
1874
1875     while( (p_spu = p_dec->pf_decode_sub( p_dec, p_block ? &p_block : NULL ) ) )
1876     {
1877         vlc_mutex_lock( &p_input->p->counters.counters_lock );
1878         stats_UpdateInteger( p_dec, p_input->p->counters.p_decoded_sub, 1, NULL );
1879         vlc_mutex_unlock( &p_input->p->counters.counters_lock );
1880
1881         p_vout = input_resource_HoldVout( p_input->p->p_resource );
1882         if( p_vout && p_owner->p_spu_vout == p_vout )
1883         {
1884             /* Preroll does not work very well with subtitle */
1885             if( p_spu->i_start > VLC_TS_INVALID &&
1886                 p_spu->i_start < p_owner->i_preroll_end &&
1887                 ( p_spu->i_stop <= VLC_TS_INVALID || p_spu->i_stop < p_owner->i_preroll_end ) )
1888             {
1889                 subpicture_Delete( p_spu );
1890             }
1891             else
1892             {
1893                 DecoderPlaySpu( p_dec, p_spu, b_telx );
1894             }
1895         }
1896         else
1897         {
1898             subpicture_Delete( p_spu );
1899         }
1900         if( p_vout )
1901             vlc_object_release( p_vout );
1902     }
1903
1904     if( b_flush && p_owner->p_spu_vout )
1905     {
1906         p_vout = input_resource_HoldVout( p_input->p->p_resource );
1907
1908         if( p_vout && p_owner->p_spu_vout == p_vout )
1909             spu_Control( vout_GetSpu( p_vout ), SPU_CHANNEL_CLEAR,
1910                          p_owner->i_spu_channel );
1911
1912         if( p_vout )
1913             vlc_object_release( p_vout );
1914     }
1915 }
1916
1917 /* */
1918 static void DecoderProcessOnFlush( decoder_t *p_dec )
1919 {
1920     decoder_owner_sys_t *p_owner = p_dec->p_owner;
1921
1922     vlc_mutex_lock( &p_owner->lock );
1923     DecoderFlushBuffering( p_dec );
1924
1925     if( p_owner->b_flushing )
1926     {
1927         p_owner->b_flushing = false;
1928         vlc_cond_signal( &p_owner->wait_acknowledge );
1929     }
1930     vlc_mutex_unlock( &p_owner->lock );
1931 }
1932
1933 /**
1934  * Decode a block
1935  *
1936  * \param p_dec the decoder object
1937  * \param p_block the block to decode
1938  * \return VLC_SUCCESS or an error code
1939  */
1940 static void DecoderProcess( decoder_t *p_dec, block_t *p_block )
1941 {
1942     decoder_owner_sys_t *p_owner = (decoder_owner_sys_t *)p_dec->p_owner;
1943     const bool b_flush_request = p_block && (p_block->i_flags & BLOCK_FLAG_CORE_FLUSH);
1944
1945     if( p_block && p_block->i_buffer <= 0 )
1946     {
1947         assert( !b_flush_request );
1948         block_Release( p_block );
1949         return;
1950     }
1951
1952 #ifdef ENABLE_SOUT
1953     if( p_owner->b_packetizer )
1954     {
1955         if( p_block )
1956             p_block->i_flags &= ~BLOCK_FLAG_CORE_PRIVATE_MASK;
1957
1958         DecoderProcessSout( p_dec, p_block );
1959     }
1960     else
1961 #endif
1962     {
1963         bool b_flush = false;
1964
1965         if( p_block )
1966         {
1967             const bool b_flushing = p_owner->i_preroll_end == INT64_MAX;
1968             DecoderUpdatePreroll( &p_owner->i_preroll_end, p_block );
1969
1970             b_flush = !b_flushing && b_flush_request;
1971
1972             p_block->i_flags &= ~BLOCK_FLAG_CORE_PRIVATE_MASK;
1973         }
1974
1975         if( p_dec->fmt_out.i_cat == AUDIO_ES )
1976         {
1977             DecoderProcessAudio( p_dec, p_block, b_flush );
1978         }
1979         else if( p_dec->fmt_out.i_cat == VIDEO_ES )
1980         {
1981             DecoderProcessVideo( p_dec, p_block, b_flush );
1982         }
1983         else if( p_dec->fmt_out.i_cat == SPU_ES )
1984         {
1985             DecoderProcessSpu( p_dec, p_block, b_flush );
1986         }
1987         else
1988         {
1989             msg_Err( p_dec, "unknown ES format" );
1990             p_dec->b_error = true;
1991         }
1992     }
1993
1994     /* */
1995     if( b_flush_request )
1996         DecoderProcessOnFlush( p_dec );
1997 }
1998
1999 static void DecoderError( decoder_t *p_dec, block_t *p_block )
2000 {
2001     const bool b_flush_request = p_block && (p_block->i_flags & BLOCK_FLAG_CORE_FLUSH);
2002
2003     /* */
2004     if( p_block )
2005         block_Release( p_block );
2006
2007     if( b_flush_request )
2008         DecoderProcessOnFlush( p_dec );
2009 }
2010
2011
2012 /**
2013  * Destroys a decoder object
2014  *
2015  * \param p_dec the decoder object
2016  * \return nothing
2017  */
2018 static void DeleteDecoder( decoder_t * p_dec )
2019 {
2020     decoder_owner_sys_t *p_owner = p_dec->p_owner;
2021
2022     msg_Dbg( p_dec, "killing decoder fourcc `%4.4s', %u PES in FIFO",
2023              (char*)&p_dec->fmt_in.i_codec,
2024              (unsigned)block_FifoCount( p_owner->p_fifo ) );
2025
2026     /* Free all packets still in the decoder fifo. */
2027     block_FifoEmpty( p_owner->p_fifo );
2028     block_FifoRelease( p_owner->p_fifo );
2029
2030     /* */
2031     vlc_mutex_lock( &p_owner->lock );
2032     DecoderFlushBuffering( p_dec );
2033     vlc_mutex_unlock( &p_owner->lock );
2034
2035     /* Cleanup */
2036     if( p_owner->p_aout_input )
2037         aout_DecDelete( p_owner->p_aout, p_owner->p_aout_input );
2038     if( p_owner->p_aout )
2039     {
2040         input_resource_RequestAout( p_owner->p_input->p->p_resource,
2041                                      p_owner->p_aout );
2042         input_SendEventAout( p_owner->p_input );
2043         p_owner->p_aout = NULL;
2044     }
2045     if( p_owner->p_vout )
2046     {
2047         /* Hack to make sure all the the pictures are freed by the decoder
2048          * and that the vout is not paused anymore */
2049         vout_FixLeaks( p_owner->p_vout, true );
2050         if( p_owner->b_paused )
2051             vout_ChangePause( p_owner->p_vout, false, mdate() );
2052
2053         /* */
2054         input_resource_RequestVout( p_owner->p_input->p->p_resource, p_owner->p_vout, NULL, true );
2055         input_SendEventVout( p_owner->p_input );
2056     }
2057
2058 #ifdef ENABLE_SOUT
2059     if( p_owner->p_sout_input )
2060     {
2061         sout_InputDelete( p_owner->p_sout_input );
2062         es_format_Clean( &p_owner->sout );
2063     }
2064 #endif
2065
2066     if( p_dec->fmt_out.i_cat == SPU_ES )
2067     {
2068         vout_thread_t *p_vout;
2069
2070         p_vout = input_resource_HoldVout( p_owner->p_input->p->p_resource );
2071         if( p_vout )
2072         {
2073             if( p_owner->p_spu_vout == p_vout )
2074                 spu_Control( vout_GetSpu( p_vout ), SPU_CHANNEL_CLEAR, p_owner->i_spu_channel );
2075             vlc_object_release( p_vout );
2076         }
2077     }
2078
2079     es_format_Clean( &p_dec->fmt_in );
2080     es_format_Clean( &p_dec->fmt_out );
2081     if( p_dec->p_description )
2082         vlc_meta_Delete( p_dec->p_description );
2083     es_format_Clean( &p_owner->fmt_description );
2084     if( p_owner->p_description )
2085         vlc_meta_Delete( p_owner->p_description );
2086
2087     if( p_owner->p_packetizer )
2088     {
2089         module_unneed( p_owner->p_packetizer,
2090                        p_owner->p_packetizer->p_module );
2091         es_format_Clean( &p_owner->p_packetizer->fmt_in );
2092         es_format_Clean( &p_owner->p_packetizer->fmt_out );
2093         if( p_owner->p_packetizer->p_description )
2094             vlc_meta_Delete( p_owner->p_packetizer->p_description );
2095         vlc_object_detach( p_owner->p_packetizer );
2096         vlc_object_release( p_owner->p_packetizer );
2097     }
2098
2099     vlc_cond_destroy( &p_owner->wait_acknowledge );
2100     vlc_cond_destroy( &p_owner->wait_request );
2101     vlc_mutex_destroy( &p_owner->lock );
2102
2103     vlc_object_detach( p_dec );
2104
2105     free( p_owner );
2106 }
2107
2108 /*****************************************************************************
2109  * Buffers allocation callbacks for the decoders
2110  *****************************************************************************/
2111 static void DecoderUpdateFormatLocked( decoder_t *p_dec )
2112 {
2113     decoder_owner_sys_t *p_owner = p_dec->p_owner;
2114
2115     vlc_assert_locked( &p_owner->lock );
2116
2117     p_owner->b_fmt_description = true;
2118
2119     /* Copy es_format */
2120     es_format_Clean( &p_owner->fmt_description );
2121     es_format_Copy( &p_owner->fmt_description, &p_dec->fmt_out );
2122
2123     /* Move p_description */
2124     if( p_owner->p_description && p_dec->p_description )
2125         vlc_meta_Delete( p_owner->p_description );
2126     p_owner->p_description = p_dec->p_description;
2127     p_dec->p_description = NULL;
2128 }
2129 static vout_thread_t *aout_request_vout( void *p_private,
2130                                          vout_thread_t *p_vout, video_format_t *p_fmt, bool b_recyle )
2131 {
2132     decoder_t *p_dec = p_private;
2133     input_thread_t *p_input = p_dec->p_owner->p_input;
2134
2135     p_vout = input_resource_RequestVout( p_input->p->p_resource, p_vout, p_fmt, b_recyle );
2136     input_SendEventVout( p_input );
2137
2138     return p_vout;
2139 }
2140
2141 static aout_buffer_t *aout_new_buffer( decoder_t *p_dec, int i_samples )
2142 {
2143     decoder_owner_sys_t *p_owner = p_dec->p_owner;
2144     aout_buffer_t *p_buffer;
2145
2146     if( p_owner->p_aout_input != NULL &&
2147         ( p_dec->fmt_out.audio.i_rate != p_owner->audio.i_rate ||
2148           p_dec->fmt_out.audio.i_original_channels !=
2149               p_owner->audio.i_original_channels ||
2150           p_dec->fmt_out.audio.i_bytes_per_frame !=
2151               p_owner->audio.i_bytes_per_frame ) )
2152     {
2153         aout_input_t *p_aout_input = p_owner->p_aout_input;
2154
2155         /* Parameters changed, restart the aout */
2156         vlc_mutex_lock( &p_owner->lock );
2157
2158         DecoderFlushBuffering( p_dec );
2159
2160         p_owner->p_aout_input = NULL;
2161         aout_DecDelete( p_owner->p_aout, p_aout_input );
2162
2163         vlc_mutex_unlock( &p_owner->lock );
2164     }
2165
2166     if( p_owner->p_aout_input == NULL )
2167     {
2168         const int i_force_dolby = config_GetInt( p_dec, "force-dolby-surround" );
2169         audio_sample_format_t format;
2170         aout_input_t *p_aout_input;
2171         aout_instance_t *p_aout;
2172         aout_request_vout_t request_vout;
2173
2174         p_dec->fmt_out.audio.i_format = p_dec->fmt_out.i_codec;
2175         p_owner->audio = p_dec->fmt_out.audio;
2176
2177         memcpy( &format, &p_owner->audio, sizeof( audio_sample_format_t ) );
2178         if( i_force_dolby &&
2179             (format.i_original_channels&AOUT_CHAN_PHYSMASK) ==
2180                 (AOUT_CHAN_LEFT|AOUT_CHAN_RIGHT) )
2181         {
2182             if( i_force_dolby == 1 )
2183             {
2184                 format.i_original_channels = format.i_original_channels |
2185                                              AOUT_CHAN_DOLBYSTEREO;
2186             }
2187             else /* i_force_dolby == 2 */
2188             {
2189                 format.i_original_channels = format.i_original_channels &
2190                                              ~AOUT_CHAN_DOLBYSTEREO;
2191             }
2192         }
2193
2194         request_vout.pf_request_vout = aout_request_vout;
2195         request_vout.p_private = p_dec;
2196
2197         p_aout = p_owner->p_aout;
2198         if( !p_aout )
2199             p_aout = input_resource_RequestAout( p_owner->p_input->p->p_resource, NULL );
2200         p_aout_input = aout_DecNew( p_dec, &p_aout,
2201                                     &format, &p_dec->fmt_out.audio_replay_gain, &request_vout );
2202
2203         vlc_mutex_lock( &p_owner->lock );
2204
2205         p_owner->p_aout = p_aout;
2206         p_owner->p_aout_input = p_aout_input;
2207         DecoderUpdateFormatLocked( p_dec );
2208
2209         vlc_mutex_unlock( &p_owner->lock );
2210
2211         input_SendEventAout( p_owner->p_input );
2212
2213         if( p_owner->p_aout_input == NULL )
2214         {
2215             msg_Err( p_dec, "failed to create audio output" );
2216             p_dec->b_error = true;
2217             return NULL;
2218         }
2219         p_dec->fmt_out.audio.i_bytes_per_frame =
2220             p_owner->audio.i_bytes_per_frame;
2221     }
2222
2223     p_buffer = aout_DecNewBuffer( p_owner->p_aout_input, i_samples );
2224
2225     return p_buffer;
2226 }
2227
2228 static void aout_del_buffer( decoder_t *p_dec, aout_buffer_t *p_buffer )
2229 {
2230     decoder_owner_sys_t *p_owner = p_dec->p_owner;
2231
2232     aout_DecDeleteBuffer( p_owner->p_aout,
2233                           p_owner->p_aout_input, p_buffer );
2234 }
2235
2236
2237 int vout_CountPictureAvailable( vout_thread_t *p_vout );
2238
2239 static picture_t *vout_new_buffer( decoder_t *p_dec )
2240 {
2241     decoder_owner_sys_t *p_owner = p_dec->p_owner;
2242
2243     if( p_owner->p_vout == NULL ||
2244         p_dec->fmt_out.video.i_width != p_owner->video.i_width ||
2245         p_dec->fmt_out.video.i_height != p_owner->video.i_height ||
2246         p_dec->fmt_out.video.i_chroma != p_owner->video.i_chroma ||
2247         p_dec->fmt_out.video.i_aspect != p_owner->video.i_aspect )
2248     {
2249         vout_thread_t *p_vout;
2250
2251         if( !p_dec->fmt_out.video.i_width ||
2252             !p_dec->fmt_out.video.i_height )
2253         {
2254             /* Can't create a new vout without display size */
2255             return NULL;
2256         }
2257
2258         if( !p_dec->fmt_out.video.i_visible_width ||
2259             !p_dec->fmt_out.video.i_visible_height )
2260         {
2261             if( p_dec->fmt_in.video.i_visible_width &&
2262                 p_dec->fmt_in.video.i_visible_height )
2263             {
2264                 p_dec->fmt_out.video.i_visible_width =
2265                     p_dec->fmt_in.video.i_visible_width;
2266                 p_dec->fmt_out.video.i_visible_height =
2267                     p_dec->fmt_in.video.i_visible_height;
2268             }
2269             else
2270             {
2271                 p_dec->fmt_out.video.i_visible_width =
2272                     p_dec->fmt_out.video.i_width;
2273                 p_dec->fmt_out.video.i_visible_height =
2274                     p_dec->fmt_out.video.i_height;
2275             }
2276         }
2277
2278         if( p_dec->fmt_out.video.i_visible_height == 1088 &&
2279             var_CreateGetBool( p_dec, "hdtv-fix" ) )
2280         {
2281             p_dec->fmt_out.video.i_visible_height = 1080;
2282             p_dec->fmt_out.video.i_sar_num *= 135;
2283             p_dec->fmt_out.video.i_sar_den *= 136;
2284             msg_Warn( p_dec, "Fixing broken HDTV stream (display_height=1088)");
2285         }
2286
2287         if( !p_dec->fmt_out.video.i_sar_num ||
2288             !p_dec->fmt_out.video.i_sar_den )
2289         {
2290             p_dec->fmt_out.video.i_sar_num = p_dec->fmt_out.video.i_aspect *
2291               p_dec->fmt_out.video.i_visible_height;
2292
2293             p_dec->fmt_out.video.i_sar_den = VOUT_ASPECT_FACTOR *
2294               p_dec->fmt_out.video.i_visible_width;
2295         }
2296
2297         vlc_ureduce( &p_dec->fmt_out.video.i_sar_num,
2298                      &p_dec->fmt_out.video.i_sar_den,
2299                      p_dec->fmt_out.video.i_sar_num,
2300                      p_dec->fmt_out.video.i_sar_den, 50000 );
2301
2302         p_dec->fmt_out.video.i_chroma = p_dec->fmt_out.i_codec;
2303         p_owner->video = p_dec->fmt_out.video;
2304
2305         vlc_mutex_lock( &p_owner->lock );
2306
2307         DecoderFlushBuffering( p_dec );
2308
2309         p_vout = p_owner->p_vout;
2310         p_owner->p_vout = NULL;
2311         vlc_mutex_unlock( &p_owner->lock );
2312
2313         p_vout = input_resource_RequestVout( p_owner->p_input->p->p_resource,
2314                                               p_vout, &p_dec->fmt_out.video, true );
2315
2316         vlc_mutex_lock( &p_owner->lock );
2317         p_owner->p_vout = p_vout;
2318
2319         DecoderUpdateFormatLocked( p_dec );
2320
2321         vlc_mutex_unlock( &p_owner->lock );
2322
2323         input_SendEventVout( p_owner->p_input );
2324         if( p_vout == NULL )
2325         {
2326             msg_Err( p_dec, "failed to create video output" );
2327             p_dec->b_error = true;
2328             return NULL;
2329         }
2330
2331         if( p_owner->video.i_rmask )
2332             p_owner->p_vout->render.i_rmask = p_owner->video.i_rmask;
2333         if( p_owner->video.i_gmask )
2334             p_owner->p_vout->render.i_gmask = p_owner->video.i_gmask;
2335         if( p_owner->video.i_bmask )
2336             p_owner->p_vout->render.i_bmask = p_owner->video.i_bmask;
2337     }
2338
2339     /* Get a new picture
2340      */
2341     for( ;; )
2342     {
2343         picture_t *p_picture;
2344
2345         if( p_dec->b_die || p_dec->b_error )
2346             return NULL;
2347
2348         /* The video filter chain required that there is always 1 free buffer
2349          * that it will use as temporary one. It will release the temporary
2350          * buffer once its work is done, so this check is safe even if we don't
2351          * lock around both count() and create().
2352          */
2353         if( vout_CountPictureAvailable( p_owner->p_vout ) >= 2 )
2354         {
2355             p_picture = vout_CreatePicture( p_owner->p_vout, 0, 0, 0 );
2356             if( p_picture )
2357                 return p_picture;
2358         }
2359
2360         if( DecoderIsFlushing( p_dec ) )
2361             return NULL;
2362
2363         /* */
2364         DecoderSignalBuffering( p_dec, true );
2365
2366         /* Check the decoder doesn't leak pictures */
2367         vout_FixLeaks( p_owner->p_vout, false );
2368
2369         /* FIXME add a vout_WaitPictureAvailable (timedwait) */
2370         msleep( VOUT_OUTMEM_SLEEP );
2371     }
2372 }
2373
2374 static void vout_del_buffer( decoder_t *p_dec, picture_t *p_pic )
2375 {
2376     vout_DropPicture( p_dec->p_owner->p_vout, p_pic );
2377 }
2378
2379 static void vout_link_picture( decoder_t *p_dec, picture_t *p_pic )
2380 {
2381     vout_LinkPicture( p_dec->p_owner->p_vout, p_pic );
2382 }
2383
2384 static void vout_unlink_picture( decoder_t *p_dec, picture_t *p_pic )
2385 {
2386     vout_UnlinkPicture( p_dec->p_owner->p_vout, p_pic );
2387 }
2388
2389 static subpicture_t *spu_new_buffer( decoder_t *p_dec )
2390 {
2391     decoder_owner_sys_t *p_owner = p_dec->p_owner;
2392     vout_thread_t *p_vout = NULL;
2393     subpicture_t *p_subpic;
2394     int i_attempts = 30;
2395
2396     while( i_attempts-- )
2397     {
2398         if( p_dec->b_die || p_dec->b_error )
2399             break;
2400
2401         p_vout = input_resource_HoldVout( p_owner->p_input->p->p_resource );
2402         if( p_vout )
2403             break;
2404
2405         msleep( DECODER_SPU_VOUT_WAIT_DURATION );
2406     }
2407
2408     if( !p_vout )
2409     {
2410         msg_Warn( p_dec, "no vout found, dropping subpicture" );
2411         return NULL;
2412     }
2413
2414     if( p_owner->p_spu_vout != p_vout )
2415     {
2416         vlc_mutex_lock( &p_owner->lock );
2417
2418         DecoderFlushBuffering( p_dec );
2419
2420         vlc_mutex_unlock( &p_owner->lock );
2421
2422         spu_Control( vout_GetSpu( p_vout ), SPU_CHANNEL_REGISTER,
2423                      &p_owner->i_spu_channel );
2424         p_owner->i_spu_order = 0;
2425         p_owner->p_spu_vout = p_vout;
2426     }
2427
2428     p_subpic = subpicture_New();
2429     if( p_subpic )
2430     {
2431         p_subpic->i_channel = p_owner->i_spu_channel;
2432         p_subpic->i_order = p_owner->i_spu_order++;
2433         p_subpic->b_subtitle = true;
2434     }
2435
2436     vlc_object_release( p_vout );
2437
2438     return p_subpic;
2439 }
2440
2441 static void spu_del_buffer( decoder_t *p_dec, subpicture_t *p_subpic )
2442 {
2443     decoder_owner_sys_t *p_owner = p_dec->p_owner;
2444     vout_thread_t *p_vout = NULL;
2445
2446     p_vout = input_resource_HoldVout( p_owner->p_input->p->p_resource );
2447     if( !p_vout || p_owner->p_spu_vout != p_vout )
2448     {
2449         if( p_vout )
2450             vlc_object_release( p_vout );
2451         msg_Warn( p_dec, "no vout found, leaking subpicture" );
2452         return;
2453     }
2454
2455     subpicture_Delete( p_subpic );
2456
2457     vlc_object_release( p_vout );
2458 }
2459