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