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