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