]> git.sesse.net Git - vlc/blob - modules/codec/avcodec/video.c
Flush avcodec on discontinuity.
[vlc] / modules / codec / avcodec / video.c
1 /*****************************************************************************
2  * video.c: video decoder using the ffmpeg library
3  *****************************************************************************
4  * Copyright (C) 1999-2001 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_codec.h>
34 #include <vlc_avcodec.h>
35 #include <vlc_cpu.h>
36 #include <assert.h>
37
38 /* ffmpeg header */
39 #ifdef HAVE_LIBAVCODEC_AVCODEC_H
40 #   include <libavcodec/avcodec.h>
41 #   ifdef HAVE_AVCODEC_VAAPI
42 #       include <libavcodec/vaapi.h>
43 #   endif
44 #   ifdef HAVE_AVCODEC_DXVA2
45 #       include <libavcodec/dxva2.h>
46 #   endif
47 #elif defined(HAVE_FFMPEG_AVCODEC_H)
48 #   include <ffmpeg/avcodec.h>
49 #else
50 #   include <avcodec.h>
51 #endif
52
53 #include "avcodec.h"
54 #include "va.h"
55 #if defined(HAVE_AVCODEC_VAAPI) || defined(HAVE_AVCODEC_DXVA2)
56 #   define HAVE_AVCODEC_VA
57 #endif
58 #if defined(FF_THREAD_FRAME)
59 #   define HAVE_AVCODEC_MT
60 #endif
61
62 /*****************************************************************************
63  * decoder_sys_t : decoder descriptor
64  *****************************************************************************/
65 struct decoder_sys_t
66 {
67     FFMPEG_COMMON_MEMBERS
68
69     /* Video decoder specific part */
70     mtime_t i_pts;
71
72     AVFrame          *p_ff_pic;
73
74     /* for frame skipping algo */
75     bool b_hurry_up;
76     enum AVDiscard i_skip_frame;
77     enum AVDiscard i_skip_idct;
78
79     /* how many decoded frames are late */
80     int     i_late_frames;
81     mtime_t i_late_frames_start;
82
83     /* for direct rendering */
84     bool b_direct_rendering;
85     int  i_direct_rendering_used;
86
87     bool b_has_b_frames;
88
89     /* Hack to force display of still pictures */
90     bool b_first_frame;
91
92     /* */
93     AVPaletteControl palette;
94
95     /* */
96     bool b_flush;
97
98     /* VA API */
99     vlc_va_t *p_va;
100
101     vlc_sem_t sem_mt;
102 };
103
104 #ifdef HAVE_AVCODEC_MT
105 #   define wait_mt(s) vlc_sem_wait( &s->sem_mt )
106 #   define post_mt(s) vlc_sem_post( &s->sem_mt )
107 #else
108 #   define wait_mt(s)
109 #   define post_mt(s)
110 #endif
111
112 /* FIXME (dummy palette for now) */
113 static const AVPaletteControl palette_control;
114
115 /*****************************************************************************
116  * Local prototypes
117  *****************************************************************************/
118 static void ffmpeg_InitCodec      ( decoder_t * );
119 static int  ffmpeg_OpenCodec      ( decoder_t * );
120 static void ffmpeg_CopyPicture    ( decoder_t *, picture_t *, AVFrame * );
121 static int  ffmpeg_GetFrameBuf    ( struct AVCodecContext *, AVFrame * );
122 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *, AVFrame * );
123 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *, AVFrame * );
124
125 #ifdef HAVE_AVCODEC_VA
126 static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *,
127                                           const enum PixelFormat * );
128 #endif
129
130 static uint32_t ffmpeg_CodecTag( vlc_fourcc_t fcc )
131 {
132     uint8_t *p = (uint8_t*)&fcc;
133     return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
134 }
135
136 /*****************************************************************************
137  * Local Functions
138  *****************************************************************************/
139
140 /* Returns a new picture buffer */
141 static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
142                                             AVCodecContext *p_context )
143 {
144     decoder_sys_t *p_sys = p_dec->p_sys;
145
146     p_dec->fmt_out.video.i_width = p_context->width;
147     p_dec->fmt_out.video.i_height = p_context->height;
148
149     if( !p_context->width || !p_context->height )
150     {
151         return NULL; /* invalid display size */
152     }
153
154     if( !p_sys->p_va && GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) )
155     {
156         /* we are doomed, but not really, because most codecs set their pix_fmt
157          * much later
158          * FIXME does it make sense here ? */
159         p_dec->fmt_out.video.i_chroma = VLC_CODEC_I420;
160     }
161     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
162
163     /* If an aspect-ratio was specified in the input format then force it */
164     if( p_dec->fmt_in.video.i_sar_num > 0 && p_dec->fmt_in.video.i_sar_den > 0 )
165     {
166         p_dec->fmt_out.video.i_sar_num = p_dec->fmt_in.video.i_sar_num;
167         p_dec->fmt_out.video.i_sar_den = p_dec->fmt_in.video.i_sar_den;
168     }
169     else
170     {
171         p_dec->fmt_out.video.i_sar_num = p_context->sample_aspect_ratio.num;
172         p_dec->fmt_out.video.i_sar_den = p_context->sample_aspect_ratio.den;
173
174         if( !p_dec->fmt_out.video.i_sar_num || !p_dec->fmt_out.video.i_sar_den )
175         {
176             p_dec->fmt_out.video.i_sar_num = 1;
177             p_dec->fmt_out.video.i_sar_den = 1;
178         }
179     }
180
181     if( p_dec->fmt_in.video.i_frame_rate > 0 &&
182         p_dec->fmt_in.video.i_frame_rate_base > 0 )
183     {
184         p_dec->fmt_out.video.i_frame_rate =
185             p_dec->fmt_in.video.i_frame_rate;
186         p_dec->fmt_out.video.i_frame_rate_base =
187             p_dec->fmt_in.video.i_frame_rate_base;
188     }
189     else if( p_context->time_base.num > 0 && p_context->time_base.den > 0 )
190     {
191         p_dec->fmt_out.video.i_frame_rate = p_context->time_base.den;
192         p_dec->fmt_out.video.i_frame_rate_base = p_context->time_base.num;
193     }
194
195     return decoder_NewPicture( p_dec );
196 }
197
198 /*****************************************************************************
199  * InitVideo: initialize the video decoder
200  *****************************************************************************
201  * the ffmpeg codec will be opened, some memory allocated. The vout is not yet
202  * opened (done after the first decoded frame).
203  *****************************************************************************/
204 int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
205                       AVCodec *p_codec, int i_codec_id, const char *psz_namecodec )
206 {
207     decoder_sys_t *p_sys;
208     int i_val;
209
210     /* Allocate the memory needed to store the decoder's structure */
211     if( ( p_dec->p_sys = p_sys = calloc( 1, sizeof(decoder_sys_t) ) ) == NULL )
212         return VLC_ENOMEM;
213
214     p_codec->type = CODEC_TYPE_VIDEO;
215     p_context->codec_type = CODEC_TYPE_VIDEO;
216     p_context->codec_id = i_codec_id;
217     p_sys->p_context = p_context;
218     p_sys->p_codec = p_codec;
219     p_sys->i_codec_id = i_codec_id;
220     p_sys->psz_namecodec = psz_namecodec;
221     p_sys->p_ff_pic = avcodec_alloc_frame();
222     p_sys->b_delayed_open = true;
223     p_sys->p_va = NULL;
224     vlc_sem_init( &p_sys->sem_mt, 0 );
225
226     /* ***** Fill p_context with init values ***** */
227     p_sys->p_context->codec_tag = ffmpeg_CodecTag( p_dec->fmt_in.i_original_fourcc ?: p_dec->fmt_in.i_codec );
228
229     /*  ***** Get configuration of ffmpeg plugin ***** */
230     p_sys->p_context->workaround_bugs =
231         var_InheritInteger( p_dec, "ffmpeg-workaround-bugs" );
232     p_sys->p_context->error_recognition =
233         var_InheritInteger( p_dec, "ffmpeg-error-resilience" );
234
235     if( var_CreateGetBool( p_dec, "grayscale" ) )
236         p_sys->p_context->flags |= CODEC_FLAG_GRAY;
237
238     i_val = var_CreateGetInteger( p_dec, "ffmpeg-vismv" );
239     if( i_val ) p_sys->p_context->debug_mv = i_val;
240
241     i_val = var_CreateGetInteger( p_dec, "ffmpeg-lowres" );
242     if( i_val > 0 && i_val <= 2 ) p_sys->p_context->lowres = i_val;
243
244     i_val = var_CreateGetInteger( p_dec, "ffmpeg-skiploopfilter" );
245     if( i_val >= 4 ) p_sys->p_context->skip_loop_filter = AVDISCARD_ALL;
246     else if( i_val == 3 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONKEY;
247     else if( i_val == 2 ) p_sys->p_context->skip_loop_filter = AVDISCARD_BIDIR;
248     else if( i_val == 1 ) p_sys->p_context->skip_loop_filter = AVDISCARD_NONREF;
249
250     if( var_CreateGetBool( p_dec, "ffmpeg-fast" ) )
251         p_sys->p_context->flags2 |= CODEC_FLAG2_FAST;
252
253     /* ***** ffmpeg frame skipping ***** */
254     p_sys->b_hurry_up = var_CreateGetBool( p_dec, "ffmpeg-hurry-up" );
255
256     switch( var_CreateGetInteger( p_dec, "ffmpeg-skip-frame" ) )
257     {
258         case -1:
259             p_sys->p_context->skip_frame = AVDISCARD_NONE;
260             break;
261         case 0:
262             p_sys->p_context->skip_frame = AVDISCARD_DEFAULT;
263             break;
264         case 1:
265             p_sys->p_context->skip_frame = AVDISCARD_BIDIR;
266             break;
267         case 2:
268             p_sys->p_context->skip_frame = AVDISCARD_NONKEY;
269             break;
270         case 3:
271             p_sys->p_context->skip_frame = AVDISCARD_ALL;
272             break;
273         default:
274             p_sys->p_context->skip_frame = AVDISCARD_NONE;
275             break;
276     }
277     p_sys->i_skip_frame = p_sys->p_context->skip_frame;
278
279     switch( var_CreateGetInteger( p_dec, "ffmpeg-skip-idct" ) )
280     {
281         case -1:
282             p_sys->p_context->skip_idct = AVDISCARD_NONE;
283             break;
284         case 0:
285             p_sys->p_context->skip_idct = AVDISCARD_DEFAULT;
286             break;
287         case 1:
288             p_sys->p_context->skip_idct = AVDISCARD_BIDIR;
289             break;
290         case 2:
291             p_sys->p_context->skip_idct = AVDISCARD_NONKEY;
292             break;
293         case 3:
294             p_sys->p_context->skip_idct = AVDISCARD_ALL;
295             break;
296         default:
297             p_sys->p_context->skip_idct = AVDISCARD_NONE;
298             break;
299     }
300     p_sys->i_skip_idct = p_sys->p_context->skip_idct;
301
302     /* ***** ffmpeg direct rendering ***** */
303     p_sys->b_direct_rendering = false;
304     p_sys->i_direct_rendering_used = -1;
305     if( var_CreateGetBool( p_dec, "ffmpeg-dr" ) &&
306        (p_sys->p_codec->capabilities & CODEC_CAP_DR1) &&
307         /* No idea why ... but this fixes flickering on some TSCC streams */
308         p_sys->i_codec_id != CODEC_ID_TSCC &&
309         !p_sys->p_context->debug_mv )
310     {
311         /* Some codecs set pix_fmt only after the 1st frame has been decoded,
312          * so we need to do another check in ffmpeg_GetFrameBuf() */
313         p_sys->b_direct_rendering = true;
314     }
315
316     /* ffmpeg doesn't properly release old pictures when frames are skipped */
317     //if( p_sys->b_hurry_up ) p_sys->b_direct_rendering = false;
318     if( p_sys->b_direct_rendering )
319     {
320         msg_Dbg( p_dec, "trying to use direct rendering" );
321         p_sys->p_context->flags |= CODEC_FLAG_EMU_EDGE;
322     }
323     else
324     {
325         msg_Dbg( p_dec, "direct rendering is disabled" );
326     }
327
328     /* Always use our get_buffer wrapper so we can calculate the
329      * PTS correctly */
330     p_sys->p_context->get_buffer = ffmpeg_GetFrameBuf;
331     p_sys->p_context->reget_buffer = ffmpeg_ReGetFrameBuf;
332     p_sys->p_context->release_buffer = ffmpeg_ReleaseFrameBuf;
333     p_sys->p_context->opaque = p_dec;
334
335 #ifdef HAVE_AVCODEC_MT
336     int i_thread_count = var_InheritInteger( p_dec, "ffmpeg-threads" );
337     if( i_thread_count <= 0 )
338         i_thread_count = vlc_GetCPUCount();
339     msg_Dbg( p_dec, "allowing %d thread(s) for decoding", i_thread_count );
340     p_sys->p_context->thread_count = i_thread_count;
341 #endif
342
343 #ifdef HAVE_AVCODEC_VA
344     const bool b_use_hw = var_CreateGetBool( p_dec, "ffmpeg-hw" );
345     if( b_use_hw )
346     {
347 #ifdef HAVE_AVCODEC_MT
348         msg_Err( p_dec, "ffmpeg-hw is not compatible with ffmpeg-mt" );
349 #else
350         p_sys->p_context->get_format = ffmpeg_GetFormat;
351 #endif
352     }
353 #endif
354
355     /* ***** misc init ***** */
356     p_sys->i_pts = VLC_TS_INVALID;
357     p_sys->b_has_b_frames = false;
358     p_sys->b_first_frame = true;
359     p_sys->b_flush = false;
360     p_sys->i_late_frames = 0;
361
362     /* Set output properties */
363     p_dec->fmt_out.i_cat = VIDEO_ES;
364     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS )
365     {
366         /* we are doomed. but not really, because most codecs set their pix_fmt later on */
367         p_dec->fmt_out.i_codec = VLC_CODEC_I420;
368     }
369     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
370
371     /* Setup palette */
372     memset( &p_sys->palette, 0, sizeof(p_sys->palette) );
373     if( p_dec->fmt_in.video.p_palette )
374     {
375         p_sys->palette.palette_changed = 1;
376
377         for( int i = 0; i < __MIN( AVPALETTE_COUNT, p_dec->fmt_in.video.p_palette->i_entries ); i++ )
378         {
379             union {
380                 uint32_t u;
381                 uint8_t a[4];
382             } c;
383             c.a[0] = p_dec->fmt_in.video.p_palette->palette[i][0];
384             c.a[1] = p_dec->fmt_in.video.p_palette->palette[i][1];
385             c.a[2] = p_dec->fmt_in.video.p_palette->palette[i][2];
386             c.a[3] = p_dec->fmt_in.video.p_palette->palette[i][3];
387
388             p_sys->palette.palette[i] = c.u;
389         }
390         p_sys->p_context->palctrl = &p_sys->palette;
391
392         p_dec->fmt_out.video.p_palette = malloc( sizeof(video_palette_t) );
393         if( p_dec->fmt_out.video.p_palette )
394             *p_dec->fmt_out.video.p_palette = *p_dec->fmt_in.video.p_palette;
395     }
396     else if( p_sys->i_codec_id != CODEC_ID_MSVIDEO1 && p_sys->i_codec_id != CODEC_ID_CINEPAK )
397     {
398         p_sys->p_context->palctrl = &p_sys->palette;
399     }
400
401     /* ***** init this codec with special data ***** */
402     ffmpeg_InitCodec( p_dec );
403
404     /* ***** Open the codec ***** */
405     if( ffmpeg_OpenCodec( p_dec ) < 0 )
406     {
407         msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
408         av_free( p_sys->p_ff_pic );
409         vlc_sem_destroy( &p_sys->sem_mt );
410         free( p_sys );
411         return VLC_EGENERIC;
412     }
413
414     return VLC_SUCCESS;
415 }
416
417 /*****************************************************************************
418  * DecodeVideo: Called to decode one or more frames
419  *****************************************************************************/
420 picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
421 {
422     decoder_sys_t *p_sys = p_dec->p_sys;
423     AVCodecContext *p_context = p_sys->p_context;
424     int b_drawpicture;
425     int b_null_size = false;
426     block_t *p_block;
427
428     if( !pp_block || !*pp_block )
429         return NULL;
430
431     if( !p_context->extradata_size && p_dec->fmt_in.i_extra )
432     {
433         ffmpeg_InitCodec( p_dec );
434         if( p_sys->b_delayed_open )
435         {
436             if( ffmpeg_OpenCodec( p_dec ) )
437                 msg_Err( p_dec, "cannot open codec (%s)", p_sys->psz_namecodec );
438         }
439     }
440
441     p_block = *pp_block;
442     if( p_sys->b_delayed_open )
443     {
444         block_Release( p_block );
445         return NULL;
446     }
447
448     if( p_block->i_flags & (BLOCK_FLAG_DISCONTINUITY|BLOCK_FLAG_CORRUPTED) )
449     {
450         p_sys->i_pts = VLC_TS_INVALID; /* To make sure we recover properly */
451
452         p_sys->i_late_frames = 0;
453
454         if( p_block->i_flags & BLOCK_FLAG_DISCONTINUITY )
455             avcodec_flush_buffers( p_context );
456
457         block_Release( p_block );
458         return NULL;
459     }
460
461     if( p_block->i_flags & BLOCK_FLAG_PREROLL )
462     {
463         /* Do not care about late frames when prerolling
464          * TODO avoid decoding of non reference frame
465          * (ie all B except for H264 where it depends only on nal_ref_idc) */
466         p_sys->i_late_frames = 0;
467     }
468
469     if( !p_dec->b_pace_control && (p_sys->i_late_frames > 0) &&
470         (mdate() - p_sys->i_late_frames_start > INT64_C(5000000)) )
471     {
472         if( p_sys->i_pts > VLC_TS_INVALID )
473         {
474             msg_Err( p_dec, "more than 5 seconds of late video -> "
475                      "dropping frame (computer too slow ?)" );
476             p_sys->i_pts = VLC_TS_INVALID; /* To make sure we recover properly */
477         }
478         block_Release( p_block );
479         p_sys->i_late_frames--;
480         return NULL;
481     }
482
483     /* A good idea could be to decode all I pictures and see for the other */
484     if( !p_dec->b_pace_control &&
485         p_sys->b_hurry_up &&
486         (p_sys->i_late_frames > 4) )
487     {
488         b_drawpicture = 0;
489         if( p_sys->i_late_frames < 12 )
490         {
491             p_context->skip_frame =
492                     (p_sys->i_skip_frame <= AVDISCARD_BIDIR) ?
493                     AVDISCARD_BIDIR : p_sys->i_skip_frame;
494         }
495         else
496         {
497             /* picture too late, won't decode
498              * but break picture until a new I, and for mpeg4 ...*/
499             p_sys->i_late_frames--; /* needed else it will never be decrease */
500             block_Release( p_block );
501             return NULL;
502         }
503     }
504     else
505     {
506         if( p_sys->b_hurry_up )
507             p_context->skip_frame = p_sys->i_skip_frame;
508         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
509             b_drawpicture = 1;
510         else
511             b_drawpicture = 0;
512     }
513
514     if( p_context->width <= 0 || p_context->height <= 0 )
515     {
516         if( p_sys->b_hurry_up )
517             p_context->skip_frame = p_sys->i_skip_frame;
518         b_null_size = true;
519     }
520     else if( !b_drawpicture )
521     {
522         /* It creates broken picture
523          * FIXME either our parser or ffmpeg is broken */
524 #if 0
525         if( p_sys->b_hurry_up )
526             p_context->skip_frame = __MAX( p_context->skip_frame,
527                                                   AVDISCARD_NONREF );
528 #endif
529     }
530
531     /*
532      * Do the actual decoding now */
533
534     /* Don't forget that ffmpeg requires a little more bytes
535      * that the real frame size */
536     if( p_block->i_buffer > 0 )
537     {
538         p_sys->b_flush = ( p_block->i_flags & BLOCK_FLAG_END_OF_SEQUENCE ) != 0;
539
540         p_block = block_Realloc( p_block, 0,
541                             p_block->i_buffer + FF_INPUT_BUFFER_PADDING_SIZE );
542         if( !p_block )
543             return NULL;
544         p_block->i_buffer -= FF_INPUT_BUFFER_PADDING_SIZE;
545         *pp_block = p_block;
546         memset( p_block->p_buffer + p_block->i_buffer, 0,
547                 FF_INPUT_BUFFER_PADDING_SIZE );
548     }
549
550     while( p_block->i_buffer > 0 || p_sys->b_flush )
551     {
552         int i_used, b_gotpicture;
553         picture_t *p_pic;
554
555         /* Set the PTS/DTS in the context reordered_opaque field */
556         if( p_block->i_pts > VLC_TS_INVALID  )
557             p_context->reordered_opaque = (p_block->i_pts << 1) | 0;
558         else if( p_block->i_dts > VLC_TS_INVALID )
559             p_context->reordered_opaque = (p_block->i_dts << 1) | 1;
560         else
561             p_context->reordered_opaque = INT64_MIN;
562
563         /* Make sure we don't reuse the same timestamps twice */
564         p_block->i_pts =
565         p_block->i_dts = VLC_TS_INVALID;
566
567         post_mt( p_sys );
568
569         i_used = avcodec_decode_video( p_context, p_sys->p_ff_pic,
570                                        &b_gotpicture,
571                                        p_block->i_buffer <= 0 && p_sys->b_flush ? NULL : p_block->p_buffer, p_block->i_buffer );
572
573         if( b_null_size && !p_sys->b_flush &&
574             p_context->width > 0 && p_context->height > 0 )
575         {
576             /* Reparse it to not drop the I frame */
577             b_null_size = false;
578             if( p_sys->b_hurry_up )
579                 p_context->skip_frame = p_sys->i_skip_frame;
580             i_used = avcodec_decode_video( p_context, p_sys->p_ff_pic,
581                                            &b_gotpicture, p_block->p_buffer,
582                                            p_block->i_buffer );
583         }
584         wait_mt( p_sys );
585
586         if( p_sys->b_flush )
587             p_sys->b_first_frame = true;
588
589         if( p_block->i_buffer <= 0 )
590             p_sys->b_flush = false;
591
592         if( i_used < 0 )
593         {
594             if( b_drawpicture )
595                 msg_Warn( p_dec, "cannot decode one frame (%zu bytes)",
596                           p_block->i_buffer );
597             block_Release( p_block );
598             return NULL;
599         }
600         else if( i_used > p_block->i_buffer ||
601                  p_context->thread_count > 1 )
602         {
603             i_used = p_block->i_buffer;
604         }
605
606         /* Consumed bytes */
607         p_block->i_buffer -= i_used;
608         p_block->p_buffer += i_used;
609
610         /* Nothing to display */
611         if( !b_gotpicture )
612         {
613             if( i_used == 0 ) break;
614             continue;
615         }
616
617         /* Compute the PTS */
618         mtime_t i_pts = VLC_TS_INVALID;
619         if( p_sys->p_ff_pic->reordered_opaque != INT64_MIN )
620         {
621             mtime_t i_ts = p_sys->p_ff_pic->reordered_opaque >> 1;
622             bool    b_dts = p_sys->p_ff_pic->reordered_opaque & 1;
623             if( b_dts )
624             {
625                 if( !p_context->has_b_frames ||
626                     !p_sys->b_has_b_frames ||
627                     !p_sys->p_ff_pic->reference ||
628                     p_sys->i_pts <= VLC_TS_INVALID )
629                     i_pts = i_ts;
630             }
631             else
632             {
633                 i_pts = i_ts;
634             }
635         }
636         if( i_pts <= VLC_TS_INVALID )
637             i_pts = p_sys->i_pts;
638
639         /* Interpolate the next PTS */
640         if( i_pts > VLC_TS_INVALID )
641             p_sys->i_pts = i_pts;
642         if( p_sys->i_pts > VLC_TS_INVALID )
643         {
644             /* interpolate the next PTS */
645             if( p_dec->fmt_in.video.i_frame_rate > 0 &&
646                 p_dec->fmt_in.video.i_frame_rate_base > 0 )
647             {
648                 p_sys->i_pts += INT64_C(1000000) *
649                     (2 + p_sys->p_ff_pic->repeat_pict) *
650                     p_dec->fmt_in.video.i_frame_rate_base /
651                     (2 * p_dec->fmt_in.video.i_frame_rate);
652             }
653             else if( p_context->time_base.den > 0 )
654             {
655 #if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52,20,0)
656                 int i_tick = p_context->ticks_per_frame;
657                 if( i_tick <= 0 )
658                     i_tick = 1;
659 #else
660                 int i_tick = 1;
661 #endif
662
663                 p_sys->i_pts += INT64_C(1000000) *
664                     (2 + p_sys->p_ff_pic->repeat_pict) *
665                     i_tick * p_context->time_base.num /
666                     (2 * p_context->time_base.den);
667             }
668         }
669
670         /* Update frame late count (except when doing preroll) */
671         mtime_t i_display_date = 0;
672         if( !(p_block->i_flags & BLOCK_FLAG_PREROLL) )
673             i_display_date = decoder_GetDisplayDate( p_dec, i_pts );
674
675         if( i_display_date > 0 && i_display_date <= mdate() )
676         {
677             p_sys->i_late_frames++;
678             if( p_sys->i_late_frames == 1 )
679                 p_sys->i_late_frames_start = mdate();
680         }
681         else
682         {
683             p_sys->i_late_frames = 0;
684         }
685
686         if( !b_drawpicture || ( !p_sys->p_va && !p_sys->p_ff_pic->linesize[0] ) )
687             continue;
688
689         if( !p_sys->p_ff_pic->opaque )
690         {
691             /* Get a new picture */
692             p_pic = ffmpeg_NewPictBuf( p_dec, p_context );
693             if( !p_pic )
694             {
695                 block_Release( p_block );
696                 return NULL;
697             }
698
699             /* Fill p_picture_t from AVVideoFrame and do chroma conversion
700              * if needed */
701             ffmpeg_CopyPicture( p_dec, p_pic, p_sys->p_ff_pic );
702         }
703         else
704         {
705             p_pic = (picture_t *)p_sys->p_ff_pic->opaque;
706             decoder_LinkPicture( p_dec, p_pic );
707         }
708
709         /* Sanity check (seems to be needed for some streams) */
710         if( p_sys->p_ff_pic->pict_type == FF_B_TYPE )
711         {
712             p_sys->b_has_b_frames = true;
713         }
714
715         if( !p_dec->fmt_in.video.i_sar_num || !p_dec->fmt_in.video.i_sar_den )
716         {
717             /* Fetch again the aspect ratio in case it changed */
718             p_dec->fmt_out.video.i_sar_num
719                 = p_context->sample_aspect_ratio.num;
720             p_dec->fmt_out.video.i_sar_den
721                 = p_context->sample_aspect_ratio.den;
722
723             if( !p_dec->fmt_out.video.i_sar_num || !p_dec->fmt_out.video.i_sar_den )
724             {
725                 p_dec->fmt_out.video.i_sar_num = 1;
726                 p_dec->fmt_out.video.i_sar_den = 1;
727             }
728         }
729
730         /* Send decoded frame to vout */
731         if( i_pts > VLC_TS_INVALID)
732         {
733             p_pic->date = i_pts;
734
735             if( p_sys->b_first_frame )
736             {
737                 /* Hack to force display of still pictures */
738                 p_sys->b_first_frame = false;
739                 p_pic->b_force = true;
740             }
741
742             p_pic->i_nb_fields = 2 + p_sys->p_ff_pic->repeat_pict;
743             p_pic->b_progressive = !p_sys->p_ff_pic->interlaced_frame;
744             p_pic->b_top_field_first = p_sys->p_ff_pic->top_field_first;
745
746             p_pic->i_qstride = p_sys->p_ff_pic->qstride;
747             int i_mb_h = ( p_pic->format.i_height + 15 ) / 16;
748             p_pic->p_q = malloc( p_pic->i_qstride * i_mb_h );
749             memcpy( p_pic->p_q, p_sys->p_ff_pic->qscale_table,
750                     p_pic->i_qstride * i_mb_h );
751             switch( p_sys->p_ff_pic->qscale_type )
752             {
753                 case FF_QSCALE_TYPE_MPEG1:
754                     p_pic->i_qtype = QTYPE_MPEG1;
755                     break;
756                 case FF_QSCALE_TYPE_MPEG2:
757                     p_pic->i_qtype = QTYPE_MPEG2;
758                     break;
759                 case FF_QSCALE_TYPE_H264:
760                     p_pic->i_qtype = QTYPE_H264;
761                     break;
762             }
763
764             return p_pic;
765         }
766         else
767         {
768             decoder_DeletePicture( p_dec, p_pic );
769         }
770     }
771
772     block_Release( p_block );
773     return NULL;
774 }
775
776 /*****************************************************************************
777  * EndVideo: decoder destruction
778  *****************************************************************************
779  * This function is called when the thread ends after a successful
780  * initialization.
781  *****************************************************************************/
782 void EndVideoDec( decoder_t *p_dec )
783 {
784     decoder_sys_t *p_sys = p_dec->p_sys;
785
786     post_mt( p_sys );
787
788     /* do not flush buffers if codec hasn't been opened (theora/vorbis/VC1) */
789     if( p_sys->p_context->codec )
790         avcodec_flush_buffers( p_sys->p_context );
791
792     wait_mt( p_sys );
793
794     if( p_sys->p_ff_pic ) av_free( p_sys->p_ff_pic );
795
796     if( p_sys->p_va )
797         vlc_va_Delete( p_sys->p_va );
798     vlc_sem_destroy( &p_sys->sem_mt );
799 }
800
801 /*****************************************************************************
802  * ffmpeg_InitCodec: setup codec extra initialization data for ffmpeg
803  *****************************************************************************/
804 static void ffmpeg_InitCodec( decoder_t *p_dec )
805 {
806     decoder_sys_t *p_sys = p_dec->p_sys;
807     int i_size = p_dec->fmt_in.i_extra;
808
809     if( !i_size ) return;
810
811     if( p_sys->i_codec_id == CODEC_ID_SVQ3 )
812     {
813         uint8_t *p;
814
815         p_sys->p_context->extradata_size = i_size + 12;
816         p = p_sys->p_context->extradata  =
817             malloc( p_sys->p_context->extradata_size );
818         if( !p )
819             return;
820
821         memcpy( &p[0],  "SVQ3", 4 );
822         memset( &p[4], 0, 8 );
823         memcpy( &p[12], p_dec->fmt_in.p_extra, i_size );
824
825         /* Now remove all atoms before the SMI one */
826         if( p_sys->p_context->extradata_size > 0x5a &&
827             strncmp( (char*)&p[0x56], "SMI ", 4 ) )
828         {
829             uint8_t *psz = &p[0x52];
830
831             while( psz < &p[p_sys->p_context->extradata_size - 8] )
832             {
833                 int i_size = GetDWBE( psz );
834                 if( i_size <= 1 )
835                 {
836                     /* FIXME handle 1 as long size */
837                     break;
838                 }
839                 if( !strncmp( (char*)&psz[4], "SMI ", 4 ) )
840                 {
841                     memmove( &p[0x52], psz,
842                              &p[p_sys->p_context->extradata_size] - psz );
843                     break;
844                 }
845
846                 psz += i_size;
847             }
848         }
849     }
850     else
851     {
852         p_sys->p_context->extradata_size = i_size;
853         p_sys->p_context->extradata =
854             malloc( i_size + FF_INPUT_BUFFER_PADDING_SIZE );
855         if( p_sys->p_context->extradata )
856         {
857             memcpy( p_sys->p_context->extradata,
858                     p_dec->fmt_in.p_extra, i_size );
859             memset( &((uint8_t*)p_sys->p_context->extradata)[i_size],
860                     0, FF_INPUT_BUFFER_PADDING_SIZE );
861         }
862     }
863 }
864
865 /*****************************************************************************
866  * ffmpeg_OpenCodec:
867  *****************************************************************************/
868 static int ffmpeg_OpenCodec( decoder_t *p_dec )
869 {
870     decoder_sys_t *p_sys = p_dec->p_sys;
871
872     if( p_sys->p_context->extradata_size <= 0 )
873     {
874         if( p_sys->i_codec_id == CODEC_ID_VC1 ||
875             p_sys->i_codec_id == CODEC_ID_VORBIS ||
876             p_sys->i_codec_id == CODEC_ID_THEORA )
877         {
878             msg_Warn( p_dec, "waiting for extra data for codec %s",
879                       p_sys->psz_namecodec );
880             return 1;
881         }
882     }
883     p_sys->p_context->width  = p_dec->fmt_in.video.i_width;
884     p_sys->p_context->height = p_dec->fmt_in.video.i_height;
885     p_sys->p_context->bits_per_coded_sample = p_dec->fmt_in.video.i_bits_per_pixel;
886
887     int ret;
888     vlc_avcodec_lock();
889     ret = avcodec_open( p_sys->p_context, p_sys->p_codec );
890     vlc_avcodec_unlock();
891     if( ret < 0 )
892         return VLC_EGENERIC;
893     msg_Dbg( p_dec, "ffmpeg codec (%s) started", p_sys->psz_namecodec );
894 #ifdef HAVE_AVCODEC_MT
895     switch( p_sys->p_context->active_thread_type )
896     {
897     case FF_THREAD_FRAME:
898         msg_Dbg( p_dec, "using frame thread mode with %d threads",
899                  p_sys->p_context->thread_count );
900         break;
901     case FF_THREAD_SLICE:
902         msg_Dbg( p_dec, "using slice thread mode with %d threads",
903                  p_sys->p_context->thread_count );
904         break;
905     case 0:
906         if( p_sys->p_context->thread_count > 1 )
907             msg_Warn( p_dec, "failed to enable threaded decoding" );
908         break;
909     default:
910         msg_Warn( p_dec, "using unknown thread mode with %d threads",
911                   p_sys->p_context->thread_count );
912         break;
913     }
914 #endif
915
916     p_sys->b_delayed_open = false;
917
918     return VLC_SUCCESS;
919 }
920 /*****************************************************************************
921  * ffmpeg_CopyPicture: copy a picture from ffmpeg internal buffers to a
922  *                     picture_t structure (when not in direct rendering mode).
923  *****************************************************************************/
924 static void ffmpeg_CopyPicture( decoder_t *p_dec,
925                                 picture_t *p_pic, AVFrame *p_ff_pic )
926 {
927     decoder_sys_t *p_sys = p_dec->p_sys;
928
929     if( p_sys->p_va )
930     {
931         vlc_va_Extract( p_sys->p_va, p_pic, p_ff_pic );
932     }
933     else if( TestFfmpegChroma( p_sys->p_context->pix_fmt, -1 ) == VLC_SUCCESS )
934     {
935         int i_plane, i_size, i_line;
936         uint8_t *p_dst, *p_src;
937         int i_src_stride, i_dst_stride;
938
939         for( i_plane = 0; i_plane < p_pic->i_planes; i_plane++ )
940         {
941             p_src  = p_ff_pic->data[i_plane];
942             p_dst = p_pic->p[i_plane].p_pixels;
943             i_src_stride = p_ff_pic->linesize[i_plane];
944             i_dst_stride = p_pic->p[i_plane].i_pitch;
945
946             i_size = __MIN( i_src_stride, i_dst_stride );
947             for( i_line = 0; i_line < p_pic->p[i_plane].i_visible_lines;
948                  i_line++ )
949             {
950                 vlc_memcpy( p_dst, p_src, i_size );
951                 p_src += i_src_stride;
952                 p_dst += i_dst_stride;
953             }
954         }
955     }
956     else
957     {
958         msg_Err( p_dec, "don't know how to convert chroma %i",
959                  p_sys->p_context->pix_fmt );
960         p_dec->b_error = 1;
961     }
962 }
963
964 /*****************************************************************************
965  * ffmpeg_GetFrameBuf: callback used by ffmpeg to get a frame buffer.
966  *****************************************************************************
967  * It is used for direct rendering as well as to get the right PTS for each
968  * decoded picture (even in indirect rendering mode).
969  *****************************************************************************/
970 static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
971                                AVFrame *p_ff_pic )
972 {
973     decoder_t *p_dec = (decoder_t *)p_context->opaque;
974     decoder_sys_t *p_sys = p_dec->p_sys;
975     picture_t *p_pic;
976
977     /* */
978     p_ff_pic->reordered_opaque = p_context->reordered_opaque;
979     p_ff_pic->opaque = NULL;
980
981     if( p_sys->p_va )
982     {
983 #ifdef HAVE_AVCODEC_VA
984         /* hwaccel_context is not present in old fffmpeg version */
985         if( vlc_va_Setup( p_sys->p_va,
986                           &p_sys->p_context->hwaccel_context, &p_dec->fmt_out.video.i_chroma,
987                           p_sys->p_context->width, p_sys->p_context->height ) )
988         {
989             msg_Err( p_dec, "vlc_va_Setup failed" );
990             return -1;
991         }
992 #else
993         assert(0);
994 #endif
995
996         /* */
997         p_ff_pic->type = FF_BUFFER_TYPE_USER;
998         /* FIXME what is that, should give good value */
999         p_ff_pic->age = 256*256*256*64; // FIXME FIXME from ffmpeg
1000
1001         if( vlc_va_Get( p_sys->p_va, p_ff_pic ) )
1002         {
1003             msg_Err( p_dec, "VaGrabSurface failed" );
1004             return -1;
1005         }
1006         return 0;
1007     }
1008     else if( !p_sys->b_direct_rendering )
1009     {
1010         /* Not much to do in indirect rendering mode. */
1011         return avcodec_default_get_buffer( p_context, p_ff_pic );
1012     }
1013
1014     wait_mt( p_sys );
1015
1016     /* Some codecs set pix_fmt only after the 1st frame has been decoded,
1017      * so we need to check for direct rendering again. */
1018
1019     int i_width = p_sys->p_context->width;
1020     int i_height = p_sys->p_context->height;
1021     avcodec_align_dimensions( p_sys->p_context, &i_width, &i_height );
1022
1023     if( GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) != VLC_SUCCESS ||
1024         p_context->pix_fmt == PIX_FMT_PAL8 )
1025         goto no_dr;
1026
1027     p_dec->fmt_out.i_codec = p_dec->fmt_out.video.i_chroma;
1028
1029     /* Get a new picture */
1030     p_pic = ffmpeg_NewPictBuf( p_dec, p_sys->p_context );
1031     if( !p_pic )
1032         goto no_dr;
1033     bool b_compatible = true;
1034     if( p_pic->p[0].i_pitch / p_pic->p[0].i_pixel_pitch < i_width ||
1035         p_pic->p[0].i_lines < i_height )
1036         b_compatible = false;
1037     for( int i = 0; i < p_pic->i_planes && b_compatible; i++ )
1038     {
1039         unsigned i_align;
1040         switch( p_sys->i_codec_id )
1041         {
1042         case CODEC_ID_SVQ1:
1043         case CODEC_ID_VP5:
1044         case CODEC_ID_VP6:
1045         case CODEC_ID_VP6F:
1046         case CODEC_ID_VP6A:
1047             i_align = 16;
1048             break;
1049         default:
1050             i_align = i == 0 ? 16 : 8;
1051             break;
1052         }
1053         if( p_pic->p[i].i_pitch % i_align )
1054             b_compatible = false;
1055         if( (intptr_t)p_pic->p[i].p_pixels % i_align )
1056             b_compatible = false;
1057     }
1058     if( p_context->pix_fmt == PIX_FMT_YUV422P && b_compatible )
1059     {
1060         if( 2 * p_pic->p[1].i_pitch != p_pic->p[0].i_pitch ||
1061             2 * p_pic->p[2].i_pitch != p_pic->p[0].i_pitch )
1062             b_compatible = false;
1063     }
1064     if( !b_compatible )
1065     {
1066         decoder_DeletePicture( p_dec, p_pic );
1067         goto no_dr;
1068     }
1069
1070     if( p_sys->i_direct_rendering_used != 1 )
1071     {
1072         msg_Dbg( p_dec, "using direct rendering" );
1073         p_sys->i_direct_rendering_used = 1;
1074     }
1075
1076     p_sys->p_context->draw_horiz_band = NULL;
1077
1078     p_ff_pic->opaque = (void*)p_pic;
1079     p_ff_pic->type = FF_BUFFER_TYPE_USER;
1080     p_ff_pic->data[0] = p_pic->p[0].p_pixels;
1081     p_ff_pic->data[1] = p_pic->p[1].p_pixels;
1082     p_ff_pic->data[2] = p_pic->p[2].p_pixels;
1083     p_ff_pic->data[3] = NULL; /* alpha channel but I'm not sure */
1084
1085     p_ff_pic->linesize[0] = p_pic->p[0].i_pitch;
1086     p_ff_pic->linesize[1] = p_pic->p[1].i_pitch;
1087     p_ff_pic->linesize[2] = p_pic->p[2].i_pitch;
1088     p_ff_pic->linesize[3] = 0;
1089
1090     /* FIXME what is that, should give good value */
1091     p_ff_pic->age = 256*256*256*64; // FIXME FIXME from ffmpeg
1092
1093     post_mt( p_sys );
1094     return 0;
1095
1096 no_dr:
1097     if( p_sys->i_direct_rendering_used != 0 )
1098     {
1099         msg_Warn( p_dec, "disabling direct rendering" );
1100         p_sys->i_direct_rendering_used = 0;
1101     }
1102     post_mt( p_sys );
1103     return avcodec_default_get_buffer( p_context, p_ff_pic );
1104 }
1105 static int  ffmpeg_ReGetFrameBuf( struct AVCodecContext *p_context, AVFrame *p_ff_pic )
1106 {
1107     p_ff_pic->reordered_opaque = p_context->reordered_opaque;
1108
1109     /* We always use default reget function, it works perfectly fine */
1110     return avcodec_default_reget_buffer( p_context, p_ff_pic );
1111 }
1112
1113 static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
1114                                     AVFrame *p_ff_pic )
1115 {
1116     decoder_t *p_dec = (decoder_t *)p_context->opaque;
1117     decoder_sys_t *p_sys = p_dec->p_sys;
1118
1119     if( p_sys->p_va )
1120     {
1121         vlc_va_Release( p_sys->p_va, p_ff_pic );
1122
1123         /* */
1124         for( int i = 0; i < 4; i++ )
1125             p_ff_pic->data[i] = NULL;
1126     }
1127     else if( !p_ff_pic->opaque )
1128     {
1129         avcodec_default_release_buffer( p_context, p_ff_pic );
1130     }
1131     else
1132     {
1133         picture_t *p_pic = (picture_t*)p_ff_pic->opaque;
1134
1135         decoder_UnlinkPicture( p_dec, p_pic );
1136
1137         /* */
1138         for( int i = 0; i < 4; i++ )
1139             p_ff_pic->data[i] = NULL;
1140     }
1141 }
1142
1143 #ifdef HAVE_AVCODEC_VA
1144 static enum PixelFormat ffmpeg_GetFormat( AVCodecContext *p_codec,
1145                                           const enum PixelFormat *pi_fmt )
1146 {
1147     decoder_t *p_dec = p_codec->opaque;
1148     decoder_sys_t *p_sys = p_dec->p_sys;
1149
1150     if( p_sys->p_va )
1151     {
1152         vlc_va_Delete( p_sys->p_va );
1153         p_sys->p_va = NULL;
1154     }
1155
1156     /* Try too look for a supported hw acceleration */
1157     for( int i = 0; pi_fmt[i] != PIX_FMT_NONE; i++ )
1158     {
1159         static const char *ppsz_name[PIX_FMT_NB] = {
1160             [PIX_FMT_VDPAU_H264] = "PIX_FMT_VDPAU_H264",
1161             [PIX_FMT_VAAPI_IDCT] = "PIX_FMT_VAAPI_IDCT",
1162             [PIX_FMT_VAAPI_VLD] = "PIX_FMT_VAAPI_VLD",
1163             [PIX_FMT_VAAPI_MOCO] = "PIX_FMT_VAAPI_MOCO",
1164 #ifdef HAVE_AVCODEC_DXVA2
1165             [PIX_FMT_DXVA2_VLD] = "PIX_FMT_DXVA2_VLD",
1166 #endif
1167             [PIX_FMT_YUYV422] = "PIX_FMT_YUYV422",
1168             [PIX_FMT_YUV420P] = "PIX_FMT_YUV420P",
1169         };
1170         msg_Dbg( p_dec, "Available decoder output format %d (%s)", pi_fmt[i], ppsz_name[pi_fmt[i]] ?: "Unknown" );
1171
1172         /* Only VLD supported */
1173         if( pi_fmt[i] == PIX_FMT_VAAPI_VLD )
1174         {
1175 #ifdef HAVE_AVCODEC_VAAPI
1176             msg_Dbg( p_dec, "Trying VA API" );
1177             p_sys->p_va = vlc_va_NewVaapi( p_sys->i_codec_id );
1178             if( !p_sys->p_va )
1179                 msg_Warn( p_dec, "Failed to open VA API" );
1180 #else
1181             continue;
1182 #endif
1183         }
1184 #ifdef HAVE_AVCODEC_DXVA2
1185         if( pi_fmt[i] == PIX_FMT_DXVA2_VLD )
1186         {
1187             msg_Dbg( p_dec, "Trying DXVA2" );
1188             p_sys->p_va = vlc_va_NewDxva2( VLC_OBJECT(p_dec), p_sys->i_codec_id );
1189             if( !p_sys->p_va )
1190                 msg_Warn( p_dec, "Failed to open DXVA2" );
1191         }
1192 #endif
1193
1194         if( p_sys->p_va &&
1195             p_sys->p_context->width > 0 && p_sys->p_context->height > 0 )
1196         {
1197             /* We try to call vlc_va_Setup when possible to detect errors when
1198              * possible (later is too late) */
1199             if( vlc_va_Setup( p_sys->p_va,
1200                               &p_sys->p_context->hwaccel_context,
1201                               &p_dec->fmt_out.video.i_chroma,
1202                               p_sys->p_context->width, p_sys->p_context->height ) )
1203             {
1204                 msg_Err( p_dec, "vlc_va_Setup failed" );
1205                 vlc_va_Delete( p_sys->p_va );
1206                 p_sys->p_va = NULL;
1207             }
1208         }
1209
1210         if( p_sys->p_va )
1211         {
1212             if( p_sys->p_va->description )
1213                 msg_Info( p_dec, "Using %s for hardware decoding.", p_sys->p_va->description );
1214
1215             /* FIXME this will disabled direct rendering
1216              * even if a new pixel format is renegociated
1217              */
1218             p_sys->b_direct_rendering = false;
1219             p_sys->p_context->draw_horiz_band = NULL;
1220             return pi_fmt[i];
1221         }
1222     }
1223
1224     /* Fallback to default behaviour */
1225     return avcodec_default_get_format( p_codec, pi_fmt );
1226 }
1227 #endif
1228