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